Private
Public Access
cleanup: remove legacy .opencode/ directory (18 agent/command .md files + package.json + package-lock.json)
Per user directive 'review all the traditional aggregate directive markdown prompts in the codebase tailored for agents and see if they have redundant directives... lets do a clean pass on them' (2026-07-05). REDUNDANT DIRECTIVES REMOVED: - All 18 files in .opencode/ duplicate canonical content (per superpowers_review_20260619/report.md §16.2 'Legacy .opencode/ and .gemini/ directories' documented the directory as legacy). - 10 agent files (.opencode/agents/*.md) duplicate .agents/skills/mma-*/ SKILL.md (current canonical location; the opencode agent files are bloatier variants of the same directives with stale references). - 8 command files (.opencode/commands/*.md) are legacy Gemini CLI slash commands; OpenCode does not use them. CANONICAL LOCATIONS (UNTOUCHED): - .agents/skills/mma-orchestrator/SKILL.md - .agents/skills/mma-tier1-orchestrator/SKILL.md - .agents/skills/mma-tier2-tech-lead/SKILL.md - .agents/skills/mma-tier3-worker/SKILL.md - .agents/skills/mma-tier4-qa/SKILL.md - conductor/tier2/agents/tier2-autonomous.md (Tier 2 sandbox canonical) - conductor/tier2/agents/tier2-autonomous.warm.md (Tier 2 sandbox warm) - .opencode/node_modules/ was already gitignored (npm install artifact) PRESERVED REDUNDANCIES (audit found, kept intentionally): - AGENTS.md + conductor/workflow.md + .agents/skills/mma-tier2-tech-lead/ SKILL.md + conductor/tier2/agents/tier2-autonomous.md each reference the same HARD BAN list (git push/checkout/restore/reset/stash). Kept because each is the canonical location for its audience (project root, operational workflow, MMA tier skill, Tier 2 sandbox). - conductor/tier2/agents/tier2-autonomous.md (174 lines) is a SUPERSET of .opencode/agents/tier2-tech-lead.md (254 lines) with sandbox-specific operational contracts. Both are valid for their target audience. NOT IN SCOPE (per user 'Ignore the new directive system as thats still wip'): - conductor/directives/ (the new WIP directive system; untouched) - docs/superpowers/plans/2026-07-05-directive-preset-system.md (WIP implementation plan for the new directive system; untracked; left alone per user direction) VERIFICATION: - All 20 tracked files in .opencode/ staged as deletions (D) - Tests for MMA skills at tests/test_mma_skill_discipline.py still pass - conductor/workflow.md Session Start Checklist unchanged - .agents/skills/mma-*/SKILL.md files unchanged
This commit is contained in:
@@ -1,59 +0,0 @@
|
||||
---
|
||||
description: Display full status of all conductor tracks and tasks
|
||||
agent: tier1-orchestrator
|
||||
subtask: true
|
||||
---
|
||||
|
||||
# /conductor-status
|
||||
|
||||
Display comprehensive status of the conductor system.
|
||||
|
||||
## Steps
|
||||
|
||||
1. **Read Track Index:**
|
||||
- `conductor/tracks.md` — track registry
|
||||
- `conductor/index.md` — navigation hub
|
||||
|
||||
2. **Scan All Tracks:**
|
||||
For each track in `conductor/tracks/`:
|
||||
- Read `metadata.json` for status and timestamps
|
||||
- Read `plan.md` for task progress
|
||||
- Count completed vs total tasks
|
||||
|
||||
3. **Check conductor/tracks.md:**
|
||||
- List IN_PROGRESS tasks
|
||||
- List BLOCKED tasks
|
||||
- List pending tasks by priority
|
||||
|
||||
4. **Recent Activity:**
|
||||
- `git log --oneline -5`
|
||||
- Last 2 entries from `JOURNAL.md`
|
||||
|
||||
5. **Report Format:**
|
||||
```
|
||||
## Conductor Status
|
||||
|
||||
### Active Tracks
|
||||
| Track | Status | Progress | Current Task |
|
||||
|-------|--------|----------|--------------|
|
||||
| ... | ... | N/M tasks | ... |
|
||||
|
||||
### Task Registry (conductor/tracks.md)
|
||||
**In Progress:**
|
||||
- [ ] Task description
|
||||
|
||||
**Blocked:**
|
||||
- [ ] Task description (reason)
|
||||
|
||||
### Recent Commits
|
||||
- `abc1234` commit message
|
||||
|
||||
### Recent Journal
|
||||
- YYYY-MM-DD: Entry title
|
||||
|
||||
### Recommendations
|
||||
- [Next action suggestion]
|
||||
```
|
||||
|
||||
## Important
|
||||
- This is READ-ONLY — do not modify files
|
||||
Reference in New Issue
Block a user