End-to-end autonomous software engineering powered by Claude Code. Plugin-driven SDLC workflows, epic ticket orchestration, remote control support, and scheduled jobs.
| Plugin | Description |
|---|---|
| autocode-core | Core infrastructure: commit, branch, issue, and PR skills with bootstrap hooks and destructive-command guards. |
| autocode-design | Design phase: feature planning, feature review, and epic decomposition with implementation planner and translator agents. |
| autocode-implement | Implementation phase: PR CI fixes, PR review, and self-review with courtroom-style multi-agent code review. |
| autocode-workflow | Autonomous workflow orchestration: work-on, stop-work-on, resume-work, auto-implement, and quick-fix with tmux-based multi-session management. |
Add the marketplace and install plugins:
# Add the autocode marketplace
claude plugin marketplace add hhoikoo/autocode
# Install individual plugins
claude plugin install autocode-core
claude plugin install autocode-design
claude plugin install autocode-implement
claude plugin install autocode-workflowWork on plugins locally:
# Clone the repo
git clone https://github.com/hhoikoo/autocode.git
cd autocode
# Lint configs and scripts
npx agnix .
shellcheck plugins/**/*.sh
# Test a skill change by running Claude Code from the repo root
claudePlugin structure:
plugins/<name>/
.claude-plugin/plugin.json # Plugin manifest
skills/<skill>/SKILL.md # Skill definitions
agents/<agent>.md # Agent definitions
hooks/hooks.json # Hook configurations
scripts/ # Shell scripts
Versions are tracked in .claude-plugin/marketplace.json and individual plugin.json files. The scheme follows semver (MAJOR.MINOR.PATCH). Releases are tagged as v<version> on the main branch.