mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
refactor(session): migrate remaining bash commands to ccw session
Replace legacy bash operations in session commands with ccw session commands for consistency and better maintainability. Changes: - session/list.md: Replace ls/wc with ccw session list - session/complete.md: Replace bash marker/manifest ops with ccw session - skills/command-guide reference docs: Mirror all changes Commands replaced: - `ls .workflow/active/WFS-*` → `ccw session list --location active` - `test -f .archiving` → `ccw session read --type process --filename .archiving` - `touch .archiving` → `ccw session write --type process --filename .archiving` - `cat manifest.json` → `ccw session read manifest --type manifest` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -77,11 +77,12 @@ Total: 3 sessions (1 active, 1 paused, 1 completed)
|
||||
|
||||
### Quick Commands
|
||||
```bash
|
||||
# Count all sessions
|
||||
ls .workflow/active/WFS-* | wc -l
|
||||
# Count active sessions using ccw
|
||||
ccw session list --location active --no-metadata
|
||||
# Returns session count in result.total
|
||||
|
||||
# Show recent sessions
|
||||
ls -t .workflow/active/WFS-*/workflow-session.json | head -3
|
||||
ccw session list --location active
|
||||
```
|
||||
## session_manager Tool Alternative
|
||||
|
||||
|
||||
Reference in New Issue
Block a user