Skip to content

Commit 3fb1541

Browse files
chore: Clean up session documents and old artifacts
Removed session working documents that shouldn't be in user-facing repo: Root directory cleanup: - GIT_COMMIT_GUIDE_v4.8.0.md - HYBRID_CLI_GUIDE.md - HYBRID_SYSTEM_COMPLETE.md - HYBRID_SYSTEM_SIMPLIFIED.md (untracked) - OPTION_A_COMPLETE_SUMMARY.md (untracked) - OPTION_A_IMPLEMENTATION_COMPLETE.md (untracked) - RELEASE_NOTES_v4.8.0.md - SESSION_COMPLETE.txt (untracked) - SLASH_COMMAND_CLEANUP_PROPOSAL.md (untracked) - WORKFLOW_CHAINING_ENABLED.md - test_wizard_risk_analysis.json (untracked) - v4.8.0_COMPLETE_SUMMARY.md Docs directory cleanup: - docs/PHASE2_IMPLEMENTATION_SUMMARY.md - docs/PHASE2_PERFORMANCE_RESULTS.md - docs/TEST_IMPROVEMENTS_PHASE1_AND_2_COMPLETE.md - docs/TEST_IMPROVEMENT_PHASE1_SUMMARY.md - docs/CI_SECURITY_SCANNING.md (untracked) - docs/DEVELOPER_ONBOARDING_CHECKLIST.md (untracked) - docs/DEVELOPER_SECURITY_WORKFLOW.md (untracked) - docs/SECURITY_COMPLETE_SUMMARY.md (untracked) - docs/SECURITY_DETAILED_ANALYSIS.md (untracked) - docs/SECURITY_PHASE2_COMPLETE.md (untracked) - docs/SECURITY_PHASE3_COMPLETE.md (untracked) - docs/SECURITY_REMEDIATION_*.md (untracked) - docs/SECURITY_SCANNER_ARCHITECTURE.md (untracked) Benchmarks: - benchmarks/optimization_results.json (untracked) Old artifacts: - empathy_framework-4.7.1/ directory (old extraction) Kept legitimate documentation: - docs/DEVELOPER_GUIDE.md - docs/SECURITY_REVIEW.md - All optimization documentation (REDIS_OPTIMIZATION_SUMMARY.md, etc.) - .claude/ configuration files This cleanup prepares the repo for v4.9.1 release with only user-facing documentation remaining. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 4234b08 commit 3fb1541

228 files changed

Lines changed: 13659 additions & 50968 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/commands/agent.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,14 @@ Run a specific agent for a task.
183183

184184
Agents can also be invoked from relevant hubs:
185185

186-
| Hub | Related Agents |
187-
| ----------- | ----------------------------------------------- |
188-
| `/dev` | debugger, code-reviewer, refactorer |
189-
| `/testing` | test-writer, quality-validator |
190-
| `/workflow` | planner, architect |
191-
| `/docs` | code-reviewer (documentation review) |
192-
| `/release` | security-reviewer, quality-validator |
186+
| Hub | Related Agents |
187+
| ------------ | ----------------------------------------------- |
188+
| `/dev` | debugger, code-reviewer, refactorer |
189+
| `/testing` | test-writer, quality-validator |
190+
| `/workflows` | (runs automated multi-stage workflows) |
191+
| `/plan` | planner, architect |
192+
| `/docs` | code-reviewer (documentation review) |
193+
| `/release` | security-reviewer, quality-validator |
193194

194195
## When to Use This Hub Directly
195196

@@ -202,7 +203,8 @@ Use `/agent` when you want to:
202203

203204
## Related Hubs
204205

205-
- `/workflow` - Development workflows (uses planner, architect)
206+
- `/workflows` - Run automated AI workflows (security-audit, bug-predict, etc.)
207+
- `/plan` - Development planning (uses planner, architect)
206208
- `/dev` - Development tools (uses debugger, code-reviewer)
207209
- `/testing` - Testing workflows (uses test-writer)
208210
- `/context` - Context and memory management

.claude/commands/context.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ category: hub
55
aliases: [ctx]
66
tags: [context, memory, state, profile, hub]
77
version: "2.0"
8+
question:
9+
header: "Context"
10+
question: "What context operation do you need?"
11+
multiSelect: false
12+
options:
13+
- label: "📊 Show status"
14+
description: "Display current session state, tasks, and context"
15+
- label: "💭 View memory"
16+
description: "Browse and search learned patterns and preferences"
17+
- label: "💾 Save state"
18+
description: "Preserve current state for later resumption"
19+
- label: "📝 Edit CLAUDE.md"
20+
description: "Update project memory and instructions"
821
---
922

