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/index.js
CHANGED
|
@@ -75,7 +75,7 @@ var __export = (target, all) => {
|
|
|
75
75
|
exports.version = void 0;
|
|
76
76
|
var init_version = __esm({
|
|
77
77
|
"src/version.ts"() {
|
|
78
|
-
exports.version = "1.0.
|
|
78
|
+
exports.version = "1.0.47";
|
|
79
79
|
}
|
|
80
80
|
});
|
|
81
81
|
function isHeadlessEnvironment() {
|
|
@@ -4545,6 +4545,8 @@ var JunoTaskConfigSchema = zod.z.object({
|
|
|
4545
4545
|
defaultBackend: BackendTypeSchema.describe("Default backend to use for task execution"),
|
|
4546
4546
|
defaultMaxIterations: zod.z.number().int().min(1).max(1e3).describe("Default maximum number of iterations for task execution"),
|
|
4547
4547
|
defaultModel: zod.z.string().optional().describe("Default model to use for the subagent"),
|
|
4548
|
+
// Project metadata
|
|
4549
|
+
mainTask: zod.z.string().optional().describe("Main task objective for the project"),
|
|
4548
4550
|
// Logging settings
|
|
4549
4551
|
logLevel: LogLevelSchema.describe("Logging level for the application"),
|
|
4550
4552
|
logFile: zod.z.string().optional().describe("Path to log file (optional)"),
|