juno-code 1.0.46 → 1.0.47

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/cli.mjs CHANGED
@@ -1291,6 +1291,8 @@ var init_config = __esm({
1291
1291
  defaultBackend: BackendTypeSchema.describe("Default backend to use for task execution"),
1292
1292
  defaultMaxIterations: z.number().int().min(1).max(1e3).describe("Default maximum number of iterations for task execution"),
1293
1293
  defaultModel: z.string().optional().describe("Default model to use for the subagent"),
1294
+ // Project metadata
1295
+ mainTask: z.string().optional().describe("Main task objective for the project"),
1294
1296
  // Logging settings
1295
1297
  logLevel: LogLevelSchema.describe("Logging level for the application"),
1296
1298
  logFile: z.string().optional().describe("Path to log file (optional)"),
@@ -17143,6 +17145,8 @@ ${variables.EDITOR ? `using ${variables.EDITOR} as primary AI subagent` : ""}
17143
17145
  defaultSubagent: this.context.subagent,
17144
17146
  defaultMaxIterations: 50,
17145
17147
  defaultModel: this.getDefaultModelForSubagent(this.context.subagent || "claude"),
17148
+ // Project metadata
17149
+ mainTask: this.context.task || "Project initialization",
17146
17150
  // Logging settings
17147
17151
  logLevel: "info",
17148
17152
  verbose: false,