everything-claude-code-zh is a Chinese translation of a collection of configurations for Claude Code and other AI coding agents. It provides agents, skills, hooks, commands, rules, and MCP configurations intended to support development workflows such as memory persistence, security scanning, evaluation, and research-first work. The catalogue includes commands, skills, agents, instructions, and a plugin from this configuration set.
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/xu-xiang/everything-claude-code-zh/skill-creategit clone --depth 1 https://github.com/xu-xiang/everything-claude-code-zhWrote 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/xu-xiang/everything-claude-code-zh/skill-create)<a href="https://agentmods.dev/commands/xu-xiang/everything-claude-code-zh/skill-create"><img src="https://agentmods.dev/badge/commands/xu-xiang/everything-claude-code-zh/skill-create.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.00009 | $0.00661 |
| Opus 5 | $0.00005 | $0.00331 |
| Sonnet 5 | $0.00002 | $0.00132 |
| Haiku 4.5 | $0.00001 | $0.00066 |
Grade A, and why
skill-create 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
Skill Create 命令
分析 Git 历史(Git history)以生成 Claude Code 技能(Skill):$ARGUMENTS
你的任务
- 分析提交(Commits) - 从历史记录中进行模式识别(Pattern recognition)
- 提取模式 - 常见的实践与约定
- 生成 SKILL.md - 结构化的技能文档
- 创建直觉(Instincts) - 用于 continuous-learning-v2
分析过程
第 1 步:收集提交数据
# 最近的提交
git log --oneline -100
# 按文件类型统计提交
git log --name-only --pretty=format: | sort | uniq -c | sort -rn
# 修改最频繁的文件
git log --pretty=format: --name-only | sort | uniq -c | sort -rn | head -20
第 2 步:识别模式
提交信息模式:
- 常见前缀 (feat, fix, refactor)
- 命名约定
- 共同作者(Co-author)模式
代码模式:
- 文件结构约定
- 导入(Import)组织方式
- 错误处理方法
评审(Review)模式:
- 常见的评审反馈
- 反复出现的修复类型
- 质量门禁(Quality gates)
第 3 步:生成 SKILL.md
# [技能名称]
## 概述
[此技能教授的内容]
## 模式(Patterns)
### 模式 1:[名称]
- 何时使用
- 实现方式
- 示例
### 模式 2:[名称]
- 何时使用
- 实现方式
- 示例
## 最佳实践
1. [实践 1]
2. [实践 2]
3. [实践 3]
## 常见错误
1. [错误 1] - 如何避免
2. [错误 2] - 如何避免
## 示例
### 正面示例
```[language]
// 代码示例
反面模式(Anti-pattern)
// 不应该做的写法
### 第 4 步:生成直觉(Instincts)
用于 continuous-learning-v2:
```json
{
"instincts": [
{
"trigger": "[场景/状况]",
"action": "[响应动作]",
"confidence": 0.8,
"source": "git-history-analysis"
}
]
}
输出
创建:
skills/[name]/SKILL.md- 技能文档skills/[name]/instincts.json- 直觉集合
提示(TIP):运行 /skill-create --instincts 以同时生成用于持续学习(continuous learning)的直觉。
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 · 118 lines · 9 tokens per session scan A 4e8758589fa0
skill-create is a command published in the GitHub repository xu-xiang/everything-claude-code-zh (1,927 stars, last pushed 6mo ago), licensed MIT. It adds 9 tokens to every session and 661 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
awesome-chatgpt
Search awesome-ChatGPT-repositories for open-source GitHub repositories related to ChatGPT and LLMs.
init
Scaffold a new MindBase project (v2 layout). Usage: /mb:init [template] [-- mission ...].
commit
智能生成 Git 提交信息并提交.
pr
Handle the full workflow from current branch state to an open, CI-monitored pull request.
doctor.es
Diagnostica problemas de inferencia LLM en Mac: asiai doctor verifica el estado de los motores, conflictos de puertos, carga de modelos y estado de la GPU.
requirement-review
需求文档多角色评审(requirement-review):需求文档 → 7-Agent 并行评审 → 重构高质量需求文档(Runtime 受控流程,0-7 阶段状态机).