بنقرة واحدة
writing-skills
Use when creating or modifying samsara skills — applies death-first TDD to skill development itself
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when creating or modifying samsara skills — applies death-first TDD to skill development itself
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | writing-skills |
| description | Use when creating or modifying samsara skills — applies death-first TDD to skill development itself |
Skills are behavior-shaping code. They are subject to the same rigor as production code: test first, verify behavior change, document assumptions.
digraph writing_skills {
node [shape=box];
start [label="Define target behavior\nWhat should the agent do differently?" shape=doublecircle];
baseline [label="Baseline test\nRun scenario WITHOUT skill\nRecord agent behavior"];
write [label="Write SKILL.md\n+ support files"];
test [label="Test with skill\nRun same scenario WITH skill\nRecord agent behavior"];
compare [label="Behavior changed?" shape=diamond];
refine [label="Refine skill content"];
done [label="Commit" shape=doublecircle];
start -> baseline;
baseline -> write;
write -> test;
test -> compare;
compare -> done [label="yes, as intended"];
compare -> refine [label="no or wrong direction"];
refine -> test;
}
---
name: kebab-case-name
description: Use when [triggering conditions — symptoms, not workflow summary]
---
name: letters, numbers, hyphens onlydescription: starts with "Use when", describes TRIGGERING CONDITIONS, not the process
templates/ subdirectoryshape=doublecircle for start/end nodesshape=diamond for decision pointsshape=box for action steps (default)style=dashed for optional/conditional stepslabel="condition" on edges for decision outcomesBefore committing a new skill, answer:
Use when entering a new project for the first time, or when the codebase has changed significantly — generates a yin-side codebase map with structural analysis and silent failure surface assessment
Use when the user describes a small, low-risk change — bug fix with known cause, config change, dependency update, or small refactor under 100 lines
Use when a plan with tasks exists and you need to execute implementation — requires index.yaml and tasks/ directory
Use when implement is complete and feature-level scar items need review — aggregates remaining scars across tasks, triages cross-task patterns, and fixes system-level rot before validate-and-ship
Use when research/kickoff is complete and you need to create an implementation plan with specs, tasks, and acceptance criteria
Use when research output is complete and planning would otherwise need to assume design, task-shape, structural boundaries, or evaluation details before implementation planning