<< All versions
Skill v1.0.1
currentAutomated scan100/100go-go-golems/workspace-manager/guidelines
1 files
──Details
PublishedJune 26, 2026 at 08:23 PM
Content Hashsha256:c3b16ca4f3eb2864...
Git SHAb96433f123c8
Bump Typepatch
──Files
Files (1 file, 1.7 KB)
SKILL.md1.7 KBactive
SKILL.md · 37 lines · 1.7 KB
version: "1.0.1"
Guidelines: Skill Documents
Purpose
Skills are disciplined workflows written as documents (DocType: skill) that teach LLMs (and humans) how to work, not just what exists. A good skill turns “best practice” into a repeatable, enforceable process.
Skills are meant to be discoverable via:
docmgr skill list(filter by topics, file/dir, ticket)docmgr skill show <query>(load and apply a skill)
Required Elements
- Frontmatter contract
DocType: skillTitle: Use the conventionSkill: <Name>(recommended)Topics: Choose topics that match how developers will search (e.g.tdd,debugging,docs)WhatFor: 2–5 sentences describing the outcome this workflow ensuresWhenToUse: Clear trigger conditions (“Use when …”)- Body
- Overview: 2–5 sentences (why it matters; what it enforces)
- When to Use: Concrete triggers + examples
- Process: Step-by-step actions (copy/paste friendly commands where possible)
- Verification: Checklist to prevent “I think I’m done” drift
Best Practices
- Be explicit: Use strong modal language (“MUST”, “NEVER”, “STOP”) where appropriate.
- Optimize for discovery: Ensure
Topics,WhatFor, andWhenToUsecontain the words people will actually search for. - Prefer commands over prose: If there’s a canonical command sequence, include it as a
bashblock. - Make validation unskippable: Add a checklist and expected success criteria (tests/linters/scenario suites).
References
pkg/doc/how-to-write-skills.md— Full guidance on writing and enforcing skillspkg/doc/using-skills.md— How to discover and load skills via CLI