thought-cabinet 0.1.13 → 0.2.1

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.
@@ -0,0 +1,63 @@
1
+ # Skill Template
2
+
3
+ Use this template as a starting point when creating a new skill. Customize sections as needed.
4
+
5
+ ## SKILL.md Template
6
+
7
+ ````markdown
8
+ ---
9
+ name: [kebab-case-name]
10
+ description: [Third-person description of what the skill does AND when to use it.]
11
+ ---
12
+
13
+ # [Skill Title]
14
+
15
+ [One-sentence summary of what this skill does.]
16
+
17
+ ## Workflow Context
18
+
19
+ [How this skill relates to other skills in the ecosystem. Which skills produce inputs for this one? Which skills consume its outputs?]
20
+
21
+ ## Workflow Overview
22
+
23
+ 1. **[Step name]** - [what happens]
24
+ 2. **[Step name]** - [what happens]
25
+ 3. **[Step name]** - [what happens]
26
+
27
+ ## Step 1: [Step Name]
28
+
29
+ [Instructions for this step. Include decision trees, templates, or agent task specifications as needed.]
30
+
31
+ ## Step 2: [Step Name]
32
+
33
+ [Instructions for this step.]
34
+
35
+ ## Step N: [Step Name]
36
+
37
+ [Instructions for this step.]
38
+
39
+ ## Guidelines
40
+
41
+ [Behavioral rules organized under clear headings.]
42
+
43
+ **[Guideline Category]:**
44
+ - [Rule]
45
+ - [Rule]
46
+ ````
47
+
48
+ ## Supplementary File Template
49
+
50
+ When a skill needs additional files (templates, references, examples):
51
+
52
+ ```text
53
+ skill-name/
54
+ ├── SKILL.md # Main instructions (loaded when triggered)
55
+ ├── [template].md # Output template (loaded as needed)
56
+ ├── [reference].md # Reference material (loaded as needed)
57
+ └── [examples].md # Usage examples (loaded as needed)
58
+ ```
59
+
60
+ Rules:
61
+ - SKILL.md references supplementary files directly (one level deep)
62
+ - Each file has a descriptive name indicating its content
63
+ - Keep each file focused on a single concern