agent-runtime-map 0.8.0 → 0.8.2
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 +17 -2
- package/dist/cli.js +41 -41
- package/dist/viewer/assets/index-BYSUKIdb.js +3 -0
- package/dist/viewer/assets/index-oqi3ngbk.css +1 -0
- package/dist/viewer/assets/xyflow-CKwy9Fyu.js +7 -0
- package/dist/viewer/index.html +3 -3
- package/package.json +1 -1
- package/dist/viewer/assets/index-4tql6hvj.js +0 -3
- package/dist/viewer/assets/index-Dvsvzpjt.css +0 -1
- package/dist/viewer/assets/xyflow-NEmtYq4w.js +0 -7
package/README.md
CHANGED
|
@@ -6,13 +6,28 @@ Turn every Agent feature into an evidence-backed execution circuit you can inspe
|
|
|
6
6
|
npx agent-runtime-map@latest .
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Install it into a project:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npm install --save-dev
|
|
12
|
+
npm install --save-dev agent-runtime-map
|
|
13
13
|
npx agent-runtime-map .
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
+
## Keep the map current on GitHub
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npx agent-runtime-map init --github
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
This writes `agent-runtime-map.config.json` and a workflow that rebuilds the map
|
|
23
|
+
on every push and pull request. The workflow grants `contents: read` and nothing
|
|
24
|
+
more, and never commits anything back to your branch.
|
|
25
|
+
|
|
26
|
+
**Runner requirement.** The action runs on Node 24, which needs Actions Runner
|
|
27
|
+
2.327.1 or newer. GitHub-hosted runners are already there and need nothing. A
|
|
28
|
+
**self-hosted** runner pinned below that must be updated first, or the action
|
|
29
|
+
fails at its first step.
|
|
30
|
+
|
|
16
31
|
The command analyzes the selected project, writes `.logic-map/graph.json`, starts a local viewer, and opens it in the browser. Choose a feature from the left to play, pause, single-step, replay, or switch between its inferred branches on one global Agent graph. Chain Doctor marks verified steps green, uncertainty yellow, and deterministic failures red with source evidence and a suggested repair.
|
|
17
32
|
|
|
18
33
|
Playback is an explicit simulation of the statically compiled code route; it does not claim that a live request is executing.
|