Common issues and solutions when using the CC_GodMode skill.
Symptoms:
clawdhub listdoesn't show cc-godmode- Agent doesn't recognize CC_GodMode commands
Solutions:
- Verify installation:
clawdhub list | grep cc-godmode- Try reinstalling:
clawdhub uninstall cc-godmode
clawdhub install cc-godmode- Check skill directory:
ls ~/.clawdbot/skills/cc-godmode/Symptoms:
- Skill reports different version than expected
- Features from newer version not working
Solutions:
- Check installed version:
grep "version:" ~/.clawdbot/skills/cc-godmode/SKILL.md- Update to latest:
clawdhub update cc-godmodeSymptoms:
- @tester fails to start
- "Playwright MCP not responding" error
- No screenshots generated
Solutions:
- Check MCP status:
claude mcp list- Verify Playwright is configured:
# In your MCP config (mcp.json)
{
"playwright": {
"command": "npx",
"args": ["playwright-mcp"]
}
}- Install Playwright:
npm install -g playwright-mcp
npx playwright installSymptoms:
- @github-manager can't create issues/PRs
- "GitHub API rate limit" errors
Solutions:
- Check authentication:
gh auth status- Re-authenticate:
gh auth login- Check rate limit:
gh api rate_limit --jq '.rate.remaining'Symptoms:
- Research takes too long
- Partial results only
Solutions:
This is by design. @researcher has a 30-second hard timeout.
- For complex research, break into smaller queries
- Use the partial results and request follow-up research
- Check if specific URLs are slow to fetch
Symptoms:
- Architecture report too brief
- Missing trade-off analysis
Solutions:
- Provide more context in your request:
New Feature: Add user authentication
- Expected users: 10,000+
- Security requirements: OAuth2, MFA
- Target platforms: Web, Mobile
- Ask for specific decisions:
@architect: Also evaluate caching strategy and session management
Symptoms:
- Some consumers not found
- Breaking changes not detected
Solutions:
- Ensure grep patterns are correct for your codebase
- Check for unusual import patterns:
// These might be missed
const { type } = await import('./types')
require('./types')- Add custom search patterns in request
Symptoms:
- Tests skipped
- "No tests found" message
Solutions:
- Verify test setup:
npm test- Check test configuration in package.json
- Ensure test files follow naming conventions (
*.test.ts,*.spec.ts)
Symptoms:
- Bug fix using full feature workflow
- API change not triggering @api-guardian
Solutions:
- Be explicit in your command:
Bug Fix: [description]
API Change: [description]
- For API changes, mention the path:
API Change: Update User type in shared/types/user.ts
Symptoms:
- @builder called before @architect
- Quality gates skipped
Solutions:
This indicates orchestrator confusion. Be explicit:
I want the full feature workflow:
1. First @architect for design
2. Then @builder for implementation
3. Then both quality gates
4. Finally @scribe for documentation
Symptoms:
- @builder → @validator → @builder repeating
- Never reaching @scribe
Solutions:
- Check @validator output for persistent issues
- Ask @validator to list ALL remaining issues
- Consider marking non-critical issues as "defer to next version"
Symptoms:
- TypeScript errors persist
- Tests keep failing
Solutions:
- Run locally first:
npm run typecheck
npm test- Check if @builder received correct specs from @architect
- Review @api-guardian consumer list for missed updates
Symptoms:
- No files in
.playwright-mcp/ - Screenshot section empty in report
Solutions:
- Verify Playwright MCP is working:
await mcp__playwright__browser_take_screenshot({
filename: "test.png"
});- Check directory permissions:
ls -la .playwright-mcp/- Ensure dev server is running:
npm run devSymptoms:
- @validator and @tester running sequentially
- Taking longer than expected
Solutions:
Parallel execution requires proper orchestrator coordination. Check:
- Both agents are called simultaneously via Task tool
- Results are collected at sync point
- Decision matrix is applied correctly
If things get confused:
Status
Then start fresh with explicit command.
Before starting work:
claude mcp listExpected:
playwright✓github✓lighthouse(optional)a11y(optional)
If orchestrator isn't calling the right agent:
Call @researcher to research [topic]
Call @architect to design [feature]
For documentation-only changes:
Documentation only: Update README installation section
This goes directly to @scribe without quality gates.
- Check SKILL.md for complete reference
- Review WORKFLOWS.md for workflow details
- See AGENTS.md for agent specifications
- Open an issue on GitHub for bugs