Agent skill
commit-austencloud-flow-arts-wiki
Analyze changes and commit in logical chunks
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/commit-austencloud-flow-arts-wiki
SKILL.md
Smart Commit
Step 1: Analyze All Changes
!git status
!git diff
!git diff --cached
Step 2: Plan Logical Commits
Group changes by these dimensions:
- Feature work vs refactoring vs bug fixes
- Area/scope (which part of the wiki? config, content, infra, skin, extensions?)
- Content vs infrastructure
- Deps/config vs behavior changes
- Docs vs code
If everything belongs together -> single commit. If changes span multiple concerns -> plan multiple commits.
Step 3: Present the Plan (CONCISE)
Show a brief table - one row per commit group:
| # | Message | Files |
|---|---|---|
| 1 | fix(config): correct upload size limit in LocalSettings |
1 file |
| 2 | feat(content): add Poi article draft |
2 files |
Do NOT:
- List every file individually
- Explain what each file does
- Provide detailed breakdowns
- Add commentary about the changes
Just: commit message + file count. User can ask for details if needed.
Wait for confirmation before proceeding.
Step 4: Execute
For each planned commit:
- Stage only the relevant files:
git add <files> - For mixed files, use patch staging:
git add -p <file> - Commit with the planned message
- Verify with
git status
After all commits, show git log --oneline -n <count> to confirm.
Rules
- Never commit unrelated changes together
- If a commit can't be described in one line, it's too broad--split it
- Each commit should be independently meaningful
- Think: "Will this make sense when generating the changelog?"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?