mirror of
https://github.com/duthaho/claudekit.git
synced 2026-06-12 05:04:56 +03:00
35 lines
461 B
Markdown
35 lines
461 B
Markdown
# Status Checking
|
|
|
|
## Project Status
|
|
|
|
Show current project state:
|
|
|
|
```bash
|
|
git status
|
|
git log --oneline -5
|
|
```
|
|
|
|
### Output Format
|
|
|
|
```markdown
|
|
## Project Status
|
|
|
|
### Git
|
|
- Branch: `feature/xyz`
|
|
- Status: Clean / X modified files
|
|
|
|
### Tasks
|
|
- In Progress: X
|
|
- Pending: Y
|
|
- Completed: Z
|
|
|
|
### Recent Commits
|
|
1. [commit message]
|
|
2. [commit message]
|
|
|
|
### Open PRs
|
|
- #123: [title]
|
|
```
|
|
|
|
Combines git state, TodoWrite tasks, and recent activity into a single snapshot.
|