juno-code 1.0.10 → 1.0.13
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 +11 -20
- package/dist/bin/cli.js +444 -265
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +444 -265
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/bin/feedback-collector.js.map +1 -1
- package/dist/bin/feedback-collector.mjs.map +1 -1
- package/dist/index.js +62 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +59 -16
- package/dist/index.mjs.map +1 -1
- package/dist/templates/scripts/clean_logs_folder.sh +1 -1
- package/dist/templates/scripts/cleanup_feedback.sh +3 -0
- package/dist/templates/scripts/install_requirements.sh +183 -16
- package/dist/templates/scripts/kanban.sh +19 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# juno-
|
|
1
|
+
# juno-code
|
|
2
2
|
|
|
3
|
-
TypeScript
|
|
3
|
+
TypeScript CLI tool for AI subagent orchestration with code automation.
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
juno-
|
|
7
|
+
juno-code is an AI-powered development CLI that orchestrates subagents (Claude, Cursor, Codex, Gemini) through MCP (Model Context Protocol) servers. It provides a modern TypeScript implementation with React INK TUI, comprehensive testing infrastructure, and automated feedback collection.
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
@@ -12,15 +12,9 @@ This package is available on NPM under multiple names for flexibility:
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
# Primary package (recommended)
|
|
15
|
-
npm install -g juno-agent
|
|
16
|
-
|
|
17
|
-
# Alternative installations
|
|
18
15
|
npm install -g juno-code
|
|
19
|
-
npm install -g juno-ts-task
|
|
20
16
|
```
|
|
21
17
|
|
|
22
|
-
All three packages provide the same functionality and binary commands.
|
|
23
|
-
|
|
24
18
|
## Getting Started
|
|
25
19
|
|
|
26
20
|
### Prerequisites
|
|
@@ -34,13 +28,13 @@ All three packages provide the same functionality and binary commands.
|
|
|
34
28
|
|
|
35
29
|
```bash
|
|
36
30
|
# Initialize a new project
|
|
37
|
-
juno-
|
|
31
|
+
juno-code init --task "Your task" --subagent claude --git-url "https://github.com/user/repo"
|
|
38
32
|
|
|
39
33
|
# Start task execution
|
|
40
|
-
juno-
|
|
34
|
+
juno-code start
|
|
41
35
|
|
|
42
|
-
# Or use the
|
|
43
|
-
juno --help
|
|
36
|
+
# Or use the juno-code command for all operations
|
|
37
|
+
juno-code --help
|
|
44
38
|
|
|
45
39
|
# Collect feedback during execution
|
|
46
40
|
juno-collect-feedback
|
|
@@ -48,12 +42,9 @@ juno-collect-feedback
|
|
|
48
42
|
|
|
49
43
|
### Available Commands
|
|
50
44
|
|
|
51
|
-
|
|
45
|
+
The package installs these binary commands:
|
|
52
46
|
|
|
53
|
-
- `juno` -
|
|
54
|
-
- `juno-agent` - Package-specific command
|
|
55
|
-
- `juno-code` - Package-specific command
|
|
56
|
-
- `juno-ts-task` - Legacy command
|
|
47
|
+
- `juno-code` - Main command (recommended)
|
|
57
48
|
- `juno-collect-feedback` - Feedback collection utility
|
|
58
49
|
|
|
59
50
|
## Project Structure
|
|
@@ -108,10 +99,10 @@ The project uses `claude` as the primary AI subagent with these settings:
|
|
|
108
99
|
|
|
109
100
|
1. **Review Task**: Check `.juno_task/init.md` for main task
|
|
110
101
|
2. **Check Plan**: Review `.juno_task/plan.md` for current priorities
|
|
111
|
-
3. **Provide Feedback**: Use `juno-
|
|
102
|
+
3. **Provide Feedback**: Use `juno-code feedback` for issues or suggestions
|
|
112
103
|
4. **Track Progress**: Monitor AI development through `.juno_task/prompt.md`
|
|
113
104
|
|
|
114
105
|
---
|
|
115
106
|
|
|
116
|
-
Created with juno-
|
|
107
|
+
Created with juno-code on 2025-10-08
|
|
117
108
|
using claude as primary AI subagent
|