con un clic
writing-skills
Authors new SKILL.md files that conform to the dojo spec.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Authors new SKILL.md files that conform to the dojo spec.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Flags risky shell commands and unsafe tree ops.
Detects high-confidence security risks in code.
Surfaces the dojo's non-negotiable prime directives.
Activates the dojo framework at the start of a session.
Plans multi-step work before writing code.
Captures lessons and promotes recurring patterns.
| name | writing-skills |
| description | Authors new SKILL.md files that conform to the dojo spec. |
| tier | optional |
| category | meta |
| created_by | human |
| platforms | ["windows","macos","linux"] |
| tags | ["meta","authoring","skill-creation"] |
| author | Andreas Wasita (@andreaswasita) |
Walks the agent through producing a new SKILL.md that conforms to spec/copilot-skills-spec.md and passes scripts/verify.sh spec. Covers intent capture, folder layout, frontmatter, canonical body sections, and the test loop. Does NOT auto-register the new skill in skills.md — that is the regen script's job.
tasks/lessons.md pattern has ≥3 occurrences and should graduate to a skill.self-improvement) flags a candidate skill to formalize.tasks/lessons.md until they recur.spec/copilot-skills-spec.md and template/SKILL.md exist (this skill is parasitic on them).view, edit, and powershell Copilot tools.scripts/verify.sh available on the path (or git bash on Windows).1. Capture intent — what, when, what good looks like, what mistakes to prevent.
2. Pick the tier (core / practical / optional) and folder destination.
3. Copy `template/SKILL.md` to `<tier-dir>/<skill-name>/SKILL.md`.
4. Fill frontmatter; ≤60-char description with period; no marketing words.
5. Walk the canonical body sections in order.
6. Run `bash scripts/verify.sh spec` until the new skill is clean.
7. Hand off to the regen script (Phase 5.1) to update `skills.md`.
| Tier | Folder | Loaded when |
|---|---|---|
| core | skills/ | Always |
| practical | skills/ | On trigger |
| optional | optional-skills/ | Installed explicitly |
| Frontmatter key | Rule |
|---|---|
name | Lowercase, hyphens, matches folder |
description | ≤60 chars, ends with period, no marketing words |
tier | core | practical | optional |
category | See spec §1.2 valid set |
created_by | human or agent |
platforms | Subset of [windows, macos, linux] |
author | Name (@handle), human first |
| Body section (in order) | Purpose |
|---|---|
| When to Use | Triggers and contexts |
| Prerequisites | What must be true before running |
| How to Run | One-screen happy path |
| Quick Reference | Tables the agent can act from |
| Procedure | Deep step-by-step |
| Pitfalls | DO NOT imperative register |
| Verification | Checkboxes that prove the skill ran |
Answer four questions before touching files:
If lesson-driven, open tasks/lessons.md and read every entry with the same error_type to extract the pattern.
| Signal | Tier |
|---|---|
| Always-on discipline applied to every session | core |
| Triggered by a task family (review, debug, plan) | practical |
| Heavy, niche, or requires external installation | optional |
Create the folder:
mkdir -p skills/<skill-name> # core or practical
mkdir -p optional-skills/<skill-name> # optional
Use edit to read template/SKILL.md and edit to write <folder>/<name>/SKILL.md. Replace every placeholder. Do NOT introduce sections outside the canonical seven.
---
name: my-new-skill
description: <single sentence ≤60 chars ending with a period>.
tier: practical
category: workflow
created_by: human
platforms: [windows, macos, linux]
tags: [keyword1, keyword2]
author: Real Name (@handle)
---
Forbidden description words (marketing — flagged by verify.sh):
powerful comprehensive seamless advanced
robust cutting-edge intelligent revolutionary
Write each section in order. The Verification section MUST be a checklist whose items are testable — not aspirations.
In prose, reference Copilot tools by name in backticks (view, edit, grep, glob, powershell, web_fetch, task). Do NOT instruct the agent to call bare shell utilities — verify.sh warns on these:
cat sed awk find head tail
bash scripts/verify.sh spec
Iterate until the new skill produces no errors and no warnings.
Open a fresh session. Use a trigger phrase the skill claims to handle. Observe whether it activates and whether the output reflects the procedure. Iterate description and triggers as needed.
skills.md — let the regen script do it.bash scripts/verify.sh spec produces no errors for the new skill.tasks/lessons.md entry references the new skill.