Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/alirezarezvani/claudeforge/commit-smartgit clone --depth 1 https://github.com/alirezarezvani/ClaudeForgeWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00009 | $0.00704 |
| Opus 5 | $0.00005 | $0.00352 |
| Sonnet 5 | $0.00002 | $0.00141 |
| Haiku 4.5 | $0.00001 | $0.00070 |
Grade A, and why
commit-smart 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Smart Commit with Quality Gates
You are helping the user create a well-formatted commit with pre-commit validation.
Workflow
-
Check Staged Changes
git status git diff --cached --stat- Show what files are staged
- If nothing staged, ask user what to add
-
Pre-Commit Quality Checks
Run local quality gates before committing:
Python syntax (if .py files changed):
flake8 skill/ --count --select=E9,F63,F7,F82 --show-sourceBash syntax (if .sh files changed):
bash -n install.sh bash -n hooks/pre-commit.shSecret scan:
git diff --cached | grep -iE "(api_key|api_secret|password|token|AWS_ACCESS)" || echo "No secrets detected" -
Generate Conventional Commit Message
Ask user about the change:
- Type: feat, fix, docs, style, refactor, perf, test, build, ci, chore
- Scope: installer, skill, command, agent, docs, ci, workflows
- Description: what changed (imperative mood)
- Why: reason for change (optional body)
- Issue: related issue number
Format:
<type>(<scope>): <description> [optional body explaining why] [optional footer: Closes #123] -
Validate Message Format
- Check format matches Conventional Commits
- Ensure subject is imperative mood ("add" not "added")
- Verify no period at end
- Check length < 50 characters for subject
-
Create Commit
git commit -m "<generated message>" -
Post-Commit Actions
- Show commit hash
- Show commit in log
- Ask if user wants to push
Examples
Feature commit:
git commit -m "feat(installer): add Windows PowerShell support
Adds install.ps1 script with equivalent functionality to
install.sh for Windows users.
Closes #42"
Fix commit:
git commit -m "fix(skill): correct Python syntax validation
Fix flake8 configuration to properly detect syntax errors.
Previous config was too permissive.
Fixes #156"
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.
- yesterday First seen · 124 lines · 9 tokens per session scan A 792ffa0e9aca
commit-smart is a command published in the GitHub repository alirezarezvani/ClaudeForge (419 stars, last pushed 3mo ago), licensed MIT. It adds 9 tokens to every session and 704 once invoked, about $0.0000 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.
Other commands, from other repositories
implement
Execute phased implementation with validation gates.
workflow-claude-commands
Track Claude Code commands report changes and find what needs updating.
weather-orchestrator
Fetch Dubai weather and create an SVG weather card.
ingest
Ingest source material into an active wiki. Accepts URLs, file paths, PDFs, freeform text, or processes the inbox. Supports tweets via Grok MCP.
output
Generate output artifacts from active wiki content — summaries, reports, study guides, slide outlines, timelines, glossaries, comparisons. Outputs are filed back into the wiki.
portfolio
Show a read-only hub-wide portfolio of canonical Ideas and active Projects without duplicating topic-owned records.