Refactored commands to extract reusable skills following the Commands → Skills separation pattern. Each command is now <50 lines and references skill files for detailed knowledge. Plugins refactored: - claude-config-maintainer: 5 commands → 7 skills - code-sentinel: 3 commands → 2 skills - contract-validator: 5 commands → 6 skills - data-platform: 10 commands → 6 skills - doc-guardian: 5 commands → 6 skills (replaced nested dir) - git-flow: 8 commands → 7 skills Skills contain: workflows, validation rules, conventions, reference data, tool documentation Commands now contain: YAML frontmatter, agent assignment, skills list, brief workflow steps, parameters Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
57 lines
1.3 KiB
Markdown
57 lines
1.3 KiB
Markdown
---
|
|
name: git-status
|
|
description: Show comprehensive git status with recommendations
|
|
agent: 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
|
|
|
|
1. **Display header** - Show GIT-FLOW Status header
|
|
2. **Gather info** - Branch, base comparison, remote status
|
|
3. **Categorize changes** - Staged, unstaged, untracked, deleted, renamed
|
|
4. **Generate recommendations** - What to stage, commit, sync
|
|
5. **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 ---
|
|
/commit - Commit staged changes
|
|
/commit-push - Commit and push
|
|
```
|