Generates high-quality, context-aware git commits by running automated check agents against changed files.
Install
mkdir -p .claude/skills/ci && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11874" && unzip -o skill.zip -d .claude/skills/ci && rm skill.zipInstalls to .claude/skills/ci
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Create high-quality Git commits for all pending changes.Key capabilities
- →Gather Git context including diffs and status
- →Run specific subagents based on changed file types
- →Analyze changes to group files by component
- →Determine if multiple commits are needed
- →Format commit messages according to guidelines
How it works
The skill gathers Git context, runs relevant subagents based on changed files, analyzes changes for commit grouping, and then formats and creates Git commits.
Inputs & outputs
When to use ci
- →Commit code with automated quality checks
- →Update changelogs for user-facing changes
- →Fix linting and docstrings before commit
About this skill
Commit
Create high-quality Git commits for all pending changes.
Gathering context
Run these in parallel:
git diff- unstaged changes.git diff --cached- staged changes.git status- untracked files and overall state.git log --no-merges --format='%s%n%b---' -20 | grep -v '^bump:' | grep -iv dependabot- recent commit message style examples.
Running agents
After gathering context but before committing, determine which agents to run based on the changed
files. Launch each agent sequentially using the Agent tool with subagent_type general-purpose,
telling it to follow the corresponding .claude/agents/<name>.md file. Scope each agent to only the
changed files, not the entire project.
You must skip any agents that are not relevant to the changed files (e.g. if no Click command files changed, skip the click-auditor).
When Python code is being committed
If any changed files are under youtube_unofficial/ or tests/, run the following
agents in order:
- python-moderniser - upgrade to modern Python features.
- click-auditor - validate Click command consistency. Only run if files under
youtube_unofficial/commands/changed. - docstring-fixer - fix missing or incomplete docstrings.
- copy-editor - fix prose in comments, docstrings, and strings.
- test-writer - generate/update tests for new/changed code. Skip if the only changes are in
tests/. - qa-fixer - format and fix lint/spelling issues.
When user-facing changes are being committed
-
changelog - update
CHANGELOG.mdonly for user-facing changes (behaviour, CLI, public API, security, or meaningful dependency constraints that affect installs). After it completes, check ifCHANGELOG.mdwas modified (git diff CHANGELOG.md). If it was, stage it with the relevant commit. Follow.claude/agents/changelog.md, including its skip list.Files under
youtube_unofficial/,tests/, or version changes inpyproject.tomlare candidates for the changelog agent only when they change what users see or how the software behaves. Editing those paths is not sufficient on its own.Skip the changelog agent for workflows, CI config,
.claude/, documentation-only churn, cruft or generator clean-up (for example replacing template placeholders such asunknownin repository URLs, badges, packaging metadata, orCODEOWNERSwith the real project identity), internal refactors with no behaviour change, and other non-user-facing work.
Analysing changes
Group changed files by component. Determine if one commit or multiple logical commits are needed.
Incidental files
The following files do not count when determining the component prefix, unless they are the only file in a commit:
CHANGELOG.md.vscode/dictionary.txt
For example, if a commit contains youtube_unofficial/commands/main.py,
tests/test_main_command.py, and CHANGELOG.md, the component is determined by
the source files only. CHANGELOG.md is simply staged alongside them.
If CHANGELOG.md is the only file being committed, use the changelog: prefix. If
.vscode/dictionary.txt is the only file, use dictionary: prefix.
When to split into multiple commits
- Changes span unrelated components.
- A refactor and a bug fix in the same file should be separate commits.
- New tests for existing code should be separate from the code changes they test only if the code changes are themselves separate.
Cruft updates
When all changes are from re-running Wiswa (the project generator) and no hand-written code changed, this is a cruft update. Indicators:
- Only Wiswa-managed files changed (workflows,
package.json,pyproject.toml,.pre-commit-config.yaml,.claude/agents/,.claude/rules/,CITATION.cff,.vscode/dictionary.txt,uv.lock,.wiswa.jsonnet, etc.). - No files under the primary module or
tests/changed.
Commit everything in a single commit with the subject cruft: update. Include a body summarising
what changed (e.g. new/updated workflows, updated agent files, dependency version bumps, new managed
files). Do not run any agents. Do not split into multiple commits. Do not update the changelog.
When a single commit is fine
- All changes serve the same purpose within a closely related set of files.
- A bug fix and its test.
Commit message format
component.name: short description
Optional longer description explaining the why, not the what. Wrap at 72
characters.
Signed-off-by: Author Name <email>
Closes: #123
Subject line rules
- Format:
component.name: short description. Component name must be lowercase and must skip the first period if present (vscodenot.vscode,README.md->readmenotREADME), and must omit the period with extension. - Lowercase after the colon (unless a proper noun).
- No period at the end.
- Maximum 72 characters.
- Use imperative mood: 'add', 'fix', 'update', 'remove', not 'added', 'fixes', 'updated'.
Component prefix rules
For Python files, strip the youtube_unofficial/ prefix and replace / with . (like module imports).
- Python file
youtube_unofficial/media.py→media:. - Multiple files under
youtube_unofficial/commands/→commands:. - Single command file
youtube_unofficial/commands/admin.py→commands.admin:. - Workflow file
.github/workflows/qa.yml→workflows/qa:. - Multiple workflows →
workflows/*:. - Agent files
.claude/agents/*.md→.claude:or specific agent name. - Instruction files across all 3 locations →
project:(since they span Copilot/Cursor/Claude). - Test files
tests/test_media.py→tests/test_media:(ortests:for multiple). - Dictionary
.vscode/dictionary.txt→dictionary:(only when committed alone). - Top-level config (
pyproject.toml,package.json) →project:. - If changes span many unrelated areas →
project:. - CHANGELOG.md →
changelog:(only when committed alone). - CONTRIBUTING.md →
contributing:.
Trailers
Closes: #N- when a commit closes an issue. If it is another project, use the full URI.Fixes: #N- when a commit fixes a bug reported in an issue. If it is another project, use the full URI.Related: #N- when a commit is related to an issue but does not fully close or fix it. If it is another project, use the full URI.Reviewed-by:- if applicable.Co-authored-by:- if applicable.Reported-by:: - if applicable. Could get this information from a bug report that led to the fix if the issue ID/URL is known.Signed-off-by:- always included on every commit. This will be added with-s.
Making commits
Run commands separately. Do not chain commands with && or ;. Do not use scripts.
- Stage files for each logical commit using
git addwith specific file paths. - If
CHANGELOG.mdwas updated by the changelog agent, stage it with the relevant commit. - Create the directory if it does not exist:
mkdir -p .wiswa-ci. Skip if it already exists. - Create a unique temp file with
mktemp .wiswa-ci/message-XXXXXXXX. Write the commit message there using the Write tool (not Bashechoorcat) - Commit with
git commit -S -s -F <tempfile>without using the sandbox. - If a pre-commit hook fails, fix the issue, re-stage (use appropriate agent if there is one), and try to commit again.
- After all commits, run
git statusto verify clean state.
Temp commit message files under .wiswa-ci/ do not need to be deleted after a successful commit; you
may leave them in place.
Rules
- Never use
--no-verifyor--no-gpg-sign. - Amend the previous commit when the new change is logically part of it (e.g. same file, same topic, fixing something just committed). Create a new commit when the change is distinct.
- Never push unless explicitly asked.
- Always use
-Sfor GPG signing and-sfor sign-off. - If there are no changes, do nothing.
- Stage specific files, never use
git add -Aorgit add ..
When not to use it
- →When no changes are pending
- →When only cruft updates are present and no agents should run
- →When user-facing changes do not require changelog updates
Limitations
- →Agents are skipped if not relevant to changed files.
- →The changelog agent is skipped for non-user-facing changes.
- →Cruft updates are handled as a single commit without running agents.
How it compares
This skill automates the process of creating high-quality Git commits by integrating subagent checks, intelligent commit grouping, and strict message formatting, which is more structured than manual committing.
Compared to similar skills
ci side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| ci (this skill) | 0 | 4mo | No flags | Intermediate |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| git-advanced-workflows | 11 | 2mo | Review | Advanced |
| nx-workspace | 4 | 6mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.
nx-workspace
nrwl
Explore and understand Nx workspaces. USE WHEN answering any questions about the nx workspace, the projects in it or tasks to run. EXAMPLES: 'What projects are in this workspace?', 'How is project X configured?', 'What targets can I run?', 'What's affected by my changes?', 'Which projects depend on library Y?', or any questions about Nx workspace structure, project configuration, or available tasks.
fix-github-issue
AgnosticUI
Fix a GitHub issue by number. Use when asked to fix GitHub issues.
rebase-pr
AztecProtocol
Rebase a PR on its base branch, fix conflicts, and verify build
resolve-pr-parallel
EveryInc
Resolve all PR comments using parallel processing. Use when addressing PR review feedback, resolving review threads, or batch-fixing PR comments.