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/heminwon/claude-code-marketplace/configuregit clone --depth 1 https://github.com/HeminWon/claude-code-marketplaceWrote 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.
[](https://agentmods.dev/commands/heminwon/claude-code-marketplace/configure)<a href="https://agentmods.dev/commands/heminwon/claude-code-marketplace/configure"><img src="https://agentmods.dev/badge/commands/heminwon/claude-code-marketplace/configure.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00028 | $0.00778 |
| Opus 5 | $0.00014 | $0.00389 |
| Sonnet 5 | $0.00006 | $0.00156 |
| Haiku 4.5 | $0.00003 | $0.00078 |
Grade A, and why
configure 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 4d 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.
What it actually says
Configure Commit Language
Goal
为当前 git 仓库设置 commit message 语言优先项:claude.commit.lang(local scope)。
Inputs
- 原始参数:
$ARGUMENTS - 支持两类输入:
- locale code(如
en,fr-CA,pt_BR,zh-Hant-TW) - 自然语言名称(如
中文,English,日本語,Português)
- locale code(如
auto/default/自动表示重置为自动推断(unset local config)
Workflow
-
校验仓库上下文:
- 执行
git rev-parse --is-inside-work-tree - 若不在 git 仓库中,提示用户切换到仓库后重试。
- 执行
-
读取当前值:
- 执行
git config --local --default auto --get claude.commit.lang - 返回
auto代表未设置本地值(正常场景,不是错误)。
- 执行
-
解析目标语言:
- 优先读取
$ARGUMENTS。 - 若
$ARGUMENTS为空,必须先用AskUserQuestion提供单选列表:中文(zh-CN)English(en)日本語(ja)한국어(ko)Auto(重置为自动推断)
- 若用户选择
Other,再让用户自由输入目标语言(支持 code 或自然语言)。 - 将输入范化:
- trim + collapse spaces
_统一替换为-- locale 分段规范化:语言段小写、地区段大写、脚本段首字母大写(如
EN_us->en-US,zh-hant-tw->zh-Hant-TW)
- 语义映射策略:
- 若输入已是有效 locale code 形态,直接采用范化结果。
- 若输入是自然语言,转换为对应 locale code(尽量保留用户语义;必要时补全默认地区)。
- 若存在歧义(如 Portuguese 可能是
pt-PT或pt-BR),通过追问让用户二选一,不做硬错误终止。 - 仅在用户明确表示自动推断(
auto/default/自动)时走重置分支。
- 优先读取
-
写入配置:
- 若目标为自动:执行
git config --local --unset claude.commit.lang(key 不存在也按成功处理)。 - 否则执行
git config --local claude.commit.lang <normalized_code>。
- 若目标为自动:执行
-
结果回显:
- 再次读取
git config --local --get claude.commit.lang - 无值回显
auto,有值回显最终 code。 - 提示后续
commit命令会优先使用该配置。
- 再次读取
Output Template
- 当前值:
<current|auto> - 目标输入:
<user_input> - 应用结果:
<final_code|auto> - 说明:
commit将优先读取git config --local claude.commit.lang
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.
- 4d ago First seen · 67 lines · 28 tokens per session scan A e6f556dc7e14
configure is a command published in the GitHub repository HeminWon/claude-code-marketplace (2 stars, last pushed 3mo ago), licensed MIT. It adds 28 tokens to every session and 778 once invoked, about $0.0001 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-31.
Other commands, from other repositories
cr
When user uses /cr slash command, review uncommitted code changes with reusable language-aware rules, preferring project-local review commands or rules when they exist.
standup
Review my git commits from the past workday and generate a standup summary.
git
The pre-finish status: branch, hygiene findings, message checks, workflow lint, template state.
commit-claude-config
Version the Solana AI Kit config in git (un-ignores .claude/, CLAUDE.md, .mcp.json, .gitmodules and commits them).
commit
智能生成 Git 提交信息并提交.
session-report
Capture what changed this session and why, scoped to the current branch. Read by ship verbs when synthesizing the commit message; deleted after a successful commit.