@tagma/sdk 0.4.13 → 0.4.14
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 +0 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -41,7 +41,6 @@ pipeline:
|
|
|
41
41
|
- id: implement
|
|
42
42
|
name: Implement feature
|
|
43
43
|
prompt: 'Add a /health endpoint to src/server.ts'
|
|
44
|
-
output: ./output/implement.txt
|
|
45
44
|
- id: test
|
|
46
45
|
name: Run tests
|
|
47
46
|
command: 'bun test'
|
|
@@ -113,7 +112,6 @@ pipeline:
|
|
|
113
112
|
- id: task-a
|
|
114
113
|
name: Do something
|
|
115
114
|
prompt: 'Your prompt here'
|
|
116
|
-
output: ./output/task-a.txt
|
|
117
115
|
timeout: 10m
|
|
118
116
|
driver: claude-code
|
|
119
117
|
model: claude-sonnet-4-6
|
|
@@ -191,7 +189,6 @@ Each hook value can be a single command string or an array of commands.
|
|
|
191
189
|
| `command` | `string` | No\* | — | Shell command to execute directly. \*Mutually exclusive with `prompt` |
|
|
192
190
|
| `depends_on` | `string[]` | No | — | Task IDs that must complete before this task runs. Cross-track refs use `trackId.taskId` |
|
|
193
191
|
| `continue_from` | `string` | No | — | Task ID whose output/session to continue from (session handoff). Cross-track refs use `trackId.taskId` |
|
|
194
|
-
| `output` | `string` | No | — | File path to write task stdout to (relative to workDir) |
|
|
195
192
|
| `driver` | `string` | No | Inherited from track | Driver override for this task |
|
|
196
193
|
| `model` | `string` | No | Inherited from track | Model name override for this task |
|
|
197
194
|
| `agent_profile` | `string` | No | Inherited from track | Agent profile override |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tagma/sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.14",
|
|
4
4
|
"description": "Local AI task orchestration engine — core SDK for tagma pipelines",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"release:publish": "bun scripts/release.ts --publish"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@tagma/types": "0.2.
|
|
45
|
+
"@tagma/types": "0.2.7",
|
|
46
46
|
"js-yaml": "^4.1.0",
|
|
47
47
|
"chokidar": "^4.0.0"
|
|
48
48
|
},
|