juno-code 1.0.47 → 1.0.50
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 +455 -205
- package/dist/bin/cli.d.mts +17 -0
- package/dist/bin/cli.d.ts +17 -0
- package/dist/bin/cli.js +6456 -17604
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +6443 -17589
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/bin/feedback-collector.d.mts +2 -0
- package/dist/bin/feedback-collector.d.ts +2 -0
- package/dist/bin/feedback-collector.js.map +1 -1
- package/dist/bin/feedback-collector.mjs.map +1 -1
- package/dist/index.d.mts +2133 -0
- package/dist/index.d.ts +2133 -0
- package/dist/index.js +3916 -14711
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3914 -14516
- package/dist/index.mjs.map +1 -1
- package/dist/templates/extensions/pi/juno-skill-preprocessor.ts +239 -0
- package/dist/templates/scripts/__pycache__/github.cpython-313.pyc +0 -0
- package/dist/templates/scripts/__pycache__/parallel_runner.cpython-313.pyc +0 -0
- package/dist/templates/scripts/__pycache__/slack_respond.cpython-313.pyc +0 -0
- package/dist/templates/scripts/install_requirements.sh +41 -3
- package/dist/templates/scripts/kanban.sh +22 -4
- package/dist/templates/scripts/parallel_runner.sh +2242 -0
- package/dist/templates/services/README.md +61 -1
- package/dist/templates/services/__pycache__/claude.cpython-313.pyc +0 -0
- package/dist/templates/services/__pycache__/codex.cpython-313.pyc +0 -0
- package/dist/templates/services/__pycache__/pi.cpython-313.pyc +0 -0
- package/dist/templates/services/claude.py +132 -33
- package/dist/templates/services/codex.py +179 -66
- package/dist/templates/services/gemini.py +117 -27
- package/dist/templates/services/pi.py +2796 -0
- package/dist/templates/skills/claude/kanban-workflow/SKILL.md +138 -0
- package/dist/templates/skills/claude/plan-kanban-tasks/SKILL.md +15 -8
- package/dist/templates/skills/claude/ralph-loop/SKILL.md +18 -22
- package/dist/templates/skills/claude/ralph-loop/references/first_check.md +15 -14
- package/dist/templates/skills/claude/ralph-loop/references/implement.md +17 -17
- package/dist/templates/skills/claude/ralph-loop/scripts/kanban.sh +22 -4
- package/dist/templates/skills/claude/understand-project/SKILL.md +15 -8
- package/dist/templates/skills/codex/kanban-workflow/SKILL.md +139 -0
- package/dist/templates/skills/codex/plan-kanban-tasks/SKILL.md +32 -0
- package/dist/templates/skills/codex/ralph-loop/SKILL.md +18 -22
- package/dist/templates/skills/codex/ralph-loop/references/first_check.md +15 -14
- package/dist/templates/skills/codex/ralph-loop/references/implement.md +17 -17
- package/dist/templates/skills/codex/ralph-loop/scripts/kanban.sh +22 -4
- package/dist/templates/skills/codex/understand-project/SKILL.md +46 -0
- package/dist/templates/skills/pi/.gitkeep +0 -0
- package/dist/templates/skills/pi/kanban-workflow/SKILL.md +139 -0
- package/dist/templates/skills/pi/plan-kanban-tasks/SKILL.md +32 -0
- package/dist/templates/skills/pi/ralph-loop/SKILL.md +43 -0
- package/dist/templates/skills/pi/ralph-loop/references/first_check.md +21 -0
- package/dist/templates/skills/pi/ralph-loop/references/implement.md +99 -0
- package/dist/templates/skills/pi/understand-project/SKILL.md +46 -0
- package/package.json +26 -46
- package/dist/templates/scripts/__pycache__/attachment_downloader.cpython-38.pyc +0 -0
- package/dist/templates/scripts/__pycache__/github.cpython-38.pyc +0 -0
- package/dist/templates/scripts/__pycache__/slack_fetch.cpython-38.pyc +0 -0
- package/dist/templates/scripts/__pycache__/slack_state.cpython-38.pyc +0 -0
- package/dist/templates/services/__pycache__/claude.cpython-38.pyc +0 -0
- package/dist/templates/services/__pycache__/codex.cpython-38.pyc +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI entry point for juno-code
|
|
3
|
+
*
|
|
4
|
+
* Comprehensive TypeScript CLI implementation with full functionality parity
|
|
5
|
+
* to the Python budi-cli. Provides all core commands with interactive and
|
|
6
|
+
* headless support, comprehensive error handling, and real-time progress tracking.
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Global error handler for CLI operations
|
|
10
|
+
*/
|
|
11
|
+
declare function handleCLIError(error: unknown, verbose?: number): void;
|
|
12
|
+
/**
|
|
13
|
+
* Main CLI function
|
|
14
|
+
*/
|
|
15
|
+
declare function main(): Promise<void>;
|
|
16
|
+
|
|
17
|
+
export { handleCLIError, main };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI entry point for juno-code
|
|
3
|
+
*
|
|
4
|
+
* Comprehensive TypeScript CLI implementation with full functionality parity
|
|
5
|
+
* to the Python budi-cli. Provides all core commands with interactive and
|
|
6
|
+
* headless support, comprehensive error handling, and real-time progress tracking.
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Global error handler for CLI operations
|
|
10
|
+
*/
|
|
11
|
+
declare function handleCLIError(error: unknown, verbose?: number): void;
|
|
12
|
+
/**
|
|
13
|
+
* Main CLI function
|
|
14
|
+
*/
|
|
15
|
+
declare function main(): Promise<void>;
|
|
16
|
+
|
|
17
|
+
export { handleCLIError, main };
|