Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
359a52e
feat: add streamlined CLI for automation and CI/CD workflows
silversurfer562 Jan 25, 2026
0c72ba8
feat: redesign hubs with agent-first architecture (v3.0)
silversurfer562 Jan 25, 2026
0511e99
chore: remove VSCode extension (34k LOC)
silversurfer562 Jan 25, 2026
69d1944
refactor(cli): extract 15/30 commands to modular structure (50% compl…
silversurfer562 Jan 26, 2026
44743cb
refactor(cli): extract workflow and inspect commands (Phase 2, 19/30 …
silversurfer562 Jan 26, 2026
2de617c
refactor(cli): complete CLI extraction - all 30 commands modularized …
silversurfer562 Jan 26, 2026
230cd76
docs: finalize CLI refactoring - archive legacy and complete document…
silversurfer562 Jan 26, 2026
c3efb9d
refactor: Remove non-Anthropic providers from MODEL_REGISTRY (Phase 2…
silversurfer562 Jan 26, 2026
bf31c1a
refactor: Simplify ProviderConfig to Anthropic-only (Phase 2, Step 2)
silversurfer562 Jan 26, 2026
8e132a8
refactor: Update fallback system to Anthropic-only (Phase 2, Step 4)
silversurfer562 Jan 26, 2026
9b887b5
refactor: Update CLI commands to Anthropic-only (Phase 2, Step 5)
silversurfer562 Jan 26, 2026
565cb70
test: Delete HYBRID mode test files (Phase 2, Step 6)
silversurfer562 Jan 26, 2026
774021d
test: Update test_registry.py to Anthropic-only (Phase 2, Step 7)
silversurfer562 Jan 26, 2026
e7b5fc5
test: Batch update test files to Anthropic-only (Phase 2, Step 7)
silversurfer562 Jan 26, 2026
e544e2d
docs: Update documentation for v5.0.0 release (Phase 2, Step 8)
silversurfer562 Jan 26, 2026
441645b
docs: Clarify project hubs vs built-in Claude Code commands
silversurfer562 Jan 26, 2026
0ad4d57
chore: Remove dashboard and wizard-dashboard examples (Phase 2 cleanup)
silversurfer562 Jan 26, 2026
2da2562
chore: Remove dashboard and CLI components (Phase 2 cleanup)
silversurfer562 Jan 26, 2026
0256404
refactor: Update source files for Anthropic-only architecture (Phase 2)
silversurfer562 Jan 26, 2026
4317f1e
chore: Update debugging patterns
silversurfer562 Jan 26, 2026
9bf1bf1
feat: Add Socratic architect and reviewer agents
silversurfer562 Jan 26, 2026
aed2791
docs: Add Phase 2 architecture docs and session summary
silversurfer562 Jan 26, 2026
584b318
feat: Add workflow history, routing, and builder modules
silversurfer562 Jan 26, 2026
fab4f1d
docs: Add VSCode extension limitations documentation
silversurfer562 Jan 26, 2026
518f103
feat: Release v4.8.0 - Performance, Chaining, and Hybrid CLI
silversurfer562 Jan 27, 2026
538469a
chore: Bump version to 4.8.0 for release
silversurfer562 Jan 27, 2026
d0a953a
feat: Phase 2 Performance Optimizations - 2x faster with 99.9% memory…
silversurfer562 Jan 27, 2026
64d8182
fix: Improve command injection detection in Phase 3 AST filtering
silversurfer562 Jan 27, 2026
4277aef
chore: Bump version to 4.9.0 with comprehensive CHANGELOG
silversurfer562 Jan 27, 2026
5f7f2fb
fix: Update __version__ to 4.9.0 in __init__.py
silversurfer562 Jan 27, 2026
fa6e3ab
chore: Release v4.9.1 - Update README with v4.9.x features
silversurfer562 Jan 27, 2026
4234b08
security: Fix 2 high severity vulnerabilities (CVE-2026-24486, CVE-20…
silversurfer562 Jan 27, 2026
3fb1541
chore: Clean up session documents and old artifacts
silversurfer562 Jan 27, 2026
faed34d
feat: Release v5.0.0 - Agent Coordination & Dashboard (Breaking Changes)
silversurfer562 Jan 28, 2026
1c67a9a
chore: Release v5.0.1 - Add approval gates demo example
silversurfer562 Jan 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
77 changes: 59 additions & 18 deletions .claude/commands/agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,31 @@ Assemble multiple agents for collaborative work.
3. Set up handoff points
4. Configure aggregation of results

**Team composition example:**
**Team composition examples:**

```yaml
# Comprehensive code review
team: code-review-team
agents:
- code-reviewer # Quality check
- security-reviewer # Security audit
- architect # Architecture review
- code-reviewer # Quality check
- security-reviewer # Security audit
- quality-validator # Metrics analysis
workflow: sequential

# Debug and fix
team: debug-fix-team
agents:
- debugger # Find root cause
- test-writer # Write regression test
- refactorer # Clean up fix
workflow: sequential

# Feature planning
team: planning-team
agents:
- planner # Requirements discovery
- architect # Technical design
- performance-analyst # Scalability review
workflow: sequential
```

Expand All @@ -127,12 +144,20 @@ View all available agents and their capabilities.

**Available agents:**

| Agent | Role | Use Case |
| ---------------------- | --------------- | ----------------------- |
| **architect** | System design | Architecture decisions |
| **code-reviewer** | Quality review | Code review tasks |
| **security-reviewer** | Security audit | Security-sensitive code |
| **empathy-specialist** | Level 4+ work | Complex user needs |
All agents use **Socratic questioning** to guide discovery rather than just providing answers.

| Agent | Role | Use Case |
| ------------------------ | ------------------ | ------------------------------------- |
| **architect** | System design | Architecture decisions, tech choices |
| **code-reviewer** | Quality review | Code review, design patterns |
| **debugger** | Bug investigation | Root cause analysis, hypothesis tests |
| **empathy-specialist** | Level 4-5 empathy | Complex user needs, trust building |
| **performance-analyst** | Optimization | Bottlenecks, profiling, memory issues |
| **planner** | Requirements | Sprint planning, scope discovery |
| **quality-validator** | Code quality | Complexity, naming, documentation |
| **refactorer** | Code improvement | Clean code, pattern application |
| **security-reviewer** | Security audit | Vulnerabilities, attack scenarios |
| **test-writer** | Test design | Edge cases, test strategy, TDD |

---

Expand All @@ -154,17 +179,33 @@ Run a specific agent for a task.

---

## When NOT to Use This Hub
## Cross-Hub Agent Integration

Agents can also be invoked from relevant hubs:

| Hub | Related Agents |
| ------------ | ----------------------------------------------- |
| `/dev` | debugger, code-reviewer, refactorer |
| `/testing` | test-writer, quality-validator |
| `/workflows` | (runs automated multi-stage workflows) |
| `/plan` | planner, architect |
| `/docs` | code-reviewer (documentation review) |
| `/release` | security-reviewer, quality-validator |

## When to Use This Hub Directly

Use `/agent` when you want to:

| If you need... | Use instead |
| --------------------- | ----------- |
| Debug code | `/dev` |
| Run tests | `/testing` |
| Plan implementation | `/workflow` |
| Manage context/memory | `/context` |
- Create a new custom agent
- Compose an agent team for collaborative work
- Invoke a specific agent by name
- See all available agents and their capabilities

## Related Hubs

- `/workflow` - Development workflows
- `/workflows` - Run automated AI workflows (security-audit, bug-predict, etc.)
- `/plan` - Development planning (uses planner, architect)
- `/dev` - Development tools (uses debugger, code-reviewer)
- `/testing` - Testing workflows (uses test-writer)
- `/context` - Context and memory management
- `/learning` - Pattern learning
16 changes: 15 additions & 1 deletion .claude/commands/context.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ category: hub
aliases: [ctx]
tags: [context, memory, state, profile, hub]
version: "2.0"
question:
header: "Context"
question: "What context operation do you need?"
multiSelect: false
options:
- label: "πŸ“Š Show status"
description: "Display current session state, tasks, and context"
- label: "πŸ’­ View memory"
description: "Browse and search learned patterns and preferences"
- label: "πŸ’Ύ Save state"
description: "Preserve current state for later resumption"
- label: "πŸ“ Edit CLAUDE.md"
description: "Update project memory and instructions"
---

# Context Management
Expand Down Expand Up @@ -139,7 +152,8 @@ View session status or update your preferences.
| ------------------ | ------------ |
| Create commits | `/dev` |
| Run tests | `/testing` |
| Plan features | `/workflow` |
| Plan features | `/plan` |
| Run workflows | `/workflows` |
| Learn patterns | `/learning` |

## Related Hubs
Expand Down
Loading
Loading