@demicodes/shell 0.12.0 → 0.13.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.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -5,10 +5,13 @@ A sandboxable bash engine for Demi. Commands run through a `Host` abstraction
5
5
  same agent can target local, container, remote, or in-memory backends.
6
6
 
7
7
  - `BashEnvironment` — long-running shell sessions with `exec` / `status` / `write`
8
- / `abort` and a `/@` virtual filesystem of command artifacts.
8
+ / `abort` returning `ShellCommandStatus`, plus a `/@` virtual filesystem of
9
+ command artifacts.
9
10
  - `Host` contract (see [Implement a Host](../../docs/guides/implement-a-host.md)).
10
- - Built on a vendored fork of `just-bash`.
11
+ - Built on a forked `just-bash` workspace package.
11
12
 
12
13
  Subpaths: `@demicodes/shell/storage`, `@demicodes/shell/host-fs`.
14
+ See [docs/shell-yield-control-plan.md](../../docs/shell-yield-control-plan.md) for
15
+ the model-facing control surface and yield wakeups.
13
16
 
14
17
  Part of [Demi](../../README.md). Apache-2.0.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@demicodes/shell",
3
3
  "description": "Sandboxable bash engine and Host contract for Demi.",
4
- "version": "0.12.0",
4
+ "version": "0.13.0",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "exports": {
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@demicodes/just-bash": "^3.0.1-demi.5",
23
- "@demicodes/utils": "^0.12.0",
23
+ "@demicodes/utils": "^0.13.0",
24
24
  "zod": "^4.0.0"
25
25
  },
26
26
  "license": "Apache-2.0",