@first-tree-ai/context-tree 0.1.4 → 0.1.5
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +4 -3
- package/package.json +1 -2
- package/skills/context-tree-init/SKILL.md +1 -1
- package/skills/context-tree-link/SKILL.md +1 -1
- package/skills/context-tree-read/SKILL.md +1 -1
- package/skills/context-tree-write/SKILL.md +1 -1
- package/plugin.json +0 -14
package/README.md
CHANGED
|
@@ -171,8 +171,9 @@ selection, read/write lifecycle details, and exact public contracts, see the
|
|
|
171
171
|
|
|
172
172
|
## Compatibility
|
|
173
173
|
|
|
174
|
-
The
|
|
175
|
-
|
|
176
|
-
|
|
174
|
+
The package uses `.codex-plugin/plugin.json` and `.claude-plugin/plugin.json` as
|
|
175
|
+
host adapters for installation and lifecycle integration. It intentionally
|
|
176
|
+
omits a root `plugin.json`: Codex 0.151.0 treats that portable manifest as an
|
|
177
|
+
alternate plugin shape and fails to discover bundled lifecycle hooks. Both
|
|
177
178
|
marketplaces install the same npm package, and all plugin components use its
|
|
178
179
|
private packaged CLI at the same version rather than a global `PATH` command.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@first-tree-ai/context-tree",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Context Tree plugin for Codex and Claude Code, with a CLI for shell automation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"files": [
|
|
43
|
-
"plugin.json",
|
|
44
43
|
".agents/plugins/marketplace.json",
|
|
45
44
|
".claude-plugin",
|
|
46
45
|
".codex-plugin",
|
package/plugin.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
|
|
3
|
-
"name": "context-tree",
|
|
4
|
-
"version": "0.1.4",
|
|
5
|
-
"description": "Complete Context Tree plugin with linking, reading, durable writes, and a packaged CLI.",
|
|
6
|
-
"author": {
|
|
7
|
-
"name": "First Tree AI",
|
|
8
|
-
"url": "https://github.com/first-tree-ai"
|
|
9
|
-
},
|
|
10
|
-
"homepage": "https://github.com/first-tree-ai/context-tree",
|
|
11
|
-
"repository": "https://github.com/first-tree-ai/context-tree",
|
|
12
|
-
"license": "Apache-2.0",
|
|
13
|
-
"keywords": ["context-tree", "memory", "agents"]
|
|
14
|
-
}
|