1023
# Context Management
@@ -139,7 +152,8 @@ View session status or update your preferences.
139152
| ------------------ | ------------ |
140153
| Create commits | `/dev` |
141154
| Run tests | `/testing` |
142-
| Plan features | `/workflow` |
155+
| Plan features | `/plan` |
156+
| Run workflows | `/workflows` |
143157
| Learn patterns | `/learning` |
144158

145159
## Related Hubs

.claude/commands/dev.md

Lines changed: 44 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ category: hub
55
aliases: [developer]
66
tags: [development, git, debugging, quality, hub]
77
version: "3.0"
8+
question:
9+
header: "Task"
10+
question: "What development task do you need?"
11+
multiSelect: false
12+
options:
13+
- label: "🐛 Debug & analyze"
14+
description: "Investigate bugs, review code, refactor with guidance"
15+
- label: "📝 Git operations"
16+
description: "Create commits, pull requests, manage branches"
17+
- label: "✅ Quality check"
18+
description: "Run linting, type checking, security scans"
19+
- label: "⚡ Performance"
20+
description: "Profile code, identify bottlenecks, optimize"
821
---
922

1023
# Developer Tools
@@ -13,32 +26,30 @@ version: "3.0"
1326

1427
Development operations powered by Socratic agents that guide you through discovery.
1528

16-
## Quick Examples
29+
---
1730

18-
```bash
19-
/dev # Interactive menu
20-
/dev debug # Start debugging with debugger agent
21-
/dev review # Code review with code-reviewer agent
22-
/dev refactor # Refactoring with refactorer agent
23-
/dev commit # Create a git commit
24-
/dev pr # Create a pull request
25-
```
31+
**Based on your selection, I will:**
2632

27-
## Discovery
33+
- **🐛 Debug issue** → Use the debugger agent with Socratic questioning to help you discover root causes
34+
- **👀 Review code** → Use the code-reviewer agent to provide teaching-focused quality review
35+
- **🔧 Refactor code** → Use the refactorer agent to guide structural improvements
36+
- **📝 Git commit** → Stage files and create a well-formatted commit
37+
- **🚀 Create PR** → Push changes and create a pull request with summary
38+
- **✅ Quality check** → Run linters, type checking, and security scans
2839

