Our review
Creates Git commits that include the user prompts that led to the changes, along with session metadata.
Strengths
- Preserves decision context in Git history
- Automates collection of user prompts and session information
- Enhances traceability of AI-assisted changes
Limitations
- Requires the 'uv' tool to be installed and configured in the project
- Works only in an interactive session with prompt history
- May produce long messages if many prompts are involved
Use this skill when you want to record in Git the conversational context that led to the changes.
Avoid using it for quick or trivial commits where context is unnecessary.
Security analysis
SafeThe skill uses git commands and a custom session-info script to create commits with user prompts. No destructive, exfiltrating, or obfuscated actions; all operations are standard version control tasks within the workspace.
No concerns found
Examples
Commit these changes with the user prompts that led to them.Save my work to git, including the conversation context.name: commit description: Commit with user prompts from this conversation. Use when user mentions committing, wants to commit changes, asks to save their work to git, or says "commit this". allowed-tools: Bash, Read
Commit with User Prompts
Create git commits that include the user prompts that led to the changes.
Instructions
-
Extract User Prompts: Collect user messages from this conversation that led to the changes. Include them in chronological order.
-
Analyze Changes:
git status git diff --staged -
Get Session Info:
uv run {baseDir}/ai-blame.py session-info -
Generate Commit Message:
<brief summary of changes> User prompts: - "<first user prompt>" - "<second user prompt>" (context if prompt is ambiguous) AI-Session-ID: <from session-info> AI Agent: <from session-info> Model: <from session-info> -
Execute Commit:
git add -A && git commit -m "$(cat <<'EOF' <your commit message here> EOF )"
Rules
- Only include prompts that led to file changes (not
/commitor meta-discussion) - Preserve exact wording, add (context) in parentheses if prompt is ambiguous
- Summary line under 50 characters
- Each prompt on a single line, no mid-sentence wrapping
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.