- data-platform/skills/visual-header.md: updated command mapping table - viz-platform/claude-md-integration.md: fixed cross-plugin section - git-flow/commands/git-status.md: updated quick actions - git-flow/skills/visual-header.md: updated command header sections - projman/CONFIGURATION.md: updated quick commands to pm-setup - docs/DEBUGGING-CHECKLIST.md: fixed /debug to /pm-debug All command references now use v7.0.0 namespaced names. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1.3 KiB
1.3 KiB
name, description, agent
| name | description | agent |
|---|---|---|
| git-status | Show comprehensive git status with recommendations | git-assistant |
/git-status - Enhanced Status
Skills
- skills/visual-header.md
- skills/commit-conventions.md
- skills/environment-variables.md
Purpose
Show comprehensive git status with recommendations and insights beyond standard git status.
Parameters
| Parameter | Description |
|---|---|
--short |
Compact output format |
Workflow
- Display header - Show GIT-FLOW Status header
- Gather info - Branch, base comparison, remote status
- Categorize changes - Staged, unstaged, untracked, deleted, renamed
- Generate recommendations - What to stage, commit, sync
- Show quick actions - Relevant /commands for current state
Output Format
Git Status: <repo-name>
Branch: feat/password-reset
Base: development (3 commits ahead, 0 behind)
Remote: origin/feat/password-reset (synced)
--- Changes ---
Staged (ready to commit):
[x] src/auth/reset.ts (modified)
Unstaged:
[ ] tests/auth.test.ts (modified)
--- Recommendations ---
1. Stage test file: git add tests/auth.test.ts
2. Ready to commit with 1 staged file
--- Quick Actions ---
/git-commit - Commit staged changes
/git-commit-push - Commit and push