@keystrokehq/keystroke 1.0.17 → 1.0.18
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/dist/agent.cjs +2 -1
- package/dist/agent.cjs.map +1 -1
- package/dist/agent.d.cts +2 -2
- package/dist/agent.d.mts +2 -2
- package/dist/agent.mjs +2 -1
- package/dist/agent.mjs.map +1 -1
- package/dist/{index-BQEzTb7P.d.cts → index-C9qevi4R.d.cts} +10 -3
- package/dist/index-C9qevi4R.d.cts.map +1 -0
- package/dist/{index-ub0OqZXh.d.mts → index-CGa7YLSI.d.mts} +10 -3
- package/dist/index-CGa7YLSI.d.mts.map +1 -0
- package/dist/trigger.d.cts +1 -1
- package/dist/trigger.d.mts +1 -1
- package/package.json +1 -1
- package/dist/index-BQEzTb7P.d.cts.map +0 -1
- package/dist/index-ub0OqZXh.d.mts.map +0 -1
package/dist/agent.cjs
CHANGED
|
@@ -14525,7 +14525,8 @@ function normalizeAgentDefinition(input, options = {}) {
|
|
|
14525
14525
|
...input.runtimeHooks !== void 0 ? { runtimeHooks: input.runtimeHooks } : {},
|
|
14526
14526
|
...sandbox !== void 0 ? { sandbox } : {},
|
|
14527
14527
|
...resolved.skills !== void 0 ? { skills: resolved.skills } : {},
|
|
14528
|
-
...input.memory !== void 0 ? { memory: input.memory } : {}
|
|
14528
|
+
...input.memory !== void 0 ? { memory: input.memory } : {},
|
|
14529
|
+
...input.web !== void 0 ? { web: input.web } : {}
|
|
14529
14530
|
};
|
|
14530
14531
|
}
|
|
14531
14532
|
/**
|