用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rdmptv/AdbAutoPlayer --skill decision-logic-framework命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | decision-logic-framework |
| description | Decision rules for Claude Code skills, scripts, MDs, and workflows - project-agnostic patterns |
| version | 1.0.0 |
| modularized | true |
| last_updated | "2025-12-02T00:00:00.000Z" |
| compliance_score | 100 |
| auto_trigger_keywords | ["skill creation","script vs md","naming convention","workflow decision","tier selection","single file rule","prefix naming","when to use script","when to use markdown"] |
| color | blue |
Core Principle: Clear separation between Agents (orchestrators) and Skills (capabilities).
| Component | Location | Contains |
|---|---|---|
| Agents | .claude/agents/ | workflows/ (TOON + MD steps) |
| Skills | .claude/skills/ | scripts/ (UV Python) OR modules/ (single-file MDs) |
Decision Tree:
Need external Python packages? → UV Script (.py)
Need system commands? → UV Script (.py)
Reference/documentation? → Single-File MD (.md)
Simple data/rules? → Single-File MD (.md)
Naming (Mandatory Prefixes):
{skill}_{action}.py (underscore){category}-{topic}.md (hyphen).claude/agents/{category}/{agent-name}/
├── {agent-name}.md # Agent definition
└── workflows/ # Agent-owned workflows
└── {workflow-name}/
├── WORKFLOW.toon # Structure (TOON tabular)
├── instructions.md # Overall guidance
├── checklist.md # Validation (tier-2+)
└── steps/
└── step-NN-{action}.md
.claude/skills/{skill-name}/
├── SKILL.md # Main entry (REQUIRED)
├── scripts/ # For complex automation (OPTIONAL)
│ └── {skill}_{action}.py # UV scripts with prefix
└── modules/ # For simple reference MDs (OPTIONAL)
└── {category}-{topic}.md # Single-file MDs with prefix
Use this skill when:
Load Order: This skill should be loaded FIRST when creating any new skill, agent, or workflow.
| Module | Purpose | When to Load |
|---|---|---|
rule-script-vs-md.md | Decision logic for script vs MD | Creating new skill content |
rule-naming-convention.md | Prefix naming system | Naming any new file |
rule-skill-tiers.md | Tier 1-4 skill complexity | Assessing skill scope |
rule-workflow-complexity.md | Tier 0-3 workflow selection | Creating workflows |
pattern-single-file.md | Universal single-file rules | Reviewing file constraints |
| Schema | Purpose | When to Load |
|---|---|---|
workflow-schema.toon | Canonical WORKFLOW.toon format | Creating any workflow |
step-schema.md | Template for step-NN-{action}.md | Creating workflow steps |
┌─────────────────────────────────────┐
│ NEW SKILL CONTENT NEEDED │
└──────────────┬──────────────────────┘
│
▼
┌─────────────────────────────────────┐
│ Requires external Python packages? │
│ (httpx, pandas, click, psutil...) │
├─────────────┬───────────────────────┤
│ YES │ NO │
│ ↓ │ ↓ │
│ UV SCRIPT │ Requires shell/sys? │
└─────────────┴───────────┬───────────┘
│
┌───────────┴───────────┐
│ YES │ NO │
│ ↓ │ ↓ │
│ UV SCRIPT │ MD OK │
└─────────────┴─────────┘
┌─────────────────────────────────────┐
│ WORKFLOW COMPLEXITY │
└──────────────┬──────────────────────┘
│
┌──────────┼──────────┬───────────┐
▼ ▼ ▼ ▼
┌───────┐ ┌───────┐ ┌─────────┐ ┌─────────┐
│Tier 0 │ │Tier 1 │ │ Tier 2 │ │ Tier 3 │
│1 step │ │3-5 │ │ 5-10 │ │ 10+ │
│hotfix │ │simple │ │ medium │ │ complex │
└───────┘ └───────┘ └─────────┘ └─────────┘
Pattern: {skill-name}_{action}.py
Separator: underscore (_)
Examples:
kalshi_get-market.py
kalshi_search-events.py
system_analyze-cpu.py
builder_generate-skill.py
Pattern: {category}-{topic}.md
Separator: hyphen (-)
Categories: api, pattern, rule, guide, schema, example
Examples:
api-endpoints.md
pattern-authentication.md
rule-naming-convention.md
guide-quick-start.md
Agents:
builder-skill - Skill creation with tier systembuilder-workflow - TOON + MD workflow generationbuilder-agent - Agent with workflows/ generationSkills:
moai-library-toon - TOON format referencemoai-foundation-core - Core execution rulesbuilder-skill-uvscript - UV script examplesCommands:
/moai:1-plan - SPEC generation with decision framework/builder:generate-skill - Skill creation workflowVersion: 1.0.0 Status: Active Last Updated: 2025-12-02