@aexol/spectral 0.9.128 → 0.9.129

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.
@@ -228,8 +228,8 @@ export function resolveSubagentTools(toolNames, cwd, ext, ctx) {
228
228
  const toolDef = richApi.getToolDefinition(name);
229
229
  if (toolDef) {
230
230
  const isolatedContext = name === RECALL_OBSERVATION_TOOL_NAME
231
- ? { cwd, sessionManager: createSubagentSessionManagerSnapshot(ctx.sessionManager) }
232
- : { cwd };
231
+ ? { cwd, sessionManager: createSubagentSessionManagerSnapshot(ctx.sessionManager), getSystemPrompt: ctx.getSystemPrompt }
232
+ : { cwd, getSystemPrompt: ctx.getSystemPrompt };
233
233
  const isolatedContextWithNoParent = isolatedContext;
234
234
  tools.push(wrapToolDefinition(toolDef, () => isolatedContextWithNoParent));
235
235
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aexol/spectral",
3
- "version": "0.9.128",
3
+ "version": "0.9.129",
4
4
  "description": "AI coding agent for Aexol with relay-based browser access.",
5
5
  "type": "module",
6
6
  "private": false,