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.js +4 -0
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +4 -0
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -1326,6 +1326,8 @@ var init_config = __esm({
|
|
|
1326
1326
|
defaultBackend: BackendTypeSchema.describe("Default backend to use for task execution"),
|
|
1327
1327
|
defaultMaxIterations: zod.z.number().int().min(1).max(1e3).describe("Default maximum number of iterations for task execution"),
|
|
1328
1328
|
defaultModel: zod.z.string().optional().describe("Default model to use for the subagent"),
|
|
1329
|
+
// Project metadata
|
|
1330
|
+
mainTask: zod.z.string().optional().describe("Main task objective for the project"),
|
|
1329
1331
|
// Logging settings
|
|
1330
1332
|
logLevel: LogLevelSchema.describe("Logging level for the application"),
|
|
1331
1333
|
logFile: zod.z.string().optional().describe("Path to log file (optional)"),
|
|
@@ -17178,6 +17180,8 @@ ${variables.EDITOR ? `using ${variables.EDITOR} as primary AI subagent` : ""}
|
|
|
17178
17180
|
defaultSubagent: this.context.subagent,
|
|
17179
17181
|
defaultMaxIterations: 50,
|
|
17180
17182
|
defaultModel: this.getDefaultModelForSubagent(this.context.subagent || "claude"),
|
|
17183
|
+
// Project metadata
|
|
17184
|
+
mainTask: this.context.task || "Project initialization",
|
|
17181
17185
|
// Logging settings
|
|
17182
17186
|
logLevel: "info",
|
|
17183
17187
|
verbose: false,
|