Remove slash command invocation syntax from README

Workflows and tools will be accessible via plugin system (coming soon).
For now, the README focuses on the 83 agents which are directly usable.

Changes:
- Removed /workflows: and /tools: invocation examples
- Updated multi-agent orchestration examples to show natural language
- Simplified migration guide to focus on what works now
- Plugin-based workflow/tool access will be documented in future PR
This commit is contained in:
Seth Hobson
2025-10-08 19:37:14 -04:00
parent bcaf626904
commit a7c69c016f

View File

@@ -140,38 +140,7 @@ Focused, single-purpose utilities for specific development operations:
## Usage ## Usage
### Workflow Invocation All 83 specialized agents are automatically available to Claude Code and can be explicitly invoked:
```bash
# Full-stack feature development
/workflows:feature-development implement OAuth2 authentication
# Security hardening
/workflows:security-hardening perform security audit and remediation
# ML pipeline
/workflows:ml-pipeline build recommendation system with monitoring
# Incident response
/workflows:incident-response debug production memory leak
```
### Tool Invocation
```bash
# API scaffolding
/tools:api-scaffold create user management endpoints
# Security scanning
/tools:security-scan perform vulnerability assessment
# Documentation generation
/tools:doc-generate create API documentation
```
### Direct Agent Access
Agents are automatically available and can be explicitly invoked:
```bash ```bash
"Use backend-architect to design the authentication API" "Use backend-architect to design the authentication API"
@@ -216,28 +185,22 @@ search-specialist, dx-optimizer, sql-pro
## Multi-Agent Orchestration Examples ## Multi-Agent Orchestration Examples
Agents automatically coordinate for complex tasks:
### Full-Stack Development ### Full-Stack Development
```bash **Example**: "Implement user dashboard with analytics"
/workflows:full-stack-feature implement user dashboard with analytics
```
**Orchestrates**: backend-architect → graphql-architect → frontend-developer → mobile-developer → test-automator → security-auditor → performance-engineer → deployment-engineer **Orchestrates**: backend-architect → graphql-architect → frontend-developer → mobile-developer → test-automator → security-auditor → performance-engineer → deployment-engineer
### Security Hardening ### Security Hardening
```bash **Example**: "Implement security best practices"
/workflows:security-hardening implement security best practices
```
**Orchestrates**: security-auditor → backend-security-coder → frontend-security-coder → mobile-security-coder → test-automator **Orchestrates**: security-auditor → backend-security-coder → frontend-security-coder → mobile-security-coder → test-automator
### Data/ML Pipeline ### Data/ML Pipeline
```bash **Example**: "Build customer churn prediction model"
/workflows:ml-pipeline build customer churn prediction model
```
**Orchestrates**: data-scientist → data-engineer → ml-engineer → mlops-engineer → ai-engineer → performance-engineer **Orchestrates**: data-scientist → data-engineer → ml-engineer → mlops-engineer → ai-engineer → performance-engineer
### Incident Response ### Incident Response
```bash **Example**: "Debug high CPU usage in production"
/workflows:incident-response debug high CPU usage in production
```
**Orchestrates**: incident-responder → devops-troubleshooter → debugger → error-detective → observability-engineer **Orchestrates**: incident-responder → devops-troubleshooter → debugger → error-detective → observability-engineer
## Model Configuration ## Model Configuration
@@ -324,36 +287,17 @@ If you previously used the separate `commands` repository (`wshobson/commands`):
# Should show: agents/ workflows/ tools/ README.md # Should show: agents/ workflows/ tools/ README.md
``` ```
4. **Update your workflow**:
- Old: `/feature-development` or `/commands:feature-development`
- New: `/workflows:feature-development`
- Old: `/api-scaffold` or `/commands:api-scaffold`
- New: `/tools:api-scaffold`
### What Stays the Same? ### What Stays the Same?
- All 83 agents work exactly as before (no command syntax changes) - All 83 agents work exactly as before (no command syntax changes)
- Agent definitions and capabilities unchanged - Agent definitions and capabilities unchanged
- Direct agent invocation still works: "Use backend-architect to..." - Direct agent invocation still works: "Use backend-architect to..."
### Breaking Changes ### What's New?
⚠️ **Command Invocation Syntax**: **Workflows & Tools Added**: 15 workflow orchestrators and 42 development tools now included
- Workflows now use `/workflows:` prefix instead of just `/` ✅ **Unified Repository**: Everything accessible from a single installation
- Tools now use `/tools:` prefix instead of just `/` ✅ **Comprehensive Documentation**: Migration guide and detailed usage instructions
**Old syntax** (deprecated):
```bash
/feature-development implement auth
/api-scaffold create endpoints
```
**New syntax** (current):
```bash
/workflows:feature-development implement auth
/tools:api-scaffold create endpoints
```
### Need Help? ### Need Help?