You are helping the user draft a commit message only, without checking for changesets or ADRs.
Generates conventional commit messages from staged git changes without checking for changesets or ADRs.
/plugin marketplace add pietgk/vivief/plugin install devac@viviefYou are helping the user draft a commit message only, without checking for changesets or ADRs.
This is a lightweight version of /devac:commit for quick commit message generation.
git diff --cached --stat
If nothing is staged, inform the user.
git diff --cached
Consider:
Follow conventional commit format:
type(scope): description
[optional body with more details]
Types:
feat - New featurefix - Bug fixdocs - Documentation onlyrefactor - Code restructuringperf - Performance improvementtest - Adding/updating testschore - Maintenance tasks## Suggested Commit Message
fix(core): handle empty package.json gracefully
---
To use this message:
```bash
git commit -m "fix(core): handle empty package.json gracefully"
Or copy and modify as needed.
## When to Use
Use `/devac:draft-commit` when:
- You just need a quick commit message
- You'll handle changesets/ADRs separately
- You're making a minor change that doesn't need the full workflow