├── .beads ├── .local_version ├── README.md ├── config.yaml ├── issues.jsonl └── metadata.json ├── .gitignore ├── AGENTS.md ├── AGENTS.md.backup ├── IMPROVEMENTS.md ├── README.md ├── agent ├── archaeologist.md ├── beads.md ├── explore.md ├── refactorer.md ├── reviewer.md └── swarm │ ├── planner.md │ └── worker.md ├── command ├── checkpoint.md ├── commit.md ├── context-dump.md ├── debug-plus.md ├── debug.md ├── estimate.md ├── fix-all.md ├── focus.md ├── handoff.md ├── iterate.md ├── migrate.md ├── parallel.md ├── pr-create.md ├── repo-dive.md ├── retro.md ├── review-my-shit.md ├── standup.md ├── swarm-collect.md ├── swarm-status.md ├── swarm.md ├── sweep.md ├── test.md ├── triage.md └── worktree-task.md ├── knowledge ├── effect-patterns.md ├── error-patterns.md ├── git-patterns.md ├── mastra-agent-patterns.md ├── nextjs-patterns.md ├── opencode-agents.md ├── opencode-context.md ├── opencode-plugins.md ├── opencode-tools.md ├── prevention-patterns.md ├── testing-patterns.md └── typescript-patterns.md ├── opencode.jsonc ├── package.json ├── plugin └── swarm.ts ├── pnpm-lock.yaml ├── tool ├── bd-quick.ts ├── cass.ts ├── find-exports.ts ├── git-context.ts ├── pdf-brain.ts ├── pkg-scripts.ts ├── repo-autopsy.ts ├── repo-crawl.ts ├── semantic-memory.ts ├── tool-utils.ts ├── typecheck.ts └── ubs.ts └── tsconfig.json /.beads/.local_version: -------------------------------------------------------------------------------- 1 | 0.29.0 2 | -------------------------------------------------------------------------------- /.beads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/.beads/README.md -------------------------------------------------------------------------------- /.beads/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/.beads/config.yaml -------------------------------------------------------------------------------- /.beads/issues.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/.beads/issues.jsonl -------------------------------------------------------------------------------- /.beads/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/.beads/metadata.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/AGENTS.md -------------------------------------------------------------------------------- /AGENTS.md.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/AGENTS.md.backup -------------------------------------------------------------------------------- /IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/IMPROVEMENTS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/README.md -------------------------------------------------------------------------------- /agent/archaeologist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/agent/archaeologist.md -------------------------------------------------------------------------------- /agent/beads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/agent/beads.md -------------------------------------------------------------------------------- /agent/explore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/agent/explore.md -------------------------------------------------------------------------------- /agent/refactorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/agent/refactorer.md -------------------------------------------------------------------------------- /agent/reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/agent/reviewer.md -------------------------------------------------------------------------------- /agent/swarm/planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/agent/swarm/planner.md -------------------------------------------------------------------------------- /agent/swarm/worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/agent/swarm/worker.md -------------------------------------------------------------------------------- /command/checkpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/checkpoint.md -------------------------------------------------------------------------------- /command/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/commit.md -------------------------------------------------------------------------------- /command/context-dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/context-dump.md -------------------------------------------------------------------------------- /command/debug-plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/debug-plus.md -------------------------------------------------------------------------------- /command/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/debug.md -------------------------------------------------------------------------------- /command/estimate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/estimate.md -------------------------------------------------------------------------------- /command/fix-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/fix-all.md -------------------------------------------------------------------------------- /command/focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/focus.md -------------------------------------------------------------------------------- /command/handoff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/handoff.md -------------------------------------------------------------------------------- /command/iterate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/iterate.md -------------------------------------------------------------------------------- /command/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/migrate.md -------------------------------------------------------------------------------- /command/parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/parallel.md -------------------------------------------------------------------------------- /command/pr-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/pr-create.md -------------------------------------------------------------------------------- /command/repo-dive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/repo-dive.md -------------------------------------------------------------------------------- /command/retro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/retro.md -------------------------------------------------------------------------------- /command/review-my-shit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/review-my-shit.md -------------------------------------------------------------------------------- /command/standup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/standup.md -------------------------------------------------------------------------------- /command/swarm-collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/swarm-collect.md -------------------------------------------------------------------------------- /command/swarm-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/swarm-status.md -------------------------------------------------------------------------------- /command/swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/swarm.md -------------------------------------------------------------------------------- /command/sweep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/sweep.md -------------------------------------------------------------------------------- /command/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/test.md -------------------------------------------------------------------------------- /command/triage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/triage.md -------------------------------------------------------------------------------- /command/worktree-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/command/worktree-task.md -------------------------------------------------------------------------------- /knowledge/effect-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/effect-patterns.md -------------------------------------------------------------------------------- /knowledge/error-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/error-patterns.md -------------------------------------------------------------------------------- /knowledge/git-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/git-patterns.md -------------------------------------------------------------------------------- /knowledge/mastra-agent-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/mastra-agent-patterns.md -------------------------------------------------------------------------------- /knowledge/nextjs-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/nextjs-patterns.md -------------------------------------------------------------------------------- /knowledge/opencode-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/opencode-agents.md -------------------------------------------------------------------------------- /knowledge/opencode-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/opencode-context.md -------------------------------------------------------------------------------- /knowledge/opencode-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/opencode-plugins.md -------------------------------------------------------------------------------- /knowledge/opencode-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/opencode-tools.md -------------------------------------------------------------------------------- /knowledge/prevention-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/prevention-patterns.md -------------------------------------------------------------------------------- /knowledge/testing-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/testing-patterns.md -------------------------------------------------------------------------------- /knowledge/typescript-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/knowledge/typescript-patterns.md -------------------------------------------------------------------------------- /opencode.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/opencode.jsonc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/package.json -------------------------------------------------------------------------------- /plugin/swarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/plugin/swarm.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tool/bd-quick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/bd-quick.ts -------------------------------------------------------------------------------- /tool/cass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/cass.ts -------------------------------------------------------------------------------- /tool/find-exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/find-exports.ts -------------------------------------------------------------------------------- /tool/git-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/git-context.ts -------------------------------------------------------------------------------- /tool/pdf-brain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/pdf-brain.ts -------------------------------------------------------------------------------- /tool/pkg-scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/pkg-scripts.ts -------------------------------------------------------------------------------- /tool/repo-autopsy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/repo-autopsy.ts -------------------------------------------------------------------------------- /tool/repo-crawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/repo-crawl.ts -------------------------------------------------------------------------------- /tool/semantic-memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/semantic-memory.ts -------------------------------------------------------------------------------- /tool/tool-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/tool-utils.ts -------------------------------------------------------------------------------- /tool/typecheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/typecheck.ts -------------------------------------------------------------------------------- /tool/ubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tool/ubs.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelhooks/opencode-config/HEAD/tsconfig.json --------------------------------------------------------------------------------