bmad-method 6.2.0 → 6.2.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -202,6 +202,16 @@ platforms:
|
|
|
202
202
|
template_type: default
|
|
203
203
|
skill_format: true
|
|
204
204
|
|
|
205
|
+
qoder:
|
|
206
|
+
name: "Qoder"
|
|
207
|
+
preferred: false
|
|
208
|
+
category: ide
|
|
209
|
+
description: "Qoder AI coding assistant"
|
|
210
|
+
installer:
|
|
211
|
+
target_dir: .qoder/skills
|
|
212
|
+
template_type: default
|
|
213
|
+
skill_format: true
|
|
214
|
+
|
|
205
215
|
qwen:
|
|
206
216
|
name: "QwenCoder"
|
|
207
217
|
preferred: false
|
package/tools/skill-validator.md
CHANGED
|
@@ -320,3 +320,37 @@ When reporting findings, use this format:
|
|
|
320
320
|
```
|
|
321
321
|
|
|
322
322
|
If zero findings: report "All {N} rules passed. No findings." and list all passed rule IDs.
|
|
323
|
+
|
|
324
|
+
---
|
|
325
|
+
|
|
326
|
+
## Skill Spec Cheatsheet
|
|
327
|
+
|
|
328
|
+
Quick-reference for the Agent Skills open standard.
|
|
329
|
+
For the full standard, see: [Agent Skills specification](https://agentskills.io/specification)
|
|
330
|
+
|
|
331
|
+
### Structure
|
|
332
|
+
- Every skill is a directory with `SKILL.md` as the required entrypoint
|
|
333
|
+
- YAML frontmatter between `---` markers provides metadata; markdown body provides instructions
|
|
334
|
+
- Supporting files (scripts, templates, references) live alongside SKILL.md
|
|
335
|
+
|
|
336
|
+
### Path resolution
|
|
337
|
+
- Relative file references resolve from the directory of the file that contains the reference, not from the skill root
|
|
338
|
+
- Example: from `branch-a/deep/next.md`, `./deeper/final.md` resolves to `branch-a/deep/deeper/final.md`
|
|
339
|
+
- Example: from `branch-a/deep/next.md`, `./branch-b/alt/leaf.md` incorrectly resolves to `branch-a/deep/branch-b/alt/leaf.md`
|
|
340
|
+
|
|
341
|
+
### Frontmatter fields (standard)
|
|
342
|
+
- `name`: lowercase letters, numbers, hyphens only; max 64 chars; no "anthropic" or "claude"
|
|
343
|
+
- `description`: required, max 1024 chars; should state what the skill does AND when to use it
|
|
344
|
+
|
|
345
|
+
### Progressive disclosure — three loading levels
|
|
346
|
+
- **L1 Metadata** (~100 tokens): `name` + `description` loaded at startup into system prompt
|
|
347
|
+
- **L2 Instructions** (<5k tokens): SKILL.md body loaded only when skill is triggered
|
|
348
|
+
- **L3 Resources** (unlimited): additional files + scripts loaded/executed on demand; script output enters context, script code does not
|
|
349
|
+
|
|
350
|
+
### Key design principle
|
|
351
|
+
- Skills are filesystem-based directories, not API payloads — Claude reads them via bash/file tools
|
|
352
|
+
- Keep SKILL.md focused; offload detailed reference to separate files
|
|
353
|
+
|
|
354
|
+
### Practical tips
|
|
355
|
+
- Keep SKILL.md under 500 lines
|
|
356
|
+
- `description` drives auto-discovery — use keywords users would naturally say
|