@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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "context-tree",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Complete Context Tree plugin with linking, reading, durable writes, and a packaged CLI.",
5
5
  "author": {
6
6
  "name": "First Tree AI"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "context-tree",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Complete Context Tree plugin with linking, reading, durable writes, and a packaged CLI.",
5
5
  "author": {
6
6
  "name": "First Tree AI",
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 root `plugin.json` is the portable Agent Plugins v1 manifest, and compatible
175
- hosts discover the four skills from `skills/`. The Codex and Claude manifests
176
- are current-client adapters for installation and lifecycle integration. Both
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.4",
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",
@@ -5,7 +5,7 @@ license: Apache-2.0
5
5
  compatibility: Requires Node.js 22.13+ and the context-tree CLI JSON schema version 1.
6
6
  metadata:
7
7
  author: first-tree-ai
8
- version: "0.1.4"
8
+ version: "0.1.5"
9
9
  ---
10
10
 
11
11
  # Context Tree Init
@@ -5,7 +5,7 @@ license: Apache-2.0
5
5
  compatibility: Requires Node.js 22.13+ and the context-tree CLI JSON schema version 1.
6
6
  metadata:
7
7
  author: first-tree-ai
8
- version: "0.1.4"
8
+ version: "0.1.5"
9
9
  ---
10
10
 
11
11
  # Context Tree Link
@@ -5,7 +5,7 @@ license: Apache-2.0
5
5
  compatibility: Requires Node.js 22.13+ and the context-tree CLI JSON schema version 1.
6
6
  metadata:
7
7
  author: first-tree-ai
8
- version: "0.1.4"
8
+ version: "0.1.5"
9
9
  ---
10
10
 
11
11
  # Context Tree Read
@@ -5,7 +5,7 @@ license: Apache-2.0
5
5
  compatibility: Requires Node.js 22.13+ and the context-tree CLI JSON schema version 1.
6
6
  metadata:
7
7
  author: first-tree-ai
8
- version: "0.1.4"
8
+ version: "0.1.5"
9
9
  ---
10
10
 
11
11
  # Context Tree Write
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
- }