juno-code 1.0.50 → 1.0.51
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 +100 -8
- package/dist/bin/cli.js +2431 -1280
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +2413 -1262
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/index.d.mts +23 -12
- package/dist/index.d.ts +23 -12
- package/dist/index.js +40 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +40 -11
- package/dist/index.mjs.map +1 -1
- package/dist/templates/scripts/install_requirements.sh +14 -2
- package/dist/templates/scripts/kanban.sh +7 -0
- package/dist/templates/services/README.md +23 -4
- package/dist/templates/services/__pycache__/pi.cpython-313.pyc +0 -0
- package/dist/templates/services/pi.py +657 -29
- package/dist/templates/skills/claude/ralph-loop/scripts/kanban.sh +7 -0
- package/dist/templates/skills/codex/ralph-loop/scripts/kanban.sh +7 -0
- package/package.json +1 -1
|
@@ -194,6 +194,13 @@ cd "$PROJECT_ROOT"
|
|
|
194
194
|
# not from wherever the calling agent happens to be. Respects existing override.
|
|
195
195
|
export JUNO_TASK_ROOT="${JUNO_TASK_ROOT:-$PROJECT_ROOT}"
|
|
196
196
|
|
|
197
|
+
# Prefer local juno_kanban source when available (monorepo development).
|
|
198
|
+
# This keeps wrapper behavior aligned with working-tree changes without requiring
|
|
199
|
+
# immediate reinstall from PyPI between local iterations.
|
|
200
|
+
if [[ -d "$PROJECT_ROOT/juno_kanban/src" ]]; then
|
|
201
|
+
export PYTHONPATH="$PROJECT_ROOT/juno_kanban/src${PYTHONPATH:+:$PYTHONPATH}"
|
|
202
|
+
fi
|
|
203
|
+
|
|
197
204
|
# Arrays to store normalized arguments (declared at script level for proper handling)
|
|
198
205
|
declare -a NORMALIZED_GLOBAL_FLAGS=()
|
|
199
206
|
declare -a NORMALIZED_COMMAND_ARGS=()
|
|
@@ -194,6 +194,13 @@ cd "$PROJECT_ROOT"
|
|
|
194
194
|
# not from wherever the calling agent happens to be. Respects existing override.
|
|
195
195
|
export JUNO_TASK_ROOT="${JUNO_TASK_ROOT:-$PROJECT_ROOT}"
|
|
196
196
|
|
|
197
|
+
# Prefer local juno_kanban source when available (monorepo development).
|
|
198
|
+
# This keeps wrapper behavior aligned with working-tree changes without requiring
|
|
199
|
+
# immediate reinstall from PyPI between local iterations.
|
|
200
|
+
if [[ -d "$PROJECT_ROOT/juno_kanban/src" ]]; then
|
|
201
|
+
export PYTHONPATH="$PROJECT_ROOT/juno_kanban/src${PYTHONPATH:+:$PYTHONPATH}"
|
|
202
|
+
fi
|
|
203
|
+
|
|
197
204
|
# Arrays to store normalized arguments (declared at script level for proper handling)
|
|
198
205
|
declare -a NORMALIZED_GLOBAL_FLAGS=()
|
|
199
206
|
declare -a NORMALIZED_COMMAND_ARGS=()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "juno-code",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.51",
|
|
4
4
|
"description": "Ralph Wiggum meet Kanban! Ralph style execution for [Claude Code, Codex, Gemini, Cursor]. One task per iteration, automatic progress tracking, and git commits. Set it and let it run.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ralph",
|