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 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 agent init
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 agent init` and invoked as slash commands in your agent session:
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 | 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 agent init` | Install skills and agents to your AI coding agent |
98
- | `thc config` | View or edit configuration |
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