@studio-foundation/api 0.4.0-beta → 0.6.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.
- package/README.md +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @studio-foundation/api
|
|
2
2
|
|
|
3
|
-
**Studio** is
|
|
3
|
+
**Studio** is a declarative YAML runtime for AI agents. It orchestrates multi-stage agent workflows with structured output validation and automatic retry. This package is the **HTTP REST API**: the machine-to-machine interface over the same engine the CLI uses. Like GitHub is to `git`.
|
|
4
4
|
|
|
5
5
|
It wraps the engine in a Fastify server and handles fire-and-forget pipeline launches, real-time SSE streaming, webhook dispatch (Linear, Slack, CI/CD), and integration lifecycle. Use it to drive Studio from anything that can make an HTTP call.
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studio-foundation/api",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "HTTP API for Studio
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "HTTP REST API server for Studio agent pipelines",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/api.js",
|
|
7
7
|
"types": "./dist/api.d.ts",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"fastify": "^5.3.2",
|
|
40
40
|
"js-yaml": "^4.1.1",
|
|
41
41
|
"pg": "^8.19.0",
|
|
42
|
-
"@studio-foundation/
|
|
43
|
-
"@studio-foundation/
|
|
44
|
-
"@studio-foundation/
|
|
42
|
+
"@studio-foundation/engine": "0.6.0",
|
|
43
|
+
"@studio-foundation/runner": "0.6.0",
|
|
44
|
+
"@studio-foundation/contracts": "0.6.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/better-sqlite3": "^7.6.8",
|