29-
```yaml
30-
Question:
31-
header: "Task"
32-
question: "What development task do you need?"
33-
options:
34-
- label: "Debug issue"
35-
description: "Investigate bugs with guided root cause analysis"
36-
- label: "Review code"
37-
description: "Quality review with teaching explanations"
38-
- label: "Refactor code"
39-
description: "Improve structure with pattern guidance"
40-
- label: "Git operations"
41-
description: "Commits, PRs, and version control"
40+
---
41+
42+
## Quick Direct Access
43+
44+
You can also invoke sub-commands directly:
45+
46+
```bash
47+
/dev debug # Start debugging
48+
/dev review # Code review
49+
/dev refactor # Refactoring
50+
/dev commit # Git commit
51+
/dev pr # Create PR
52+
/dev quality # Quality check
4253
```
4354

4455
---
@@ -216,17 +227,19 @@ Ready to open PR → /dev pr
216227

217228
## When NOT to Use This Hub
218229

219-
| If you need... | Use instead |
220-
|------------------------|-------------|
221-
| Run tests | `/testing` |
222-
| Write documentation | `/docs` |
223-
| Release/deploy | `/release` |
224-
| Plan a feature | `/workflow` |
225-
| Manage context/memory | `/context` |
230+
| If you need... | Use instead |
231+
|------------------------|--------------|
232+
| Run tests | `/testing` |
233+
| Write documentation | `/docs` |
234+
| Release/deploy | `/release` |
235+
| Plan a feature | `/plan` |
236+
| Run automated analysis | `/workflows` |
237+
| Manage context/memory | `/context` |
226238

227239
## Related Hubs
228240

229241
- `/testing` - Run tests, coverage, TDD
230-
- `/workflow` - Plan features, architecture
242+
- `/workflows` - Run automated workflows (security-audit, bug-predict, etc.)
243+
- `/plan` - Plan features, architecture
231244
- `/release` - Prepare and publish releases
232245
- `/agent` - Direct agent invocation

.claude/commands/docs.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ category: hub
55
aliases: [documentation]
66
tags: [documentation, explanation, hub]
77
version: "3.0"
8+
question:
9+
header: "Documentation"
10+
question: "What documentation task do you need?"
11+
multiSelect: false
12+
options:
13+
- label: "💡 Explain code"
14+
description: "Understand how code works with teaching-focused explanations"
15+
- label: "📝 Generate docs"
16+
description: "Create documentation from code with examples"
17+
- label: "📋 Feature overview"
18+
description: "Get high-level overview of a feature or module"
19+
- label: "🔍 API reference"
20+
description: "Generate API documentation with usage examples"
821
---
922

1023
# Documentation
@@ -176,6 +189,7 @@ Need summary for stakeholders → /docs overview
176189
## Related Hubs
177190

178191
- `/dev` - Code changes, commits, PRs
179-
- `/workflow` - Feature planning
192+
- `/workflows` - Run automated workflows (doc-gen, doc-orchestrator)
193+
- `/plan` - Feature planning
180194
- `/learning` - Pattern documentation
181195
- `/agent` - Direct agent invocation

.claude/commands/help.md

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ When you type `/` in Claude Code, you'll see two types of commands:
1919

2020
| Type | Source | Examples |
2121
| ---------------- | ---------------------------------- | --------------------------------------------------------------------------------- |
22-
| **Project Hubs** | This project (`.claude/commands/`) | `/dev`, `/testing`, `/workflow`, `/docs`, etc. |
22+
| **Project Hubs** | This project (`.claude/commands/`) | `/dev`, `/testing`, `/workflows`, `/plan`, `/docs`, etc. |
2323
| **Built-in** | Claude Code itself | `/clear`, `/compact`, `/config`, `/cost`, `/doctor`, `/init`, `/model`, `/status` |
2424

2525
**This help covers the 9 Project Hubs below.** For built-in commands, see [Claude Code documentation](https://docs.anthropic.com/claude-code).
@@ -32,7 +32,8 @@ When you type `/` in Claude Code, you'll see two types of commands:
3232
| ------------ | -------------------- | ------------------------------------------ |
3333
| `/dev` | `/developer` | Debugging, commits, PRs, code quality |
3434
| `/testing` | `/tests`, `/test-hub`| Run tests, coverage, benchmarks |
35-
| `/workflow` | `/wf` | Planning, TDD, code review, refactoring |
35+
| `/workflows` | `/wf`, `/workflow` | Run automated AI workflows (security, perf)|
36+
| `/plan` | `/approach` | Planning, TDD, code review, refactoring |
3637
| `/docs` | `/documentation` | Explain code, manage docs, feature overview|
3738
| `/agent` | `/agents` | Create and manage specialized agents |
3839
| `/context` | `/ctx` | Save/restore state, memory, status |
@@ -46,12 +47,14 @@ When you type `/` in Claude Code, you'll see two types of commands:
4647
# Run any hub for an interactive menu
4748
/dev
4849
/testing
49-
/workflow
50+
/workflows
51+
/plan
5052

5153
# Or provide context directly
5254
/dev "debug login error"
5355
/testing "run unit tests"
54-
/workflow "plan new feature"
56+
/workflows run security-audit
57+
/plan "new feature"
5558
```
5659

5760
## Finding the Right Hub
@@ -65,8 +68,11 @@ Code & Git:
6568
Testing:
6669
└─ Run tests, coverage, benchmarks → /testing
6770
71+
Automated Analysis:
72+
└─ Security audit, bug predict, perf audit → /workflows
73+
6874
Development Process:
69-
└─ Plan, TDD, review, refactor → /workflow
75+
└─ Plan, TDD, review, refactor → /plan
7076
7177
Documentation:
7278
└─ Explain code, write docs → /docs
@@ -89,18 +95,20 @@ Setup:
8995

9096
## Common Tasks Quick Reference
9197

92-
| Task | Command |
93-
| ------------------------ | -------------------------- |
94-
| Debug an error | `/dev "debug <error>"` |
95-
| Create a commit | `/dev "commit"` |
96-
| Create a PR | `/dev "create PR"` |
97-
| Run tests | `/testing "run tests"` |
98-
| Check coverage | `/testing "coverage"` |
99-
| Plan a feature | `/workflow "plan <feat>"` |
100-
| Review code | `/workflow "review"` |
101-
| Explain code | `/docs "explain <file>"` |
102-
| Save session state | `/context "save state"` |
103-
| Prepare release | `/release "prep 1.0.0"` |
98+
| Task | Command |
99+
| ------------------------ | ------------------------------- |
100+
| Debug an error | `/dev "debug <error>"` |
101+
| Create a commit | `/dev "commit"` |
102+
| Create a PR | `/dev "create PR"` |
103+
| Run tests | `/testing "run tests"` |
104+
| Check coverage | `/testing "coverage"` |
105+
| Security audit | `/workflows run security-audit` |
106+
| Bug prediction | `/workflows run bug-predict` |
107+
| Plan a feature | `/plan "new feature"` |
108+
| Review code | `/plan "review"` |
109+
| Explain code | `/docs "explain <file>"` |
110+
| Save session state | `/context "save state"` |
111+
| Prepare release | `/release "prep 1.0.0"` |
104112

