Skip to content

Commit 8452d28

Browse files
Shahinyanmclaude
andcommitted
chore(plugin): sync marketplace.json to 0.2.1 + document updating
The Claude Code marketplace manifest at .claude-plugin/marketplace.json was still pointing at 0.1.1 — both metadata.version and plugins[].version. Bumping to 0.2.1 so /plugin marketplace update task-journal surfaces the update for end users. README gains an Updating section with the exact slash commands and the cargo install --force step (binaries live on crates.io, plugin doesnt bundle them). Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 789fd75 commit 8452d28

2 files changed

Lines changed: 26 additions & 2 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
},
77
"metadata": {
88
"description": "Task Journal — append-only reasoning chain memory for AI-coding tasks",
9-
"version": "0.1.1"
9+
"version": "0.2.1"
1010
},
1111
"plugins": [
1212
{
1313
"name": "task-journal",
1414
"source": "./plugin",
1515
"description": "Append-only journal of AI-coding task reasoning chains. Captures hypotheses, decisions, rejections, evidence — renders compact resume packs so an agent can pick up a 2-week-old task with full context.",
16-
"version": "0.1.1",
16+
"version": "0.2.1",
1717
"author": {
1818
"name": "Digital-Threads"
1919
},

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,30 @@ cd Task-Journal
3737
cargo install --path crates/tj-cli --path crates/tj-mcp
3838
```
3939

40+
## Updating
41+
42+
If you installed via the Claude Code marketplace, run these inside Claude Code:
43+
44+
```
45+
/plugin marketplace update task-journal
46+
/plugin update task-journal@task-journal
47+
```
48+
49+
Then refresh the Rust binaries (the plugin doesn't bundle them — they live on crates.io):
50+
51+
```bash
52+
cargo install task-journal-cli task-journal-mcp --force
53+
```
54+
55+
Restart Claude Code so the new MCP server is picked up, and verify:
56+
57+
```bash
58+
task-journal --version # 0.2.1
59+
task-journal-mcp --version # 0.2.1
60+
```
61+
62+
If you installed from source, `git pull && cargo install --path crates/tj-cli --path crates/tj-mcp --force` does the same thing.
63+
4064
## Quick Start
4165

4266
```bash

0 commit comments

Comments
 (0)