mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-05 16:13:08 +08:00
refactor: remove subagent references and update CLI tool usage across documentation
This commit is contained in:
@@ -257,13 +257,15 @@ describe('my-skill', () => {
|
||||
|
||||
## Debugging
|
||||
|
||||
Enable debug logging:
|
||||
Enable debug logging and invoke skill directly:
|
||||
|
||||
```bash
|
||||
export CCW_DEBUG=1
|
||||
ccw skill run my-skill "test input"
|
||||
Skill(skill="my-skill", args="test input")
|
||||
```
|
||||
|
||||
> **Note**: The CLI command `ccw skill run` is deprecated. Use `Skill()` tool directly.
|
||||
|
||||
::: info See Also
|
||||
- [Core Skills](./core-skills.md) - Built-in skill reference
|
||||
- [Skills Library](./index.md) - All available skills
|
||||
|
||||
@@ -246,8 +246,8 @@ Skill(skill="team-roadmap-dev", args="--epic ts-migration")
|
||||
**Scenario**: Generate API documentation
|
||||
|
||||
```bash
|
||||
# Step 1: Capture existing patterns
|
||||
ccw memory:capture "API patterns: REST, versioning, error handling"
|
||||
# Step 1: Capture existing patterns via memory skill
|
||||
Skill(skill="memory-capture", args="API patterns: REST, versioning, error handling")
|
||||
|
||||
# Step 2: Generate docs
|
||||
ccw software-manual --output ./docs/api/
|
||||
|
||||
Reference in New Issue
Block a user