105113
## Hub Features
106114

.claude/commands/learning.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ aliases: [learn-hub]
66
tags: [learning, patterns, memory, hub]
77
version: "2.1"
88
inline: true
9+
question:
10+
header: "Learning"
11+
question: "What would you like to do?"
12+
multiSelect: false
13+
options:
14+
- label: "📊 Evaluate session"
15+
description: "Analyze current session and extract learnings"
16+
- label: "🔍 View patterns"
17+
description: "Browse learned debugging and refactoring patterns"
18+
- label: "📚 Teach preferences"
19+
description: "Add new preferences or update existing ones"
20+
- label: "💡 Suggest improvements"
21+
description: "Get recommendations based on session analysis"
922
---
1023

1124
# Learning Management
@@ -138,4 +151,5 @@ Manually teach a preference or pattern.
138151

139152
- `/context` - State and memory management
140153
- `/agent` - Agent pattern learning
141-
- `/workflow` - Development workflows
154+
- `/workflows` - Run automated workflows
155+
- `/plan` - Development approaches (TDD, planning, review)
Lines changed: 35 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,45 @@
11
---
2-
name: workflow
3-
description: Development workflow hub - planning, TDD, review, refactoring
2+
name: plan
3+
description: Development planning hub - structured approaches for planning, TDD, review, refactoring
44
category: hub
5-
aliases: [wf]
6-
tags: [workflow, development, planning, hub]
7-
version: "2.0"
5+
aliases: [approach]
6+
tags: [planning, development, tdd, review, refactor, hub]
7+
version: "3.0"
8+
question:
9+
header: "Planning"
10+
question: "What do you need to plan?"
11+
multiSelect: false
12+
options:
13+
- label: "🎯 New feature"
14+
description: "Plan implementation approach for a new feature"
15+
- label: "🧪 TDD approach"
16+
description: "Design tests before implementation"
17+
- label: "🔧 Refactoring plan"
18+
description: "Plan safe refactoring with verification steps"
19+
- label: "🏗️ Architecture review"
20+
description: "Review and plan architectural changes"
821
---
922

10-
# Development Workflows
23+
# Development Planning
1124

12-
**Aliases:** `/wf`
25+
**Aliases:** `/approach`
1326

14-
Structured approaches for common development tasks.
27+
Structured approaches for common development tasks with Socratic guidance.
1528

1629
## Quick Examples
1730

1831
```bash
19-
/workflow # Interactive menu
20-
/workflow "plan auth feature" # Start planning
21-
/workflow "refactor utils" # Start refactoring
32+
/plan # Interactive menu
33+
/plan "auth feature" # Start planning a feature
34+
/plan "refactor utils" # Plan a refactoring
2235
```
2336

2437
## Discovery
2538

2639
```yaml
2740
Question:
28-
header: "Workflow"
29-
question: "What development workflow do you need?"
41+
header: "Approach"
42+
question: "What development approach do you need?"
3043
options:
3144
- label: "Plan implementation"
3245
description: "Create a plan with Socratic discovery before coding"
@@ -221,7 +234,7 @@ Restructure code without changing behavior.
221234

222235
---
223236

224-
## Workflow Selection Guide
237+
## Selection Guide
225238

226239
```text
227240
Need to build something new?
@@ -254,15 +267,17 @@ For deeper analysis, invoke specialized agents via `/agent`:
254267

255268
## When NOT to Use This Hub
256269

257-
| If you need... | Use instead |
258-
| -------------------- | ----------- |
259-
| Run existing tests | `/testing` |
260-
| Create commit/PR | `/dev` |
261-
| Write documentation | `/docs` |
262-
| Deploy changes | `/release` |
270+
| If you need... | Use instead |
271+
| --------------------------- | ------------ |
272+
| Run automated workflows | `/workflows` |
273+
| Run existing tests | `/testing` |
274+
| Create commit/PR | `/dev` |
275+
| Write documentation | `/docs` |
276+
| Deploy changes | `/release` |
263277

264278
## Related Hubs
265279

280+
- `/workflows` - Run automated analysis workflows (security-audit, bug-predict, etc.)
266281
- `/dev` - Debugging, commits, PRs
267282
- `/testing` - Run tests, coverage
268283
- `/docs` - Documentation

0 commit comments

Comments
 (0)