بنقرة واحدة
skill-creator
Standards for creating new High-Density Agent Skills with optimal token economy.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Standards for creating new High-Density Agent Skills with optimal token economy.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Foundational "High-Density" standard for token-optimized agent instructions and CLI-based automated activation.
Universal principles for clean, maintainable, and robust code across all environments.
Standards for performing high-quality, readable code reviews.
Essential rules for code comments, READMEs, and technical documentation.
CRITICAL - Before ANY file write, audit loaded skills for violations. Auto-report via feedback command.
Universal standards for version control, branching, and team collaboration.
| name | Skill Creator |
| description | Standards for creating new High-Density Agent Skills with optimal token economy. |
| metadata | {"labels":["meta","standard","instruction-design","prompt-engineering","token-efficient"],"triggers":{"files":["SKILL.md","metadata.json"],"keywords":["create skill","new standard","writing rules","high density","token economy"]}} |
Strict guidelines for authoring High-Density Agent Skills. Maximize information density while minimizing token consumption through progressive disclosure and strategic content organization.
Every word costs tokens. Design skills for maximum information/token ratio:
references/ folderLevel 1: Metadata (Triggers) → AGENTS.md index (Proactive Activation)
Level 2: SKILL.md Body (70 lines) → Core guidelines (When triggered)
Level 3: References/Scripts/Assets → Deep knowledge (On-demand only)
skills/
└── {category}/ # e.g., "flutter" (lowercase)
└── {skill-name}/ # e.g., "bloc-state-management" (kebab-case)
├── SKILL.md # Core Logic (High Density, <500 lines)
├── scripts/ # Executable code (Deterministic tasks)
│ └── automation.py
├── references/ # Heavy Examples (Lazy loaded)
│ ├── patterns.md
│ └── examples.md
└── assets/ # Output templates (Never loaded)
└── template.json
Imperative Compression: Start with verbs. No "Please/You should".
Token Economy: Maximize info/token ratio.
Progressive Disclosure: Essential info first, details on-demand.
Context-Aware Design: Different agents have different limits.
Required sections in SKILL.md:
Frontmatter (Mandatory): Metadata for proactive activation.
---
name: Skill Name
description: 1-sentence purpose
metadata:
labels: [tag1, tag2]
triggers:
# Patterns that suggest context for this skill
files: ['**/*.ext', 'characteristic-file.json']
# Keywords that indicate work in this area
keywords: [term1, term2]
---
Priority: P0 (Critical), P1 (Standard), or P2 (Optional)
Structure: ASCII tree of expected file layout
Guidelines: Bullet points of "Do this" (imperative)
Anti-Patterns: Bullet points of "Don't do this"
Reference Links: Links to references/ files (lazy loading)
| Element | Limit | Action if Exceeded |
|---|---|---|
| SKILL.md total | 70 lines | Extract to references/ |
| Inline code block | 10 lines | Move to references/ |
| Anti-pattern item | 15 words | Compress to imperative |
| Description after Priority | 0 lines | Remove (use frontmatter) |
| Tables | 8 rows | Extract to references/ |
| Explanatory sections | 10 lines | Extract to references/ |
When to use: Deterministic, repeated tasks Benefits: Never loaded into context, executed directly Examples: Code generators, formatters, validators
When to use: Detailed examples, API docs, complex patterns Benefits: Loaded only when needed, keeps SKILL.md lean Examples: Implementation patterns, error handling guides
When to use: Boilerplate files, images, configs Benefits: Never loaded, copied to output as-needed Examples: Project templates, config files, icons
scripts/validate-skill.sh path/to/SKILL.mdBefore finalizing, verify:
description after ## Priority**Bold**: \More Bold`` - causes visual noiseFormat: **No X**: Do Y[, not Z]. [Optional context, max 15 words total]
Examples:
❌ Verbose (24 words):
- **No Manual Emit**: `**Avoid .then()**: Do not call emit() inside Future.then; always use await or emit.forEach.`
✅ Compressed (11 words):
- **No .then()**: Use `await` or `emit.forEach()` to emit states.
❌ Verbose (18 words):
- **No UI Logic**: `**Logic in Builder**: Do not perform calculations or data formatting inside BlocBuilder.`
✅ Compressed (9 words):
- **No Logic in Builder**: Perform calculations in BLoC, not UI.
Extract to references/ when:
Use the enhanced template below to generate new skills: references/TEMPLATE.md
For comprehensive lifecycle guidance: references/lifecycle.md
For resource organization patterns: references/resource-organization.md