aiwg
Version:
Cognitive architecture for AI-augmented software development with structured memory, ensemble validation, and closed-loop correction. FAIR-aligned artifacts, 84% cost reduction via human-in-the-loop, standards adopted by 100+ organizations.
123 lines (79 loc) • 2.19 kB
Markdown
# Deployment Issues
Problems with agent and command deployment.
## Agents Not Found
**Symptoms**: "Agent not found", subagent calls fail, Task tool errors.
**Cause**: Agents not deployed to project.
**Solution**:
```bash
# Deploy agents
aiwg -deploy-agents --mode sdlc
# Verify deployment
ls .claude/agents/
# Should show 50+ agent files
```
## Commands Not Found
**Symptoms**: Slash commands not recognized, "/command not found".
**Cause**: Commands not deployed to project.
**Solution**:
```bash
# Deploy commands
aiwg -deploy-commands --mode sdlc
# Verify deployment
ls .claude/commands/
# Should show flow-*.md and other command files
```
## Agent Access Denied
**Symptoms**: "Permission denied" when agent tries to read AIWG files.
**Cause**: Claude Code settings missing read permission for AIWG installation.
**Solution**:
1. Open `.claude/settings.local.json` (or create it)
2. Add read permission:
```json
{
"permissions": {
"allow": [
"Read(/home/YOUR_USER/.local/share/ai-writing-guide/**)"
]
}
}
```
Replace `YOUR_USER` with your actual username.
## Outdated Agents
**Symptoms**: Agents missing new features, old behavior.
**Cause**: Project has old agent versions.
**Solution**:
```bash
# Update AIWG installation first
aiwg -update
# Force redeploy agents
aiwg -deploy-agents --mode sdlc --force
aiwg -deploy-commands --mode sdlc
```
## Factory AI Droids Not Loading
**Symptoms**: Droids not appearing in Factory `/droids` menu.
**Cause**: Factory requires manual import after deployment.
**Solution**:
```bash
# In Factory CLI
droid .
/droids
# Press 'I' to import
# Press 'A' to select all
# Press Enter to confirm
```
See [Factory Quickstart](#integrations-factory) for details.
## Warp Not Loading WARP.md
**Symptoms**: Warp AI doesn't recognize AIWG commands/context.
**Cause**: WARP.md not in project root or Warp not reindexed.
**Solution**:
```bash
# Verify WARP.md exists
ls WARP.md
# If missing, deploy
aiwg -deploy-agents --platform warp --mode sdlc
# In Warp, reindex
/init
```
## Related
- [Setup Issues](#ts-setup) - Installation problems
- [Platform Issues](#ts-platforms) - Platform-specific problems