juno-code 1.0.38 → 1.0.41
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/README.md +93 -0
- package/dist/bin/cli.js +115 -19
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +115 -19
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/templates/scripts/__pycache__/github.cpython-38.pyc +0 -0
- package/dist/templates/scripts/github.py +2383 -0
- package/dist/templates/scripts/install_requirements.sh +270 -1
- package/dist/templates/scripts/kanban.sh +3 -1
- package/dist/templates/scripts/run_until_completion.sh +44 -4
- package/dist/templates/scripts/slack_respond.py +2 -2
- 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.41";
|
|
79
79
|
}
|
|
80
80
|
});
|
|
81
81
|
function isHeadlessEnvironment() {
|
|
@@ -4557,7 +4557,7 @@ var JunoTaskConfigSchema = zod.z.object({
|
|
|
4557
4557
|
var DEFAULT_CONFIG = {
|
|
4558
4558
|
// Core settings
|
|
4559
4559
|
defaultSubagent: "claude",
|
|
4560
|
-
defaultBackend: "
|
|
4560
|
+
defaultBackend: "shell",
|
|
4561
4561
|
defaultMaxIterations: 50,
|
|
4562
4562
|
// Logging settings
|
|
4563
4563
|
logLevel: "info",
|