@arnilo/prism-coding-agent 0.0.10 → 0.0.96

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/CHANGELOG.md CHANGED
@@ -1,20 +1,11 @@
1
1
  # Changelog
2
- ## [0.0.10] - 2026-07-21
3
-
4
- ### Changed
5
-
6
- - Released with exact 0.0.10 graph.
7
-
8
- ### Notes
9
-
10
- - Sandbox composition / workspace-mode contract lives in `@arnilo/prism-coding-security` (required `workspaceMode`, same-tree Git via `createGitTools(composition.workspaceRoot, { execFile })`). Coding-agent tool surfaces unchanged for 0.0.10.
11
-
12
2
  ## [0.0.96] - 2026-07-21
13
3
 
14
4
  ### Changed
15
5
 
16
6
  - Released with exact 0.0.96 graph.
17
7
 
8
+
18
9
  ## [0.0.9] - 2026-07-21
19
10
 
20
11
  - Added bounded native `repo_list` / `repo_search` tools with streaming walks, literal/regex search, finite depth/entry/match/scan/time caps, and pluggable `RepositoryOperations`.
@@ -27,6 +18,7 @@
27
18
 
28
19
  - Released with the exact 0.0.8 first-party package graph.
29
20
 
21
+
30
22
  ## [0.0.7] - 2026-07-19
31
23
 
32
24
  - Released with the exact 0.0.7 first-party package graph.
@@ -50,6 +42,7 @@
50
42
 
51
43
  - Pinned the required `@arnilo/prism` peer and package metadata to 0.0.5; runtime behavior is unchanged.
52
44
 
45
+
53
46
  ## [0.0.4] - 2026-07-14
54
47
 
55
48
  ### Added
package/README.md CHANGED
@@ -4,7 +4,7 @@ Optional first-party coding tools package for [Prism](https://www.npmjs.com/pack
4
4
 
5
5
  Behavior is a behavioral port of the pi coding agent's `bash`/`read`/`write`/`edit` tools, adapted to Prism's `ToolDefinition` / `ToolResult` contracts (no `@earendil-works/*` or `typebox` dependencies). List/search/Git are native Prism tools.
6
6
 
7
- > ⚠️ **These tools perform real shell and filesystem operations on the host. They provide no sandbox.** Gate them with Prism `PermissionPolicy` / `ToolValidator` / trust policies before registering them for any provider turn. For disposable sandbox composition with required `workspaceMode`, use `@arnilo/prism-coding-security` (`createSandboxCodingComposition`). See the [coding agent tools docs](https://github.com/ashiqrniloy/prism/blob/main/docs/coding-agent-tools.md) and the [host security guide](https://github.com/ashiqrniloy/prism/blob/main/docs/host-security.md).
7
+ > ⚠️ **These tools perform real shell and filesystem operations on the host. They provide no sandbox.** Gate them with Prism `PermissionPolicy` / `ToolValidator` / trust policies before registering them for any provider turn. See the [coding agent tools docs](https://github.com/ashiqrniloy/prism/blob/main/docs/coding-agent-tools.md) and the [host security guide](https://github.com/ashiqrniloy/prism/blob/main/docs/host-security.md).
8
8
 
9
9
  ## Install
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arnilo/prism-coding-agent",
3
- "version": "0.0.10",
3
+ "version": "0.0.96",
4
4
  "description": "Optional coding-agent tools (shell, read, write, edit, repo_list, repo_search, opt-in Git/check, and durable plan/checkpoint helpers) package for Prism.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -28,7 +28,7 @@
28
28
  "diff": "^9.0.0"
29
29
  },
30
30
  "peerDependencies": {
31
- "@arnilo/prism": "0.0.10"
31
+ "@arnilo/prism": "0.0.96"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@arnilo/prism": "file:../..",