@anvia/studio 0.2.2 → 0.2.3

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 CHANGED
@@ -1,8 +1,8 @@
1
1
  # @anvia/studio
2
2
 
3
- Studio UI and HTTP runtime for Anvia agents.
3
+ Studio UI and HTTP runtime for Anvia agents, pipelines, tools, MCPs, and knowledge inspection.
4
4
 
5
- Use this package to serve local agents over HTTP, inspect sessions and traces in the browser UI, and exercise tool approval workflows during development.
5
+ Use this package to serve local agents and pipelines over HTTP, inspect sessions, traces, tools, MCPs, and Knowledge in the browser UI, and exercise tool approval workflows during development.
6
6
 
7
7
  ## Installation
8
8
 
@@ -44,9 +44,19 @@ Then open:
44
44
  http://localhost:4021/playground
45
45
  ```
46
46
 
47
+ ## Browser UI
48
+
49
+ Studio exposes:
50
+
51
+ - Chat playground and persisted sessions
52
+ - Trace browser and session logs
53
+ - Pipeline graph, logs, and run history
54
+ - Agent, static tool, dynamic tool, and MCP inspectors
55
+ - Knowledge tabs for static context, dynamic context, dynamic tools, and retrieval log
56
+
47
57
  ## Session Storage
48
58
 
49
- Studio uses a local SQLite store by default so sessions and traces can persist across process restarts. If you omit the port, Studio uses `RUNNER_PORT` and then falls back to `4021`.
59
+ Studio uses a local SQLite store by default so sessions, traces, and pipeline run history can persist across process restarts. If you omit the port, Studio uses `RUNNER_PORT` and then falls back to `4021`.
50
60
 
51
61
  Set `ANVIA_STUDIO_DB` to control the database path:
52
62
 
@@ -58,7 +68,7 @@ ANVIA_STUDIO_DB=.anvia/studio.sqlite node ./dist/server.js
58
68
 
59
69
  - `Studio`
60
70
  - `createSqliteSessionStore`
61
- - Studio session, trace, approval, and runtime types
71
+ - Studio session, trace, approval, pipeline, knowledge, tool, MCP, and runtime types
62
72
 
63
73
  ## Development
64
74