Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ DevFlow enhances Claude Code with intelligent development workflows. Modificatio

## Architecture Overview

Plugin marketplace with 17 plugins (9 core + 8 optional language/ecosystem), each following the Claude plugins format (`.claude-plugin/plugin.json`, `commands/`, `agents/`, `skills/`).
Plugin marketplace with 17 plugins (8 core + 9 optional language/ecosystem), each following the Claude plugins format (`.claude-plugin/plugin.json`, `commands/`, `agents/`, `skills/`).

| Plugin | Purpose | Teams Variant |
|--------|---------|---------------|
Expand Down Expand Up @@ -46,7 +46,7 @@ Commands with Teams Variant ship as `{name}.md` (parallel subagents) and `{name}
devflow/
├── shared/skills/ # 32 skills (single source of truth)
├── shared/agents/ # 10 shared agents (single source of truth)
├── plugins/devflow-*/ # 17 plugins (9 core + 8 optional language/ecosystem)
├── plugins/devflow-*/ # 17 plugins (8 core + 9 optional language/ecosystem)
├── docs/reference/ # Detailed reference documentation
├── scripts/ # Helper scripts (statusline, docs-helpers)
│ └── hooks/ # Working Memory + ambient hooks (stop, session-start, pre-compact, ambient-prompt)
Expand Down
3 changes: 3 additions & 0 deletions docs/reference/skills-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Shared patterns used by multiple agents.
| `github-patterns` | GitHub API patterns (rate limiting, PR comments, issues, releases) | Git |
| `implementation-patterns` | CRUD, API endpoints, events, config, logging | Coder, Resolver |
| `agent-teams` | Agent Teams patterns for peer-to-peer collaboration, debate, consensus | /code-review, /implement, /debug |
| `ambient-router` | Intent classification and proportional skill loading for ambient mode | `/ambient` command |
| `knowledge-persistence` | Record/load architectural decisions and pitfalls to `.memory/knowledge/` | /implement, /code-review, /resolve, /debug, /specify, /self-review |

### Tier 1b: Pattern Skills
Expand All @@ -47,6 +48,8 @@ Listed in Claude Code's skill catalog. May auto-invoke based on description matc
| Skill | Purpose | Agent Refs |
|-------|---------|------------|
| `input-validation` | Boundary validation enforcement | Coder |
| `search-first` | Research-before-building enforcement for utility code | Coder |
| `test-driven-development` | RED-GREEN-REFACTOR cycle enforcement | Coder |

### Tier 3: Domain-Specific Skills

Expand Down
4 changes: 4 additions & 0 deletions plugins/devflow-audit-claude/commands/audit-claude.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
description: Audit CLAUDE.md files against Anthropic best practices
---

# Command: /audit-claude

## Description
Expand Down
2 changes: 1 addition & 1 deletion plugins/devflow-debug/commands/debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Focus area: {specific code area, mechanism, or condition}
Once all investigators return, spawn a Synthesizer agent to aggregate findings:

```
Task(subagent_type="general-purpose", name="synthesizer"):
Task(subagent_type="Synthesizer"):
"You are a root cause analyst. Synthesize these investigation reports:

{paste all investigator reports}
Expand Down
1 change: 1 addition & 0 deletions shared/agents/simplifier.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: Simplifier
description: Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.
skills: core-patterns
model: inherit
---

Expand Down
1 change: 1 addition & 0 deletions shared/agents/skimmer.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: Skimmer
description: Codebase orientation using skim to identify relevant files, functions, and patterns for a feature or task
skills: knowledge-persistence
model: inherit
---

Expand Down
Loading