toki-monitor: Skill for Claude Code

.claude/skills/git-commit-helper/SKILL.md

git-commit-helper is a skill for Claude Code from korjwl1/toki-monitor. It costs 42 tokens per session (2,649 once invoked), scanned A, original, MIT.

A helper for writing consistent Git commit messages, including links to task packages in Spec-Driven Development, a way to plan software from written requirements before coding.

In plain words
What is it for?
Use it when reviewing changed files, creating a commit, or asking what commit message to use for a task.
Why use it?
It reduces guesswork when naming commits and keeps code changes connected to the work they belong to.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is korjwl1/toki-monitor's own configuration. It tells Claude Code how to work on toki-monitor itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything toki-monitor configures →

Reuse

Borrowing it

Nothing to install: this file belongs to korjwl1/toki-monitor. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/korjwl1/toki-monitor/main/.claude/skills/git-commit-helper/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/korjwl1/toki-monitor

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for git-commit-helper

README.md
[![agentmods](https://agentmods.dev/badge/skills/korjwl1/toki-monitor/git-commit-helper/github.svg)](https://agentmods.dev/skills/korjwl1/toki-monitor/git-commit-helper)
Your own site
<a href="https://agentmods.dev/skills/korjwl1/toki-monitor/git-commit-helper"><img src="https://agentmods.dev/badge/skills/korjwl1/toki-monitor/git-commit-helper/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for git-commit-helper

Your own site · 80×15
<a href="https://agentmods.dev/skills/korjwl1/toki-monitor/git-commit-helper"><img src="https://agentmods.dev/badge/skills/korjwl1/toki-monitor/git-commit-helper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,649 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.02649
Opus 5 $0.00021 $0.01324
Sonnet 5 $0.00008 $0.00530
Haiku 4.5 $0.00004 $0.00265

Measured 11d ago against content hash 399d4068585c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

git-commit-helper scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/git-commit-helper/SKILL.md · 434 lines

How it starts

The opening of the file, as written. The whole thing — 434 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Git Commit Helper Skill

Purpose

Automatically generates well-structured commit messages that follow Spec-Kit conventions and link commits to Work Packages (WP). This ensures consistent version control practices and enables automatic task history tracking in the dashboard.

When to Activate

This skill activates when users ask questions like:

  • "suggest a commit message" / "커밋 메시지 추천해줘"
  • "what should I commit" / "뭐라고 커밋해야 해?"
  • "help me commit this" / "커밋 도와줘"
  • "generate commit message" / "커밋 메시지 생성해줘"
  • "commit this task" / "이 작업 커밋해줘"

Commit Message Generation Process

1. Analyze Git Status

Check current repository state:

# Get current branch
BRANCH=$(git branch --show-current)

# Check staged changes
git diff --cached --name-status

# Check unstaged changes
git diff --name-status

# Get list of modified files
git status --short

```text
**If no changes staged:**

- Inform user: "No changes staged for commit. Stage files with `git add` first."
- Optionally show unstaged changes and ask if they should be staged

### 2. Identify Current Work Package

Determine which task/WP the changes relate to:

### Method 1: From Branch Name

```bash
# Extract feature from branch (e.g., 001-user-auth)
FEATURE=$(echo $BRANCH | grep -oE '[0-9]{3}-[a-z-]+')

```text
### Method 2: From Recent Activity

```bash
# Find most recent WP file modified in tasks/doing/
find specs/*/tasks/doing/ -name "WP*.md" -type f -printf '%T+ %p\n' | sort -r | head -1

```text
### Method 3: Ask User
If unclear, ask: "Which Work Package (WP) are you working on? (e.g., WP01, WP02)"

### 3. Read Work Package Context

Once WP is identified, read the WP file to understand context:

```bash
# Example: Read WP01.md from doing lane
cat specs/{feature}/tasks/doing/WP01.md

```text
**Extract from WP file:**

- Task ID (from frontmatter `id:` or filename)
- Task title (from frontmatter `title:` or H1 heading)
- Task phase (from frontmatter `phase:`)
- Acceptance criteria (to understand what changes accomplish)

Read the full file on GitHub · 434 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 434 lines · 42 tokens per session scan A 399d4068585c

Subscribe to this mod's changes

git-commit-helper is a skill published in the GitHub repository korjwl1/toki-monitor (23 stars, last pushed 14d ago), licensed MIT. It adds 42 tokens to every session and 2,649 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

campaign-commit

Choose the correct commit command in a camp, also called a campaign. Use when you are about to commit and need to select camp commit, camp p commit, fest commit, or intentional root pointer sync via camp refs-sync.

Obedience-Corp/festival · 53 tokens

pr-review-fix-pipeline

Autonomous PR review that also applies fixes for non-controversial issues — combines review, fix, test, and commit into a single pipeline. Unlike a read-only review, this writes code. Only use on feature branches where you're comfortable with automatic edits. Trigger on: "review and fix PR", "auto-fix the PR", "clean…

jerseycheese/agent-skills · 106 tokens

shipit

Turn finished work into a clean commit and pull request. Always asks first whether the commit and PR should carry AI/bot authorship attribution or stay fully human-authored, then matches the repository's existing commit conventions, splits work into logical commits, and writes a PR body with context, risk, and…

nazmulnahid-git/Ai-Stack · 86 tokens

ship

Review, fix, and commit in one run, with a gate before each phase.

imisic/claude-marketplace · 19 tokens

bootstrap-project

Use when setting up a new project with the full opinionated workflow — session memory, commit hooks, copyright headers, ROADMAP, and CLAUDE.md. Invoke with "bootstrap project", "setup project", "new project setup", or /bootstrap-project.

jkm-4314/claude-code-skills · 54 tokens

avi-pr-flow

Automate PR workflow with commit, push, create PR, and review cycle.

avi1234/claude-team-plugins · 15 tokens