@studio-foundation/api 0.4.0-beta → 0.5.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @studio-foundation/api
2
2
 
3
- **Studio** is an agentic pipeline runtime that executes multi-stage LLM workflows with structural 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`.
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.0-beta",
4
- "description": "HTTP API for Studio v7",
3
+ "version": "0.5.2",
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/contracts": "0.4.0-beta",
43
- "@studio-foundation/engine": "0.4.0-beta",
44
- "@studio-foundation/runner": "0.4.0-beta"
42
+ "@studio-foundation/contracts": "0.5.2",
43
+ "@studio-foundation/engine": "0.5.2",
44
+ "@studio-foundation/runner": "0.5.2"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/better-sqlite3": "^7.6.8",