@shardworks/animator-apparatus 0.1.101 → 0.1.102
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 +3 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -121,6 +121,7 @@ interface SummonRequest {
|
|
|
121
121
|
cwd: string; // Working directory for the session
|
|
122
122
|
conversationId?: string; // Optional, for multi-turn resume
|
|
123
123
|
metadata?: Record<string, unknown>; // Merged with { trigger: 'summon', role }
|
|
124
|
+
environment?: Record<string, string>; // Per-request env overrides (merged with weave)
|
|
124
125
|
streaming?: boolean; // Enable streaming output (default false)
|
|
125
126
|
}
|
|
126
127
|
|
|
@@ -130,6 +131,7 @@ interface AnimateRequest {
|
|
|
130
131
|
cwd: string;
|
|
131
132
|
conversationId?: string;
|
|
132
133
|
metadata?: Record<string, unknown>;
|
|
134
|
+
environment?: Record<string, string>; // Per-request env overrides (merged with weave)
|
|
133
135
|
streaming?: boolean; // Enable streaming output (default false)
|
|
134
136
|
}
|
|
135
137
|
|
|
@@ -196,6 +198,7 @@ interface SessionProviderConfig {
|
|
|
196
198
|
model: string;
|
|
197
199
|
conversationId?: string;
|
|
198
200
|
cwd: string;
|
|
201
|
+
environment?: Record<string, string>; // Merged env vars (weave + request overrides)
|
|
199
202
|
}
|
|
200
203
|
|
|
201
204
|
interface SessionProviderResult {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shardworks/animator-apparatus",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.102",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"zod": "4.3.6",
|
|
20
|
-
"@shardworks/nexus-core": "0.1.
|
|
21
|
-
"@shardworks/
|
|
22
|
-
"@shardworks/
|
|
23
|
-
"@shardworks/
|
|
20
|
+
"@shardworks/nexus-core": "0.1.102",
|
|
21
|
+
"@shardworks/tools-apparatus": "0.1.102",
|
|
22
|
+
"@shardworks/stacks-apparatus": "0.1.102",
|
|
23
|
+
"@shardworks/loom-apparatus": "0.1.102"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/node": "25.5.0"
|