@@ -37,7 +37,7 @@ high usage quickly hits rate caps. **OpenCode** removes those constraints,
3737allowing sustained development over the full lifecycle of a game project.
3838
3939This port adapts the complete [ CCGS] ( https://github.com/Donchitos/Claude-Code-Game-Studios )
40- framework — its 49 agents, 72 commands , 12 hooks, and all rules — to run natively
40+ framework — its 49 agents, 72 skills , 12 hooks, and all rules — to run natively
4141on OpenCode, giving game teams the same structured AI-assisted workflow without
4242the artificial limits.
4343
@@ -54,7 +54,7 @@ the artificial limits.
5454| Component | CCGS (Claude Code) | OpenCode | Status |
5555| -----------| -------------------| ----------| --------|
5656| 🤖 ** Agents** | 49 agents (` .claude/agents/ ` ) | 49 agents (` .opencode/agents/ ` ) | ✅ |
57- | ⌨️ ** Commands ** | 72 skills (` .claude/skills/ ` ) | 72 commands (` .opencode/commands / ` ) | ✅ |
57+ | ⌨️ ** Skills ** | 72 skills (` .claude/skills/ ` ) | 72 skills (` .opencode/skills / ` ) | ✅ |
5858| 🔗 ** Hooks** | 12 bash hooks (` .claude/hooks/ ` ) | 1 TS plugin (` .opencode/plugins/ ` ) | ✅ ** 129 tests** |
5959| 📏 ** Rules** | 11 rule files (` .claude/rules/ ` ) | 11 rule files (` .opencode/rules/ ` ) | ✅ |
6060| ⚙️ ** Config** | ` CLAUDE.md ` + ` .claude/settings.json ` | ` AGENTS.md ` + ` opencode.json ` | ✅ |
@@ -67,7 +67,7 @@ the artificial limits.
6767opencode
6868```
6969
70- Type ` / ` to browse all 72 commands , or ` /start ` for onboarding.
70+ Type ` / ` to browse all 72 skills , or ` /start ` for onboarding.
7171
7272---
7373
@@ -187,12 +187,11 @@ node utils/assign-models.js --config my-models.json
187187├── AGENTS.md 📋 Project configuration
188188├── opencode.json ⚙️ OpenCode config (permissions, plugins)
189189├── .opencode/
190- │ ├── commands / ⌨️ 72 slash commands
190+ │ ├── skills / ⌨️ 72 skills
191191│ ├── agents/ 🤖 49 agent definitions
192192│ ├── plugins/
193193│ │ ├── ccgs-hooks.ts 🔗 TS plugin (all 12 hooks)
194194│ │ └── tests/ 🧪 11 test suites (129 tests)
195- │ ├── skills/ 📚 Skill files
196195│ └── rules/ 📏 Coding standards
197196├── .claude/docs/ 📖 CCGS documentation
198197├── design/ 🎨 Game design documents
0 commit comments