thought-cabinet 0.1.13 → 0.2.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/README.md +10 -9
- package/dist/index.js +845 -406
- package/dist/index.js.map +1 -1
- package/docs/CLI.md +24 -13
- package/package.json +1 -1
- package/src/agent-assets/skills/implementing-plan/SKILL.md +16 -7
- package/src/agent-assets/skills/init-agent-memory/SKILL.md +161 -0
- package/src/agent-assets/skills/init-agent-memory/architectural-patterns-template.md +36 -0
- package/src/agent-assets/skills/init-agent-memory/claude-memory-template.md +40 -0
- package/src/agent-assets/skills/navigate-thoughts/SKILL.md +45 -0
- package/src/agent-assets/skills/test-driven-development/SKILL.md +6 -1
- package/src/agent-assets/skills/writing-skill/SKILL.md +207 -0
- package/src/agent-assets/skills/writing-skill/best-practices.md +1211 -0
- package/src/agent-assets/skills/writing-skill/skill-template.md +63 -0
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ pnpm install -g thought-cabinet
|
|
|
30
30
|
thc init
|
|
31
31
|
|
|
32
32
|
# 3. Install skills to your AI agent
|
|
33
|
-
thc
|
|
33
|
+
thc skill install
|
|
34
34
|
|
|
35
35
|
# 4. Use skills in your agent session (e.g. Claude Code)
|
|
36
36
|
> /research-codebase How does the authentication system work?
|
|
@@ -41,7 +41,7 @@ thc agent init
|
|
|
41
41
|
|
|
42
42
|
## Skills
|
|
43
43
|
|
|
44
|
-
Skills are installed by `thc
|
|
44
|
+
Skills are installed by `thc skill install` and invoked as slash commands in your agent session:
|
|
45
45
|
|
|
46
46
|
| Skill | Description |
|
|
47
47
|
| -------------------- | --------------------------------------------------------------------- |
|
|
@@ -89,13 +89,14 @@ Research and plans are written to disk. The agent reads back only what it needs,
|
|
|
89
89
|
|
|
90
90
|
## CLI Overview
|
|
91
91
|
|
|
92
|
-
| Command
|
|
93
|
-
|
|
|
94
|
-
| `thc init`
|
|
95
|
-
| `thc sync`
|
|
96
|
-
| `thc status`
|
|
97
|
-
| `thc
|
|
98
|
-
| `thc
|
|
92
|
+
| Command | Description |
|
|
93
|
+
| ------------------- | -------------------------------------------------- |
|
|
94
|
+
| `thc init` | Initialize thoughts for current repository |
|
|
95
|
+
| `thc sync` | Sync thoughts to git repository |
|
|
96
|
+
| `thc status` | Show thoughts repository status |
|
|
97
|
+
| `thc skill install` | Install skills and agents to your AI coding agent |
|
|
98
|
+
| `thc skill update` | Update installed skills from latest package bundle |
|
|
99
|
+
| `thc config` | View or edit configuration |
|
|
99
100
|
|
|
100
101
|
See [docs/CLI.md](docs/CLI.md) for the full command reference with all flags and options.
|
|
101
102
|
|