refactor(cli)!: rename all skills and agents to consistent ce- prefix (#503)
Some checks failed
CI / pr-title (push) Has been cancelled
CI / test (push) Has been cancelled
Release PR / release-pr (push) Has been cancelled
Release PR / publish-cli (push) Has been cancelled

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Trevin Chow
2026-04-18 15:44:22 -07:00
committed by GitHub
parent 49249d7317
commit 5c0ec9137a
233 changed files with 3199 additions and 936 deletions

View File

@@ -46,7 +46,7 @@ The insight: individual comments don't say "this whole approach is wrong," but w
### Relevant Code and Patterns
- `plugins/compound-engineering/skills/resolve-pr-feedback/SKILL.md` — the orchestrator skill, 285 lines
- `plugins/compound-engineering/agents/workflow/pr-comment-resolver.md` — the worker agent, 134 lines
- `plugins/compound-engineering/agents/workflow/ce-pr-comment-resolver.agent.md` — the worker agent, 134 lines
- Current same-file grouping at SKILL.md lines 107-113 — conflict avoidance pattern to extend
- The ce:review skill's confidence-gated merge/dedup pipeline — precedent for pre-dispatch analysis
- The todo-resolve skill uses the same pr-comment-resolver agent and batching pattern
@@ -257,7 +257,7 @@ No separate concern-category matching for cross-cycle detection. The re-entry it
**Dependencies:** Unit 2
**Files:**
- Modify: `plugins/compound-engineering/agents/workflow/pr-comment-resolver.md`
- Modify: `plugins/compound-engineering/agents/workflow/ce-pr-comment-resolver.agent.md`
**Approach:**
- Add a "Cluster Mode" section to the agent, structured as a mode detection table (following ce:review's pattern): if a `<cluster-brief>` XML block is present in the prompt, activate cluster mode; otherwise, standard single-thread mode
@@ -347,7 +347,7 @@ No separate concern-category matching for cross-cycle detection. The re-entry it
## Sources & References
- Related code: `plugins/compound-engineering/skills/resolve-pr-feedback/SKILL.md`
- Related code: `plugins/compound-engineering/agents/workflow/pr-comment-resolver.md`
- Related code: `plugins/compound-engineering/agents/workflow/ce-pr-comment-resolver.agent.md`
- Institutional learning: `docs/solutions/skill-design/git-workflow-skills-need-explicit-state-machines-2026-03-27.md`
- Institutional learning: `docs/solutions/skill-design/claude-permissions-optimizer-classification-fix.md`
- Institutional learning: `docs/solutions/workflow/todo-status-lifecycle.md`