Purpose: Troubleshooting guide for common problems
# Check system health
./scripts/registry/validate-registry.sh
./scripts/validation/validate-test-suites.sh
# Check version consistency
cat VERSION && cat package.json | jq '.version'
# Test core agents
cd evals/framework && npm run eval:sdk -- --agent=core/openagent --pattern="smoke-test.yaml"
Symptoms:
ERROR: Path does not exist: .opencode/agent/core/missing.md
Diagnosis:
./scripts/registry/validate-registry.sh -v
Solutions:
Fix:
# Re-run auto-detect
./scripts/registry/auto-detect-components.sh --auto-add
# Validate
./scripts/registry/validate-registry.sh
Symptoms:
./install.sh --listDiagnosis:
# Check frontmatter
head -10 .opencode/agent/{category}/{agent}.md
# Dry run auto-detect
./scripts/registry/auto-detect-components.sh --dry-run
Solutions:
Fix:
# Add frontmatter
cat > .opencode/agent/{category}/{agent}.md << 'EOF'
---
description: "Brief description"
category: "category"
type: "agent"
---
# Agent Content
EOF
# Re-run auto-detect
./scripts/registry/auto-detect-components.sh --auto-add
Symptoms:
✗ Approval Gate: FAIL
Violation: Agent executed write tool without requesting approval
Diagnosis:
# Run with debug
cd evals/framework
npm run eval:sdk -- --agent={agent} --pattern="{test}" --debug
# Check session
ls -lt .tmp/sessions/ | head -5
cat .tmp/sessions/{session-id}/session.json | jq
Solution: Add approval request in agent prompt:
Before executing:
1. Present plan to user
2. Request approval
3. Execute after approval
Symptoms:
✗ Context Loading: FAIL
Violation: Agent executed write tool without loading required context
Diagnosis:
# Check what context was loaded
cat .tmp/sessions/{session-id}/events.json | jq '.[] | select(.type == "context_load")'
Solution: Add context loading in agent prompt:
Before implementing:
1. Load core/standards/code-quality.md
2. Apply standards to implementation
Symptoms:
✗ Tool Usage: FAIL
Violation: Agent used bash tool for reading file instead of read tool
Diagnosis:
# Check tool usage
cat .tmp/sessions/{session-id}/events.json | jq '.[] | select(.type == "tool_call")'
Solution: Update agent to use correct tools:
read instead of bash catlist instead of bash lsgrep instead of bash grepSymptoms:
ERROR: Failed to fetch registry
ERROR: Component not found
Diagnosis:
# Check dependencies
which curl jq
# Test with local registry
REGISTRY_URL="file://$(pwd)/registry.json" ./install.sh --list
Solutions:
Fix:
# Install dependencies (macOS)
brew install curl jq
# Install dependencies (Linux)
sudo apt-get install curl jq
# Test locally
REGISTRY_URL="file://$(pwd)/registry.json" ./install.sh --list
Symptoms:
File exists: .opencode/agent/core/openagent.md
Solutions:
Fix:
# Skip all collisions
./install.sh developer --skip-existing
# Overwrite all collisions
./install.sh developer --force
# Backup all collisions
./install.sh developer --backup
Symptoms:
ERROR: Agent not found: development/frontend-specialist
Diagnosis:
# Check file exists
ls -la .opencode/agent/development/frontend-specialist.md
# Check registry
cat registry.json | jq '.components.agents[] | select(.id == "frontend-specialist")'
Solutions:
Fix:
# Re-run auto-detect
./scripts/registry/auto-detect-components.sh --auto-add
# Validate
./scripts/registry/validate-registry.sh
Symptoms:
VERSION: 0.5.0
package.json: 0.4.0
registry.json: 0.5.0
Diagnosis:
cat VERSION
cat package.json | jq '.version'
cat registry.json | jq '.version'
Solution: Update all to same version:
echo "0.5.0" > VERSION
jq '.version = "0.5.0"' package.json > tmp && mv tmp package.json
jq '.version = "0.5.0"' registry.json > tmp && mv tmp registry.json
Symptoms:
Diagnosis:
# Run same commands as CI
./scripts/registry/validate-registry.sh
./scripts/validation/validate-test-suites.sh
cd evals/framework && npm run eval:sdk
Solutions:
Symptoms:
ERROR: Test timeout after 60000ms
Solution: Increase timeout in config.yaml:
timeout: 120000 # 2 minutes
Symptoms: Auto-detect takes too long
Solution: Limit scope:
# Only scan specific directory
./scripts/registry/auto-detect-components.sh --path .opencode/agent/development/
# Session logs
ls -lt .tmp/sessions/ | head -5
cat .tmp/sessions/{session-id}/session.json | jq
# Event timeline
cat .tmp/sessions/{session-id}/events.json | jq
# Full system check
./scripts/registry/validate-registry.sh -v
./scripts/validation/validate-test-suites.sh
cd evals/framework && npm run eval:sdk -- --agent=core/openagent
# Validate everything
./scripts/registry/validate-registry.sh && \
./scripts/validation/validate-test-suites.sh && \
cd evals/framework && npm run eval:sdk
# Reset and rebuild
./scripts/registry/auto-detect-components.sh --auto-add --force
./scripts/registry/validate-registry.sh
# Test installation
REGISTRY_URL="file://$(pwd)/registry.json" ./install.sh --list
guides/testing-agent.mdguides/updating-registry.mdcore-concepts/evals.mdLast Updated: 2025-12-10
Version: 0.5.0