Implement programmer agent system and consolidate agent infrastructure

Programmer Agent System:
- Add programmer-orchestrator (Opus) for workflow coordination
- Add code-planner (Sonnet) for design and planning
- Add code-implementer (Sonnet) for writing code
- Add code-reviewer (Sonnet) for quality review
- Add /programmer command and project registration skill
- Add state files for preferences and project context

Agent Infrastructure:
- Add master-orchestrator and linux-sysadmin agents
- Restructure skills to use SKILL.md subdirectory format
- Convert workflows from markdown to YAML format
- Add commands for k8s and sysadmin domains
- Add shared state files (model-policy, autonomy-levels, system-instructions)
- Add PA memory system (decisions, preferences, projects, facts)

Cleanup:
- Remove deprecated markdown skills and workflows
- Remove crontab example (moved to workflows)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
OpenCode Test
2025-12-29 13:23:42 -08:00
parent 119d2a464e
commit 431e10b449
62 changed files with 3572 additions and 539 deletions

View File

@@ -13,6 +13,10 @@ Personal Assistant (Opus) - user interface + ultimate oversight
│ ├── argocd-operator (Sonnet)
│ ├── prometheus-analyst (Sonnet)
│ └── git-operator (Sonnet)
├── programmer-orchestrator (Opus) - code development
│ ├── code-planner (Sonnet)
│ ├── code-implementer (Sonnet)
│ └── code-reviewer (Sonnet)
└── network-agent (future)
```
@@ -30,6 +34,7 @@ All agents MUST read and follow the processes defined in these files:
| `~/.claude/state/personal-assistant-preferences.json` | PA persistent config | master-orchestrator |
| `~/.claude/state/personal-assistant/session-context.json` | Session context override | user/CLI |
| `~/.claude/state/personal-assistant/general-instructions.json` | User memory | personal-assistant |
| `~/.claude/state/kb.json` | Shared knowledge base | personal-assistant |
## Key Processes
@@ -57,6 +62,7 @@ All agents MUST read and follow the processes defined in these files:
├── agents/ # Agent definitions (Markdown + YAML frontmatter)
├── state/ # Shared state files (JSON)
│ ├── sysadmin/ # Linux sysadmin agent state
│ ├── programmer/ # Programmer agent state
│ └── personal-assistant/ # Personal assistant agent state
├── skills/ # Skill definitions
├── commands/ # Slash command definitions