* feat(daemon): add opencode as supported agent provider Add opencode backend alongside claude and codex. The backend spawns `opencode run --format json`, parses streaming JSON events (text, tool_use, error, step_start/finish), and supports --prompt for system prompts. Includes CLI detection, AGENTS.md runtime config, native skill discovery via .config/opencode/skills/, and 21 tests covering handlers, JSON parsing, and integration-level processEvents scenarios. * chore: add .tool-versions to gitignore
47 lines
453 B
Text
47 lines
453 B
Text
node_modules
|
|
dist
|
|
*.log
|
|
.DS_Store
|
|
.envrc
|
|
|
|
# build outputs
|
|
.turbo
|
|
.next
|
|
out
|
|
build
|
|
bin
|
|
dist-electron
|
|
*.tsbuildinfo
|
|
|
|
# env
|
|
.env*
|
|
!.env.example
|
|
|
|
# test coverage
|
|
coverage
|
|
|
|
# Go
|
|
server/bin/
|
|
server/tmp/
|
|
server/migrate
|
|
server/daemon
|
|
server/multica
|
|
|
|
# Test artifacts
|
|
test-results/
|
|
apps/web/test-results/
|
|
|
|
# context (agent workspace)
|
|
.context
|
|
|
|
# local settings
|
|
.claude/
|
|
.tool-versions
|
|
|
|
# feature tracking
|
|
_features/
|
|
|
|
# platform specific
|
|
*.dmg
|
|
*.app
|
|
server/server
|