@robiteame/dsh-session-tree 0.1.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 ADDED
@@ -0,0 +1,38 @@
1
+ # @robiteame/dsh-session-tree
2
+
3
+ Carrier Bundle for [DeepSeek-Harness](https://github.com/deepseek-ai/deepseek-harness)
4
+ adding Pi-style append-only multi-branch session trees. Installing this one
5
+ package mounts all three implementation packages through its
6
+ `cordis.patch.yml` composition layer:
7
+
8
+ | Composition row | Package | Role |
9
+ |---|---|---|
10
+ | `pi-agent-session-tree` | `@robiteame/dsh-pi-agent-session-tree` | `SessionTree`/`SessionTreeStore` domain service and the `sessionTree` Remote (`list`/`jump`/`fork`/`session`) |
11
+ | `tool-session-tree` | `@robiteame/dsh-tool-session-tree` | `session_tree` tool, `/tree` `/fork` `/clone` `/session` commands, system-prompt section |
12
+ | `ui-session-tree` | `@robiteame/dsh-client-ui-session-tree` | WebUI tree panel (additive right-side overlay on official builds, native details dock on patched builds) |
13
+
14
+ ## Install
15
+
16
+ ```sh
17
+ dsh plugin --profile <profile> add @robiteame/dsh-session-tree
18
+ ```
19
+
20
+ or install the prebuilt tarball:
21
+
22
+ ```sh
23
+ dsh plugin --profile <profile> add robiteame-dsh-session-tree-0.1.0.tgz
24
+ ```
25
+
26
+ This package carries no code of its own: `dependencies` pulls the three
27
+ implementation packages into the profile workspace and `dsh.bundle.patch`
28
+ points the composition loader at them. Requires DeepSeek-Harness
29
+ `0.1.2-alpha.3` or a compatible `0.1.2` build and Cordis `^4.0.2`; the
30
+ target installation provides those peers.
31
+
32
+ See the [repository README](https://github.com/robiteame/dsh-session-tree-extension)
33
+ for the full feature tour, degradation behaviour on stock Harness builds,
34
+ and development instructions.
35
+
36
+ ## License
37
+
38
+ MIT.
@@ -0,0 +1,12 @@
1
+ # Carrier bundle patch: mounts the three session-tree implementation
2
+ # packages as composition rows. Each `name:` resolves inside the profile
3
+ # workspace, where this package's dependencies are installed.
4
+ - insert:
5
+ - id: pi-agent-session-tree
6
+ name: '@robiteame/dsh-pi-agent-session-tree'
7
+
8
+ - id: tool-session-tree
9
+ name: '@robiteame/dsh-tool-session-tree'
10
+
11
+ - id: ui-session-tree
12
+ name: '@robiteame/dsh-client-ui-session-tree'
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@robiteame/dsh-session-tree",
3
+ "description": "Pi-style append-only multi-branch session trees for DeepSeek-Harness: one carrier Bundle row mounts the Host service, the session_tree tool and commands, and the WebUI tree panel",
4
+ "version": "0.1.0",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/robiteame/dsh-session-tree-extension.git",
11
+ "directory": "packages/bundle/session-tree"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/robiteame/dsh-session-tree-extension/issues"
15
+ },
16
+ "type": "module",
17
+ "license": "MIT",
18
+ "dsh": {
19
+ "bundle": {
20
+ "patch": "./cordis.patch.yml"
21
+ }
22
+ },
23
+ "dependencies": {
24
+ "@robiteame/dsh-pi-agent-session-tree": "^0.1.0",
25
+ "@robiteame/dsh-tool-session-tree": "^0.1.0",
26
+ "@robiteame/dsh-client-ui-session-tree": "^0.1.0"
27
+ },
28
+ "files": [
29
+ "cordis.patch.yml",
30
+ "README.md"
31
+ ],
32
+ "engines": {
33
+ "node": ">=22"
34
+ }
35
+ }