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/index.mjs CHANGED
@@ -44,7 +44,7 @@ var __export = (target, all) => {
44
44
  var version;
45
45
  var init_version = __esm({
46
46
  "src/version.ts"() {
47
- version = "1.0.46";
47
+ version = "1.0.47";
48
48
  }
49
49
  });
50
50
  function isHeadlessEnvironment() {
@@ -4514,6 +4514,8 @@ var JunoTaskConfigSchema = z.object({
4514
4514
  defaultBackend: BackendTypeSchema.describe("Default backend to use for task execution"),
4515
4515
  defaultMaxIterations: z.number().int().min(1).max(1e3).describe("Default maximum number of iterations for task execution"),
4516
4516
  defaultModel: z.string().optional().describe("Default model to use for the subagent"),
4517
+ // Project metadata
4518
+ mainTask: z.string().optional().describe("Main task objective for the project"),
4517
4519
  // Logging settings
4518
4520
  logLevel: LogLevelSchema.describe("Logging level for the application"),
4519
4521
  logFile: z.string().optional().describe("Path to log file (optional)"),