@kody-ade/kody-engine 0.2.15 → 0.2.16

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/bin/kody2.js CHANGED
@@ -3,7 +3,7 @@
3
3
  // package.json
4
4
  var package_default = {
5
5
  name: "@kody-ade/kody-engine",
6
- version: "0.2.15",
6
+ version: "0.2.16",
7
7
  description: "kody2 \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
8
8
  license: "MIT",
9
9
  type: "module",
@@ -298,6 +298,7 @@ async function runAgent(opts) {
298
298
  if (typeof opts.systemPromptAppend === "string" && opts.systemPromptAppend.length > 0) {
299
299
  queryOptions.systemPrompt = { type: "preset", preset: "claude_code", append: opts.systemPromptAppend };
300
300
  }
301
+ queryOptions.settingSources = opts.settingSources ?? ["project", "local"];
301
302
  const result = query({
302
303
  prompt: opts.prompt,
303
304
  // biome-ignore lint/suspicious/noExplicitAny: SDK options type is narrow; mcpServers is runtime-passthrough.
@@ -3226,7 +3227,8 @@ async function runExecutable(profileName, input) {
3226
3227
  mcpServers: profile.claudeCode.mcpServers,
3227
3228
  pluginPaths: pluginPaths.length > 0 ? pluginPaths : void 0,
3228
3229
  maxTurns: profile.claudeCode.maxTurns,
3229
- systemPromptAppend: profile.claudeCode.systemPromptAppend
3230
+ systemPromptAppend: profile.claudeCode.systemPromptAppend,
3231
+ settingSources: profile.claudeCode.settingSources
3230
3232
  });
3231
3233
  };
3232
3234
  ctx.data.__invokeAgent = invokeAgent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.2.15",
3
+ "version": "0.2.16",
4
4
  "description": "kody2 — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",