Loading...
Loading...
Compare original and translation side by side
| Intent | Keywords | Route To |
|---|---|---|
| Full skill creation | "create skill", "build skill", "new skill" | Section 2 |
| Subagent creation | "create subagent", "build subagent", "new subagent" | Section 6 |
| Validation | "validate", "check quality" | Section 3 |
| Decision | "Skills vs Subagents", "decide", "which to use" | Section 4 |
| Migration | "convert", "migrate doc" | Section 5 |
| Single tool | "validate only", "estimate tokens", "scan" | Section 7 |
| 意图 | 关键词 | 路由至 |
|---|---|---|
| 完整Skill创建 | "create skill", "build skill", "new skill" | 第2部分 |
| Subagent创建 | "create subagent", "build subagent", "new subagent" | 第6部分 |
| 验证 | "validate", "check quality" | 第3部分 |
| 决策 | "Skills vs Subagents", "decide", "which to use" | 第4部分 |
| 迁移 | "convert", "migrate doc" | 第5部分 |
| 单一工具 | "validate only", "estimate tokens", "scan" | 第7部分 |
| Mode | Steps | Validation | Quality Target | Time |
|---|---|---|---|---|
| fast | 10 | Structural only | >=9.0/10 | <10 min |
| full | 14 | Structural + Behavioral | >=9.0/10 and behavioral >=7.0 | <20 min |
| 模式 | 步骤数 | 验证内容 | 质量目标 | 耗时 |
|---|---|---|---|---|
| 快速模式 | 10 | 仅结构验证 | >=9.0/10 | <10分钟 |
| 完整模式 | 14 | 结构+行为验证 | >=9.0/10且行为评分>=7.0 | <20分钟 |
.skillkit-modefastreferences/section-2-fast-creation-workflow.mddecision_helper.pyinit.py skill <name> --mode fastvalidate_skill.pytest_generator.pyquality_scorer.pypackage_skill.py.skillkit-modefastreferences/section-2-fast-creation-workflow.mddecision_helper.pyinit.py skill <name> --mode fastvalidate_skill.pytest_generator.pyquality_scorer.pypackage_skill.py.skillkit-modefullreferences/section-2-full-creation-workflow.mddecision_helper.pyreferences/section-2-full-creation-workflow.mdinit.py skill <name> --mode fullreferences/section-2-full-creation-workflow.mdvalidate_skill.pyreferences/section-2-full-creation-workflow.mdquality_scorer.py --format json--behavioralpackage_skill.py.skillkit-modefullreferences/section-2-full-creation-workflow.mddecision_helper.pyreferences/section-2-full-creation-workflow.mdinit.py skill <name> --mode fullreferences/section-2-full-creation-workflow.mdvalidate_skill.pyreferences/section-2-full-creation-workflow.mdquality_scorer.py --format json--behavioralpackage_skill.py--mode fast--mode full.skillkit-modefastfull--mode fast--mode full.skillkit-modefastfullvalidate_skill.py--security-only--tokens-onlyvalidate_skill.pyquality_scorer.py--security-only--tokens-onlydecision_helper.pyreferences/section-4-decision-workflow-skills-vs-subagents.mddecision_helper.pydecision_helper.pyreferences/section-4-decision-workflow-skills-vs-subagents.mddecision_helper.pypython scripts/init.py subagent subagent-name --path ~/.claude/agents~/.claude/agents/subagent-name.md.mdpython scripts/init.py subagent subagent-name --path ~/.claude/agents~/.claude/agents/subagent-name.md.mdmigration_helper.pypython scripts/validate_skill.py skill-name/ --format jsonknowledge/tools/14-validation-tools-guide.mdpython scripts/validate_skill.py skill-name/ --tokens-only --format jsonknowledge/tools/15-cost-tools-guide.mdpython scripts/validate_skill.py skill-name/ --security-only --format jsonknowledge/tools/16-security-tools-guide.mdundefinedpython scripts/validate_skill.py skill-name/ --format jsonknowledge/tools/14-validation-tools-guide.mdpython scripts/validate_skill.py skill-name/ --tokens-only --format jsonknowledge/tools/15-cost-tools-guide.mdpython scripts/validate_skill.py skill-name/ --security-only --format jsonknowledge/tools/16-security-tools-guide.mdundefinedGuide: `knowledge/tools/17-pattern-tools-guide.md`
**Decision Helper:**
```bash指南:`knowledge/tools/17-pattern-tools-guide.md`
**决策辅助工具:**
```bashGuide: `knowledge/tools/18-decision-helper-guide.md`
**Test Generator (v1.2: Parameter update):**
```bash
python scripts/test_generator.py skill-name/ --test-format pytest --format json--test-format--format--outputknowledge/tools/19-test-generator-guide.mdpython scripts/split_skill.py skill-name/ --format jsonknowledge/tools/20-split-skill-guide.mdpython scripts/quality_scorer.py skill-name/ --format jsonknowledge/tools/21-quality-scorer-guide.mdpython scripts/migration_helper.py doc.md --format jsonknowledge/tools/22-migration-helper-guide.mdpython scripts/init.py subagent subagent-name --path /path/to/subagentsreferences/section-6-subagent-creation-workflow.md指南:`knowledge/tools/18-decision-helper-guide.md`
**测试生成工具(v1.2:参数更新):**
```bash
python scripts/test_generator.py skill-name/ --test-format pytest --format json--test-format--format--outputknowledge/tools/19-test-generator-guide.mdpython scripts/split_skill.py skill-name/ --format jsonknowledge/tools/20-split-skill-guide.mdpython scripts/quality_scorer.py skill-name/ --format jsonknowledge/tools/21-quality-scorer-guide.mdpython scripts/migration_helper.py doc.md --format jsonknowledge/tools/22-migration-helper-guide.mdpython scripts/init.py subagent subagent-name --path /path/to/subagentsreferences/section-6-subagent-creation-workflow.md--format json--format textdecision_helper{
"status": "success" | "error",
"tool": "tool_name",
"timestamp": "ISO-8601",
"data": { /* tool-specific results */ }
}--format json--format textdecision_helper{
"status": "success" | "error",
"tool": "tool_name",
"timestamp": "ISO-8601",
"data": { /* 工具特定结果 */ }
}validate_skill.pypackage_skill.pyvalidate_skill.pypackage_skill.py| Skill Type | Recommended Mode | Why |
|---|---|---|
| TDD or discipline skill | full | must resist rationalization under pressure |
| Code pattern skill | fast | structural checks are usually sufficient |
| API reference skill | fast | primarily retrieval accuracy |
| Workflow orchestration skill | full | complex flow benefits from pressure checks |
| Debugging technique skill | fast | concise technique with clear method |
| Skill类型 | 推荐模式 | 原因 |
|---|---|---|
| TDD或纪律类Skill | 完整模式 | 必须能在压力下抵制合理化行为 |
| 代码模式类Skill | 快速模式 | 结构检查通常已足够 |
| API参考类Skill | 快速模式 | 主要关注检索准确性 |
| 工作流编排类Skill | 完整模式 | 复杂流程可从压力测试中获益 |
| 调试技巧类Skill | 快速模式 | 技巧简洁、方法明确 |
references/references/