@openagentpack/playground 0.5.0 → 0.7.1
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 +7 -2
- package/dist/bin/playground.js +2676 -3483
- package/package.json +5 -3
- package/web/assets/index.js +28 -148
- package/web/assets/style.css +1 -1
- package/web/index.html +3 -3
package/README.md
CHANGED
|
@@ -5,10 +5,15 @@ A one-command local WebUI for [OpenAgentPack](https://github.com/modelstudioai/O
|
|
|
5
5
|
The CLI fetches the matching Playground version on demand the first time you start it:
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
|
-
agents playground
|
|
8
|
+
agents playground -f agents.yaml
|
|
9
|
+
agents project workbench --project ./my-agent
|
|
9
10
|
```
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
Both commands launch the same loopback-only local API and WebUI, but they have different sources. `agents playground` keeps the standalone `agents.yaml` Session Preview. `agents project workbench` opens a directory project, watches its complete source tree, edits existing JSON/Markdown declarations, previews and writes Build output, publishes the reviewed Build, and browses or restores full source snapshots.
|
|
13
|
+
|
|
14
|
+
Session Preview never writes YAML. Directory Workbench writes authored source only after explicit save or restore; generated YAML is written only by Build. Providers cannot be edited in the UI, and Deployment declarations are shown read-only but included in full project Publish. Temporary Session attachments and remote State remain outside version snapshots.
|
|
15
|
+
|
|
16
|
+
If the configuration is missing or invalid, the workbench still opens with diagnostics and automatically recovers after an external edit. Existing Sessions in the same server process keep their original runtime snapshot while new Plans, Applies, uploads, and Sessions remain disabled.
|
|
12
17
|
|
|
13
18
|
For configuration and provider setup, see the [project documentation](https://github.com/modelstudioai/OpenAgentPack#readme).
|
|
14
19
|
|