├── .github └── workflows │ ├── opencode.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .opencode └── command │ └── review_command.md ├── AGENT.template.md ├── AGENTS.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── THOUGHTS.md ├── TODO.md ├── agent ├── codebase-analyzer.md ├── codebase-locator.md ├── codebase-pattern-finder.md ├── thoughts-analyzer.md ├── thoughts-locator.md └── web-search-researcher.md ├── bun.lock ├── command ├── commit.md ├── execute.md ├── plan.md ├── research.md ├── review.md └── ticket.md ├── docs ├── agentic.md ├── agents.md ├── architecture.md ├── commands.md ├── thoughts.md ├── usage.md └── workflow.md ├── package.json ├── scripts ├── publish.ts ├── release.sh └── unpublish.ts ├── src └── cli │ ├── config.ts │ ├── index.ts │ ├── init.ts │ ├── metadata.ts │ ├── pull.ts │ ├── status.ts │ └── utils.ts └── tsconfig.json /.github/workflows/opencode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/.github/workflows/opencode.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/.npmignore -------------------------------------------------------------------------------- /.opencode/command/review_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/.opencode/command/review_command.md -------------------------------------------------------------------------------- /AGENT.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/AGENT.template.md -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/README.md -------------------------------------------------------------------------------- /THOUGHTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/THOUGHTS.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/TODO.md -------------------------------------------------------------------------------- /agent/codebase-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/agent/codebase-analyzer.md -------------------------------------------------------------------------------- /agent/codebase-locator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/agent/codebase-locator.md -------------------------------------------------------------------------------- /agent/codebase-pattern-finder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/agent/codebase-pattern-finder.md -------------------------------------------------------------------------------- /agent/thoughts-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/agent/thoughts-analyzer.md -------------------------------------------------------------------------------- /agent/thoughts-locator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/agent/thoughts-locator.md -------------------------------------------------------------------------------- /agent/web-search-researcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/agent/web-search-researcher.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/bun.lock -------------------------------------------------------------------------------- /command/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/command/commit.md -------------------------------------------------------------------------------- /command/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/command/execute.md -------------------------------------------------------------------------------- /command/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/command/plan.md -------------------------------------------------------------------------------- /command/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/command/research.md -------------------------------------------------------------------------------- /command/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/command/review.md -------------------------------------------------------------------------------- /command/ticket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/command/ticket.md -------------------------------------------------------------------------------- /docs/agentic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/docs/agentic.md -------------------------------------------------------------------------------- /docs/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/docs/agents.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/thoughts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/docs/thoughts.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/docs/workflow.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/package.json -------------------------------------------------------------------------------- /scripts/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/scripts/publish.ts -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/unpublish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/scripts/unpublish.ts -------------------------------------------------------------------------------- /src/cli/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/src/cli/config.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/cli/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/src/cli/init.ts -------------------------------------------------------------------------------- /src/cli/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/src/cli/metadata.ts -------------------------------------------------------------------------------- /src/cli/pull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/src/cli/pull.ts -------------------------------------------------------------------------------- /src/cli/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/src/cli/status.ts -------------------------------------------------------------------------------- /src/cli/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/src/cli/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cluster444/agentic/HEAD/tsconfig.json --------------------------------------------------------------------------------