Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "https://github.com/TerminallyLazy"
},
"description": "Claude Code marketplace for Tree Ring Memory v0.14 local-first recall and receipt-backed harness readiness.",
"version": "0.3.0",
"version": "0.3.1",
"plugins": [
{
"name": "tree-ring-memory",
Expand Down
2 changes: 1 addition & 1 deletion plugins/tree-ring-memory/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tree-ring-memory",
"displayName": "Tree Ring Memory",
"version": "0.3.0",
"version": "0.3.1",
"description": "Local-first memory lifecycle and receipt-backed harness guidance for Claude Code using Tree Ring Memory v0.14+.",
"author": {
"name": "TerminallyLazy",
Expand Down
2 changes: 1 addition & 1 deletion plugins/tree-ring-memory/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tree-ring-memory",
"version": "0.3.1",
"version": "0.3.2",
"description": "Local-first memory lifecycle and receipt-backed harness guidance for coding agents using Tree Ring Memory v0.14+.",
"author": {
"name": "TerminallyLazy",
Expand Down
4 changes: 2 additions & 2 deletions plugins/tree-ring-memory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ This directory is the repository-distributed Tree Ring Memory plugin for
ChatGPT/Codex and Claude Code. It packages instruction files only; the local
Tree Ring Memory CLI remains the runtime and data owner.

The Codex manifest is version `0.3.1`. The Claude Code manifest is version
`0.3.0`. Both target Tree Ring Memory CLI `0.14.0` or newer and share the same
The Codex manifest is version `0.3.2`. The Claude Code manifest is version
`0.3.1`. Both target Tree Ring Memory CLI `0.14.0` or newer and share the same
reviewed wrapper skill.

The package does not run a background service, scrape chats, install hooks, or
Expand Down
4 changes: 2 additions & 2 deletions scripts/validate-plugin-packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def validate_codex() -> None:

manifest = load_json(PLUGIN / ".codex-plugin" / "plugin.json")
require(manifest.get("name") == "tree-ring-memory", "Codex manifest name is stale")
require(manifest.get("version") == "0.3.1", "Codex manifest version is stale")
require(manifest.get("version") == "0.3.2", "Codex manifest version is stale")
require(manifest.get("skills") == "./skills/", "Codex skills path is stale")
for unsupported in ("mcpServers", "apps", "hooks"):
require(unsupported not in manifest, f"skills-only Codex plugin must not declare {unsupported}")
Expand All @@ -76,7 +76,7 @@ def validate_codex() -> None:
def validate_claude() -> None:
marketplace = load_json(ROOT / ".claude-plugin" / "marketplace.json")
require(marketplace.get("name") == "tree-ring-memory", "Claude marketplace name is stale")
require(marketplace.get("version") == "0.3.0", "Claude marketplace version is stale")
require(marketplace.get("version") == "0.3.1", "Claude marketplace version is stale")
require(isinstance(marketplace.get("owner"), dict), "Claude marketplace owner is required")
entries = marketplace.get("plugins")
require(isinstance(entries, list) and len(entries) == 1, "Claude marketplace must contain one plugin")
Expand Down