juno-code 1.0.1
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 +117 -0
- package/dist/bin/cli.js +22048 -0
- package/dist/bin/cli.js.map +1 -0
- package/dist/bin/cli.mjs +22014 -0
- package/dist/bin/cli.mjs.map +1 -0
- package/dist/bin/feedback-collector.js +128 -0
- package/dist/bin/feedback-collector.js.map +1 -0
- package/dist/bin/feedback-collector.mjs +126 -0
- package/dist/bin/feedback-collector.mjs.map +1 -0
- package/dist/index.js +15006 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +14725 -0
- package/dist/index.mjs.map +1 -0
- package/dist/templates/scripts/clean_logs_folder.sh +170 -0
- package/dist/templates/scripts/install_requirements.sh +221 -0
- package/package.json +82 -0
package/README.md
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# juno-task-ts
|
|
2
|
+
|
|
3
|
+
TypeScript implementation of juno-task CLI tool for AI subagent orchestration.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
juno-task-ts 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
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
This package is available on NPM under multiple names for flexibility:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Primary package (recommended)
|
|
15
|
+
npm install -g juno-agent
|
|
16
|
+
|
|
17
|
+
# Alternative installations
|
|
18
|
+
npm install -g juno-code
|
|
19
|
+
npm install -g juno-ts-task
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
All three packages provide the same functionality and binary commands.
|
|
23
|
+
|
|
24
|
+
## Getting Started
|
|
25
|
+
|
|
26
|
+
### Prerequisites
|
|
27
|
+
|
|
28
|
+
- Node.js (v18 or higher)
|
|
29
|
+
- Python 3.8+ (for dependency scripts)
|
|
30
|
+
- Git for version control
|
|
31
|
+
- NPM or UV package manager
|
|
32
|
+
|
|
33
|
+
### Quick Start
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# Initialize a new project
|
|
37
|
+
juno-agent init --task "Your task" --subagent claude --git-url "https://github.com/user/repo"
|
|
38
|
+
|
|
39
|
+
# Start task execution
|
|
40
|
+
juno-agent start
|
|
41
|
+
|
|
42
|
+
# Or use the universal command
|
|
43
|
+
juno --help
|
|
44
|
+
|
|
45
|
+
# Collect feedback during execution
|
|
46
|
+
juno-collect-feedback
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Available Commands
|
|
50
|
+
|
|
51
|
+
All packages install these binary commands:
|
|
52
|
+
|
|
53
|
+
- `juno` - Universal command (recommended)
|
|
54
|
+
- `juno-agent` - Package-specific command
|
|
55
|
+
- `juno-code` - Package-specific command
|
|
56
|
+
- `juno-ts-task` - Legacy command
|
|
57
|
+
- `juno-collect-feedback` - Feedback collection utility
|
|
58
|
+
|
|
59
|
+
## Project Structure
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
.
|
|
63
|
+
├── .juno_task/
|
|
64
|
+
│ ├── prompt.md # Production-ready AI instructions
|
|
65
|
+
│ ├── init.md # Task breakdown and constraints
|
|
66
|
+
│ ├── plan.md # Dynamic planning and tracking
|
|
67
|
+
│ ├── USER_FEEDBACK.md # User feedback and issue tracking
|
|
68
|
+
│ └── specs/ # Comprehensive specifications
|
|
69
|
+
│ ├── README.md # Specs overview and guide
|
|
70
|
+
│ ├── requirements.md # Detailed functional requirements
|
|
71
|
+
│ └── architecture.md # System architecture and design
|
|
72
|
+
├── CLAUDE.md # Session documentation and learnings
|
|
73
|
+
├── AGENTS.md # AI agent selection and performance tracking
|
|
74
|
+
└── README.md # This file
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## AI-Powered Development
|
|
78
|
+
|
|
79
|
+
This project implements a sophisticated AI development workflow:
|
|
80
|
+
|
|
81
|
+
1. **Task Analysis**: AI studies existing codebase and requirements
|
|
82
|
+
2. **Specification Creation**: Detailed specs with parallel subagents
|
|
83
|
+
3. **Implementation**: AI-assisted development (up to 500 parallel agents)
|
|
84
|
+
4. **Testing**: Automated testing with dedicated subagents
|
|
85
|
+
5. **Documentation**: Continuous documentation updates
|
|
86
|
+
6. **Version Control**: Automated Git workflow with smart commits
|
|
87
|
+
|
|
88
|
+
## Key Features
|
|
89
|
+
|
|
90
|
+
- **Production-Ready Templates**: Comprehensive templates for AI guidance
|
|
91
|
+
- **Parallel Processing**: Up to 500 parallel subagents for analysis
|
|
92
|
+
- **Automated Workflows**: Git integration, tagging, and documentation
|
|
93
|
+
- **Quality Enforcement**: Strict requirements against placeholder implementations
|
|
94
|
+
- **User Feedback Integration**: Continuous feedback loop via USER_FEEDBACK.md
|
|
95
|
+
- **Session Management**: Detailed tracking of development sessions
|
|
96
|
+
|
|
97
|
+
## Configuration
|
|
98
|
+
|
|
99
|
+
The project uses `claude` as the primary AI subagent with these settings:
|
|
100
|
+
- **Parallel Agents**: Up to 500 for analysis, 1 for build/test
|
|
101
|
+
- **Quality Standards**: Full implementations required
|
|
102
|
+
- **Documentation**: Comprehensive and up-to-date
|
|
103
|
+
- **Version Control**: Automated Git workflow
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
## Development Workflow
|
|
108
|
+
|
|
109
|
+
1. **Review Task**: Check `.juno_task/init.md` for main task
|
|
110
|
+
2. **Check Plan**: Review `.juno_task/plan.md` for current priorities
|
|
111
|
+
3. **Provide Feedback**: Use `juno-task feedback` for issues or suggestions
|
|
112
|
+
4. **Track Progress**: Monitor AI development through `.juno_task/prompt.md`
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
Created with juno-task on 2025-10-08
|
|
117
|
+
using claude as primary AI subagent
|