@gravirei/reis 1.2.2 β 1.2.3
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 +218 -25
- package/bin/reis.js +3 -0
- package/lib/install.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,45 +1,238 @@
|
|
|
1
1
|
# REIS - Roadmap Execution & Implementation System
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<div align="center">
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/@gravirei/reis)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
7
|
|
|
8
|
+
π **Systematic development with parallel subagent execution for Atlassian Rovo Dev**
|
|
9
|
+
|
|
10
|
+
[Installation](#installation) β’ [Quick Start](#quick-start) β’ [Features](#features) β’ [Documentation](#documentation)
|
|
11
|
+
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## β¨ What is REIS?
|
|
17
|
+
|
|
18
|
+
**REIS (Roadmap Execution & Implementation System)** is a systematic development framework designed specifically for Atlassian Rovo Dev. It provides a structured workflow with 29 commands, 3 specialized subagents, and comprehensive documentation to help you build better software faster.
|
|
19
|
+
|
|
20
|
+
### Key Benefits
|
|
21
|
+
|
|
22
|
+
- π **Structured Workflow** - Clear phases from requirements to deployment
|
|
23
|
+
- π€ **3 Specialized Subagents** - Planner, Executor, and Project Mapper
|
|
24
|
+
- π **Parallel Execution** - Run up to 4 subagents simultaneously
|
|
25
|
+
- πΎ **No Context Rot** - Fresh 200k context per task
|
|
26
|
+
- β‘ **Atomic Commits** - One commit per task with automatic tracking
|
|
27
|
+
- π οΈ **Auto-Fix** - Automatic bug detection and gap filling
|
|
28
|
+
- π **Always-Loaded Context** - Structured documentation in `~/.rovodev/`
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## π Installation
|
|
33
|
+
|
|
34
|
+
Install REIS globally or run it directly with npx:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Run directly (recommended)
|
|
38
|
+
npx @gravirei/reis
|
|
39
|
+
|
|
40
|
+
# Or install globally
|
|
41
|
+
npm install -g @gravirei/reis
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
On first run, REIS will install to `~/.rovodev/reis/` and set up subagents for Rovo Dev.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## π― Quick Start
|
|
49
|
+
|
|
50
|
+
### Start a New Project
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
reis new "build a todo app with React and Node.js"
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
This will:
|
|
57
|
+
1. Create `PROJECT.md` with your vision
|
|
58
|
+
2. Generate `REQUIREMENTS.md`
|
|
59
|
+
3. Build a phase-based `ROADMAP.md`
|
|
60
|
+
4. Initialize `STATE.md` for tracking
|
|
61
|
+
|
|
62
|
+
### Map an Existing Codebase
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
reis map
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Analyzes your existing project and generates REIS structure.
|
|
69
|
+
|
|
70
|
+
### Execute Your Roadmap
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
reis plan # Plan next phase
|
|
74
|
+
reis execute # Execute the plan
|
|
75
|
+
reis verify # Verify completion
|
|
76
|
+
reis progress # Track progress
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## π¨ Features
|
|
82
|
+
|
|
83
|
+
### 29 Commands Organized by Category
|
|
84
|
+
|
|
85
|
+
#### **Getting Started**
|
|
86
|
+
- `reis new [idea]` - Initialize new REIS project
|
|
87
|
+
- `reis map` - Analyze and map existing codebase
|
|
88
|
+
- `reis help` - Show all commands
|
|
89
|
+
- `reis version` - Show current version
|
|
90
|
+
|
|
91
|
+
#### **Requirements & Planning**
|
|
92
|
+
- `reis requirements` - Work on requirements document
|
|
93
|
+
- `reis roadmap` - Work on project roadmap
|
|
94
|
+
- `reis assumptions` - Document assumptions
|
|
95
|
+
|
|
96
|
+
#### **Phase Execution**
|
|
97
|
+
- `reis plan` - Create phase execution plan
|
|
98
|
+
- `reis discuss` - Discuss phase approach
|
|
99
|
+
- `reis research` - Research phase requirements
|
|
100
|
+
- `reis execute` - Execute current phase
|
|
101
|
+
- `reis execute-plan [file]` - Execute specific plan file
|
|
102
|
+
- `reis verify` - Verify phase completion
|
|
103
|
+
|
|
104
|
+
#### **Progress Management**
|
|
105
|
+
- `reis progress` - Show current progress
|
|
106
|
+
- `reis pause` - Pause current work
|
|
107
|
+
- `reis resume` - Resume paused work
|
|
108
|
+
- `reis todo` - Add a todo item
|
|
109
|
+
- `reis todos` - Show all todos
|
|
110
|
+
|
|
111
|
+
#### **Roadmap Management**
|
|
112
|
+
- `reis add [phase]` - Add new phase to roadmap
|
|
113
|
+
- `reis insert [phase] [after]` - Insert phase after another
|
|
114
|
+
- `reis remove [phase]` - Remove phase from roadmap
|
|
115
|
+
|
|
116
|
+
#### **Milestones**
|
|
117
|
+
- `reis milestone complete [name]` - Mark milestone complete
|
|
118
|
+
- `reis milestone discuss [name]` - Discuss milestone
|
|
119
|
+
- `reis milestone new [name]` - Create new milestone
|
|
120
|
+
|
|
121
|
+
#### **Utilities**
|
|
122
|
+
- `reis debug` - Show debug information
|
|
123
|
+
- `reis update` - Update REIS to latest version
|
|
124
|
+
- `reis docs` - Open documentation
|
|
125
|
+
- `reis whats-new` - Show what's new
|
|
126
|
+
- `reis uninstall` - Uninstall REIS
|
|
127
|
+
|
|
128
|
+
### 3 Specialized Subagents
|
|
129
|
+
|
|
130
|
+
#### π― **reis_planner**
|
|
131
|
+
Creates executable phase plans with:
|
|
132
|
+
- Task breakdown and dependency analysis
|
|
133
|
+
- Resource requirements
|
|
134
|
+
- Risk assessment
|
|
135
|
+
- Success criteria
|
|
136
|
+
|
|
137
|
+
#### β‘ **reis_executor**
|
|
138
|
+
Executes plans with:
|
|
139
|
+
- Atomic commits per task
|
|
140
|
+
- Deviation handling and checkpoints
|
|
141
|
+
- State management
|
|
142
|
+
- Auto-fix capabilities
|
|
143
|
+
|
|
144
|
+
#### πΊοΈ **reis_project_mapper**
|
|
145
|
+
Maps codebases with:
|
|
146
|
+
- Architecture analysis
|
|
147
|
+
- Dependency mapping
|
|
148
|
+
- Tech stack identification
|
|
149
|
+
- REIS structure initialization
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## π Documentation
|
|
154
|
+
|
|
155
|
+
After installation, comprehensive documentation is available:
|
|
156
|
+
|
|
157
|
+
- **Quick Reference**: `~/.rovodev/reis/QUICK_REFERENCE.md`
|
|
158
|
+
- **Complete Commands**: `~/.rovodev/reis/COMPLETE_COMMANDS.md`
|
|
159
|
+
- **Workflow Examples**: `~/.rovodev/reis/WORKFLOW_EXAMPLES.md`
|
|
160
|
+
- **Integration Guide**: `~/.rovodev/reis/INTEGRATION_GUIDE.md`
|
|
161
|
+
- **Full Guide**: `~/.rovodev/reis/README.md`
|
|
162
|
+
|
|
163
|
+
Or access directly:
|
|
7
164
|
```bash
|
|
8
|
-
|
|
165
|
+
reis docs # Open documentation
|
|
9
166
|
```
|
|
10
167
|
|
|
11
|
-
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## π Example Workflow
|
|
12
171
|
|
|
13
172
|
```bash
|
|
14
|
-
|
|
15
|
-
reis new
|
|
16
|
-
|
|
173
|
+
# 1. Start a new project
|
|
174
|
+
reis new "build an AI chatbot"
|
|
175
|
+
|
|
176
|
+
# 2. Review and refine requirements
|
|
177
|
+
reis requirements
|
|
178
|
+
|
|
179
|
+
# 3. Create roadmap
|
|
180
|
+
reis roadmap
|
|
181
|
+
|
|
182
|
+
# 4. Execute first phase
|
|
183
|
+
reis plan # Plan Phase 1
|
|
184
|
+
reis execute # Execute Phase 1
|
|
185
|
+
reis verify # Verify completion
|
|
186
|
+
|
|
187
|
+
# 5. Track progress
|
|
188
|
+
reis progress # See what's done
|
|
189
|
+
|
|
190
|
+
# 6. Continue to next phase
|
|
191
|
+
reis plan # Plan Phase 2
|
|
192
|
+
reis execute # Execute Phase 2
|
|
17
193
|
```
|
|
18
194
|
|
|
19
|
-
|
|
195
|
+
---
|
|
196
|
+
|
|
197
|
+
## π οΈ Tech Stack
|
|
198
|
+
|
|
199
|
+
- **Node.js** - Runtime environment
|
|
200
|
+
- **Chalk** - Terminal styling
|
|
201
|
+
- **Inquirer** - Interactive prompts
|
|
202
|
+
- **Rovo Dev** - AI-powered development platform
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
|
|
206
|
+
## π€ Contributing
|
|
207
|
+
|
|
208
|
+
Contributions are welcome! This project is in active development.
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
## π Credits
|
|
213
|
+
|
|
214
|
+
Inspired by [Get Shit Done](https://github.com/glittercowboy/get-shit-done) by TΓCHES, adapted and enhanced for Atlassian Rovo Dev with parallel subagent execution capabilities.
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
## π License
|
|
20
219
|
|
|
21
|
-
|
|
22
|
-
- β
**Parallel Execution** - Run up to 4 subagents simultaneously
|
|
23
|
-
- β
**No Context Rot** - Fresh 200k context per task
|
|
24
|
-
- β
**Atomic Commits** - One commit per task
|
|
25
|
-
- β
**Auto-Fix** - Bugs and gaps fixed automatically
|
|
26
|
-
- β
**Structured Documentation** - Always-loaded context
|
|
220
|
+
MIT License - see [LICENSE](LICENSE) file for details.
|
|
27
221
|
|
|
28
|
-
|
|
222
|
+
---
|
|
29
223
|
|
|
30
|
-
|
|
224
|
+
## π Links
|
|
31
225
|
|
|
32
|
-
|
|
226
|
+
- **npm Package**: [@gravirei/reis](https://www.npmjs.com/package/@gravirei/reis)
|
|
227
|
+
- **GitHub**: [Gravirei/reis](https://github.com/Gravirei/reis)
|
|
228
|
+
- **Issues**: [Report a bug](https://github.com/Gravirei/reis/issues)
|
|
33
229
|
|
|
34
|
-
|
|
35
|
-
- Quick Reference: `~/.rovodev/reis/QUICK_REFERENCE.md`
|
|
36
|
-
- Full Guide: `~/.rovodev/reis/README.md`
|
|
37
|
-
- Examples: `~/.rovodev/reis/WORKFLOW_EXAMPLES.md`
|
|
230
|
+
---
|
|
38
231
|
|
|
39
|
-
|
|
232
|
+
<div align="center">
|
|
40
233
|
|
|
41
|
-
|
|
234
|
+
**Made with β€οΈ for systematic development**
|
|
42
235
|
|
|
43
|
-
|
|
236
|
+
[β¬ back to top](#reis---roadmap-execution--implementation-system)
|
|
44
237
|
|
|
45
|
-
|
|
238
|
+
</div>
|
package/bin/reis.js
CHANGED
|
@@ -264,6 +264,7 @@ program.action(async () => {
|
|
|
264
264
|
await performInstallation(true, true); // overwrite=true, silent=true
|
|
265
265
|
|
|
266
266
|
console.log(chalk.green(' β REIS reinstalled successfully'));
|
|
267
|
+
console.log(chalk.gray(' Location: ~/.rovodev/reis/'));
|
|
267
268
|
console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
268
269
|
} else {
|
|
269
270
|
console.log(chalk.cyan(' Keeping existing installation\n'));
|
|
@@ -308,6 +309,7 @@ program.action(async () => {
|
|
|
308
309
|
await performInstallation(false, true); // overwrite=false, silent=true
|
|
309
310
|
|
|
310
311
|
console.log(chalk.green(' β REIS installed successfully'));
|
|
312
|
+
console.log(chalk.gray(' Location: ~/.rovodev/reis/'));
|
|
311
313
|
console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
312
314
|
|
|
313
315
|
} catch (err) {
|
|
@@ -319,6 +321,7 @@ program.action(async () => {
|
|
|
319
321
|
await performInstallation(false, true); // overwrite=false, silent=true
|
|
320
322
|
|
|
321
323
|
console.log(chalk.green(' β REIS installed successfully'));
|
|
324
|
+
console.log(chalk.gray(' Location: ~/.rovodev/reis/'));
|
|
322
325
|
console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
323
326
|
}
|
|
324
327
|
}
|
package/lib/install.js
CHANGED
|
@@ -229,7 +229,8 @@ function copyDirectory(srcDir, destDir, overwrite = false) {
|
|
|
229
229
|
// Show success message with next steps
|
|
230
230
|
function showSuccessMessage(fileCount, reisDir, templatesDir, subagentsDir) {
|
|
231
231
|
console.log(chalk.green('\nβ Installation complete\n'));
|
|
232
|
-
console.log(chalk.
|
|
232
|
+
console.log(chalk.gray(` Location: ~/.rovodev/reis/`));
|
|
233
|
+
console.log(chalk.white(` Installed ${fileCount} files`));
|
|
233
234
|
console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
234
235
|
}
|
|
235
236
|
|
package/package.json
CHANGED