@studio-foundation/cli 0.3.0-beta.5 → 0.3.0-beta.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studio-foundation/cli",
3
- "version": "0.3.0-beta.5",
3
+ "version": "0.3.0-beta.6",
4
4
  "description": "Command-line interface for Studio v7",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -9,7 +9,8 @@
9
9
  "studio": "./dist/index.js"
10
10
  },
11
11
  "files": [
12
- "dist"
12
+ "dist",
13
+ "templates"
13
14
  ],
14
15
  "keywords": [
15
16
  "studio",
@@ -24,10 +25,10 @@
24
25
  "dotenv": "^17.3.1",
25
26
  "js-yaml": "^4.1.1",
26
27
  "ora": "^9.3.0",
27
- "@studio-foundation/api": "0.3.0-beta.5",
28
- "@studio-foundation/contracts": "0.3.0-beta.5",
29
- "@studio-foundation/engine": "0.3.0-beta.5",
30
- "@studio-foundation/runner": "0.3.0-beta.5"
28
+ "@studio-foundation/api": "0.3.0-beta.6",
29
+ "@studio-foundation/contracts": "0.3.0-beta.6",
30
+ "@studio-foundation/engine": "0.3.0-beta.6",
31
+ "@studio-foundation/runner": "0.3.0-beta.6"
31
32
  },
32
33
  "devDependencies": {
33
34
  "@types/js-yaml": "^4.0.9",
@@ -0,0 +1,16 @@
1
+ # Studio v7 Configuration
2
+
3
+ providers:
4
+ anthropic:
5
+ apiKey: ${ANTHROPIC_API_KEY}
6
+ # openai:
7
+ # apiKey: ${OPENAI_API_KEY}
8
+
9
+ paths:
10
+ pipelines: ./pipelines
11
+ contracts: ./configs/contracts
12
+ agents: ./configs/agents
13
+
14
+ defaults:
15
+ provider: anthropic
16
+ model: claude-sonnet-4-20250514
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "blank",
3
+ "version": "1.0.0",
4
+ "description": "Empty project structure",
5
+ "type": "template",
6
+ "studio_version": ">=7.0.0"
7
+ }
@@ -0,0 +1,14 @@
1
+ # Studio Configuration
2
+ # This file is gitignored — it contains secrets.
3
+ # See .studio/projects/ for your pipeline configs (those ARE committed).
4
+
5
+ providers:
6
+ ollama: {}
7
+ # anthropic:
8
+ # apiKey: ${ANTHROPIC_API_KEY}
9
+ # openai:
10
+ # apiKey: ${OPENAI_API_KEY}
11
+
12
+ defaults:
13
+ provider: ollama
14
+ model: llama3.3