@gravirei/reis 1.0.0
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/LICENSE +21 -0
- package/README.md +45 -0
- package/bin/.gitkeep +0 -0
- package/bin/reis.js +204 -0
- package/docs/.gitkeep +0 -0
- package/docs/COMPLETE_COMMANDS.md +528 -0
- package/docs/INTEGRATION_GUIDE.md +407 -0
- package/docs/QUICK_REFERENCE.md +250 -0
- package/docs/README.md +249 -0
- package/docs/README_DOCS.md +193 -0
- package/docs/SHORTCUT_GUIDE.md +361 -0
- package/docs/WORKFLOW_EXAMPLES.md +973 -0
- package/docs/shortcuts.json +40 -0
- package/lib/commands/.gitkeep +0 -0
- package/lib/commands/README.md +162 -0
- package/lib/commands/add.js +26 -0
- package/lib/commands/assumptions.js +28 -0
- package/lib/commands/debug.js +23 -0
- package/lib/commands/discuss.js +28 -0
- package/lib/commands/docs.js +21 -0
- package/lib/commands/execute-plan.js +22 -0
- package/lib/commands/execute.js +28 -0
- package/lib/commands/help.js +62 -0
- package/lib/commands/insert.js +32 -0
- package/lib/commands/map.js +9 -0
- package/lib/commands/milestone.js +43 -0
- package/lib/commands/new.js +16 -0
- package/lib/commands/pause.js +20 -0
- package/lib/commands/plan.js +28 -0
- package/lib/commands/progress.js +20 -0
- package/lib/commands/remove.js +26 -0
- package/lib/commands/requirements.js +15 -0
- package/lib/commands/research.js +28 -0
- package/lib/commands/resume.js +20 -0
- package/lib/commands/roadmap.js +15 -0
- package/lib/commands/todo.js +24 -0
- package/lib/commands/todos.js +21 -0
- package/lib/commands/uninstall.js +21 -0
- package/lib/commands/update.js +15 -0
- package/lib/commands/verify.js +28 -0
- package/lib/commands/version.js +13 -0
- package/lib/commands/whats-new.js +19 -0
- package/lib/index.js +4 -0
- package/lib/install.js +249 -0
- package/lib/utils/.gitkeep +0 -0
- package/lib/utils/command-helpers.js +83 -0
- package/package.json +58 -0
- package/subagents/.gitkeep +0 -0
- package/subagents/reis_executor.md +390 -0
- package/subagents/reis_planner.md +231 -0
- package/subagents/reis_project_mapper.md +453 -0
- package/templates/.gitkeep +0 -0
- package/templates/PLAN.md +53 -0
- package/templates/PROJECT.md +53 -0
- package/templates/REQUIREMENTS.md +42 -0
- package/templates/ROADMAP.md +47 -0
- package/templates/STATE.md +61 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Gravirei
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# REIS - Roadmap Execution & Implementation System
|
|
2
|
+
|
|
3
|
+
🚀 Systematic development with parallel subagent execution for Atlassian Rovo Dev.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx reis
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
reis help # Show all commands
|
|
15
|
+
reis new [your idea] # Start a new project
|
|
16
|
+
reis map # Map existing codebase
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Features
|
|
20
|
+
|
|
21
|
+
- ✅ **29 Commands** - Complete systematic development workflow
|
|
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
|
|
27
|
+
|
|
28
|
+
## What is REIS?
|
|
29
|
+
|
|
30
|
+
**Roadmap Execution & Implementation System** - A systematic development framework inspired by GSD (Get Shit Done), specifically adapted for Atlassian Rovo Dev with enhanced parallel subagent execution.
|
|
31
|
+
|
|
32
|
+
## Documentation
|
|
33
|
+
|
|
34
|
+
After installation, documentation is available at:
|
|
35
|
+
- Quick Reference: `~/.rovodev/reis/QUICK_REFERENCE.md`
|
|
36
|
+
- Full Guide: `~/.rovodev/reis/README.md`
|
|
37
|
+
- Examples: `~/.rovodev/reis/WORKFLOW_EXAMPLES.md`
|
|
38
|
+
|
|
39
|
+
## Credits
|
|
40
|
+
|
|
41
|
+
Inspired by [Get Shit Done](https://github.com/glittercowboy/get-shit-done) by TÂCHES, adapted for Atlassian Rovo Dev.
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
MIT
|
package/bin/.gitkeep
ADDED
|
File without changes
|
package/bin/reis.js
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const { program } = require('commander');
|
|
4
|
+
const packageJson = require('../package.json');
|
|
5
|
+
|
|
6
|
+
// Command implementations - Core commands
|
|
7
|
+
const helpCmd = require('../lib/commands/help.js');
|
|
8
|
+
const versionCmd = require('../lib/commands/version.js');
|
|
9
|
+
const newCmd = require('../lib/commands/new.js');
|
|
10
|
+
const mapCmd = require('../lib/commands/map.js');
|
|
11
|
+
const requirementsCmd = require('../lib/commands/requirements.js');
|
|
12
|
+
const roadmapCmd = require('../lib/commands/roadmap.js');
|
|
13
|
+
|
|
14
|
+
// Command implementations - Phase Management commands
|
|
15
|
+
const planCmd = require('../lib/commands/plan.js');
|
|
16
|
+
const discussCmd = require('../lib/commands/discuss.js');
|
|
17
|
+
const researchCmd = require('../lib/commands/research.js');
|
|
18
|
+
const assumptionsCmd = require('../lib/commands/assumptions.js');
|
|
19
|
+
const executeCmd = require('../lib/commands/execute.js');
|
|
20
|
+
const executePlanCmd = require('../lib/commands/execute-plan.js');
|
|
21
|
+
const verifyCmd = require('../lib/commands/verify.js');
|
|
22
|
+
|
|
23
|
+
// Command implementations - Other commands
|
|
24
|
+
const progressCmd = require('../lib/commands/progress.js');
|
|
25
|
+
const pauseCmd = require('../lib/commands/pause.js');
|
|
26
|
+
const resumeCmd = require('../lib/commands/resume.js');
|
|
27
|
+
const addCmd = require('../lib/commands/add.js');
|
|
28
|
+
const insertCmd = require('../lib/commands/insert.js');
|
|
29
|
+
const removeCmd = require('../lib/commands/remove.js');
|
|
30
|
+
const milestoneCmd = require('../lib/commands/milestone.js');
|
|
31
|
+
const todoCmd = require('../lib/commands/todo.js');
|
|
32
|
+
const todosCmd = require('../lib/commands/todos.js');
|
|
33
|
+
const debugCmd = require('../lib/commands/debug.js');
|
|
34
|
+
|
|
35
|
+
// Set up commander
|
|
36
|
+
program
|
|
37
|
+
.name('reis')
|
|
38
|
+
.version(packageJson.version, '-V, --version', 'output the current version')
|
|
39
|
+
.description('REIS - Roadmap Execution & Implementation System')
|
|
40
|
+
.usage('<command> [options]');
|
|
41
|
+
|
|
42
|
+
// Getting Started Commands
|
|
43
|
+
program
|
|
44
|
+
.command('help')
|
|
45
|
+
.description('Show comprehensive help with all commands')
|
|
46
|
+
.action(() => helpCmd());
|
|
47
|
+
|
|
48
|
+
program
|
|
49
|
+
.command('version')
|
|
50
|
+
.description('Show version and install location')
|
|
51
|
+
.action(() => versionCmd());
|
|
52
|
+
|
|
53
|
+
program
|
|
54
|
+
.command('new [idea]')
|
|
55
|
+
.description('Initialize a new REIS project')
|
|
56
|
+
.action((idea) => newCmd({idea}));
|
|
57
|
+
|
|
58
|
+
program
|
|
59
|
+
.command('map')
|
|
60
|
+
.description('Analyze and map existing codebase')
|
|
61
|
+
.action(() => mapCmd({}));
|
|
62
|
+
|
|
63
|
+
program
|
|
64
|
+
.command('requirements')
|
|
65
|
+
.description('Generate or update requirements document')
|
|
66
|
+
.action(() => requirementsCmd({}));
|
|
67
|
+
|
|
68
|
+
program
|
|
69
|
+
.command('roadmap')
|
|
70
|
+
.description('Generate or update project roadmap')
|
|
71
|
+
.action(() => roadmapCmd({}));
|
|
72
|
+
|
|
73
|
+
// Phase Management Commands
|
|
74
|
+
program
|
|
75
|
+
.command('plan [phase]')
|
|
76
|
+
.description('Create detailed plan for a phase')
|
|
77
|
+
.action((phase) => planCmd({phase}));
|
|
78
|
+
|
|
79
|
+
program
|
|
80
|
+
.command('discuss [phase]')
|
|
81
|
+
.description('Discuss implementation approach for a phase')
|
|
82
|
+
.action((phase) => discussCmd({phase}));
|
|
83
|
+
|
|
84
|
+
program
|
|
85
|
+
.command('research [phase]')
|
|
86
|
+
.description('Research technical solutions for a phase')
|
|
87
|
+
.action((phase) => researchCmd({phase}));
|
|
88
|
+
|
|
89
|
+
program
|
|
90
|
+
.command('assumptions [phase]')
|
|
91
|
+
.description('Document and validate assumptions')
|
|
92
|
+
.action((phase) => assumptionsCmd({phase}));
|
|
93
|
+
|
|
94
|
+
program
|
|
95
|
+
.command('execute [phase]')
|
|
96
|
+
.description('Execute a phase')
|
|
97
|
+
.action((phase) => executeCmd({phase}));
|
|
98
|
+
|
|
99
|
+
program
|
|
100
|
+
.command('execute-plan <path>')
|
|
101
|
+
.description('Execute a specific plan file')
|
|
102
|
+
.action((path) => executePlanCmd({path}));
|
|
103
|
+
|
|
104
|
+
program
|
|
105
|
+
.command('verify [phase]')
|
|
106
|
+
.description('Verify phase completion')
|
|
107
|
+
.action((phase) => verifyCmd({phase}));
|
|
108
|
+
|
|
109
|
+
// Progress Commands
|
|
110
|
+
program
|
|
111
|
+
.command('progress')
|
|
112
|
+
.description('Show current project progress')
|
|
113
|
+
.action(() => progressCmd({}));
|
|
114
|
+
|
|
115
|
+
program
|
|
116
|
+
.command('pause')
|
|
117
|
+
.description('Pause current work and save state')
|
|
118
|
+
.action(() => pauseCmd({}));
|
|
119
|
+
|
|
120
|
+
program
|
|
121
|
+
.command('resume')
|
|
122
|
+
.description('Resume paused work')
|
|
123
|
+
.action(() => resumeCmd({}));
|
|
124
|
+
|
|
125
|
+
// Roadmap Management Commands
|
|
126
|
+
program
|
|
127
|
+
.command('add <feature>')
|
|
128
|
+
.description('Add feature to roadmap')
|
|
129
|
+
.action((feature) => addCmd({feature}));
|
|
130
|
+
|
|
131
|
+
program
|
|
132
|
+
.command('insert <phase> <feature>')
|
|
133
|
+
.description('Insert feature at specific phase')
|
|
134
|
+
.action((phase, feature) => insertCmd({phase, feature}));
|
|
135
|
+
|
|
136
|
+
program
|
|
137
|
+
.command('remove <phase>')
|
|
138
|
+
.description('Remove phase from roadmap')
|
|
139
|
+
.action((phase) => removeCmd({phase}));
|
|
140
|
+
|
|
141
|
+
// Milestone Commands
|
|
142
|
+
program
|
|
143
|
+
.command('milestone')
|
|
144
|
+
.description('Manage milestones')
|
|
145
|
+
.argument('<subcommand>', 'Subcommand: complete, discuss, or new')
|
|
146
|
+
.argument('[name]', 'Milestone name (required for complete/new)')
|
|
147
|
+
.action((subcommand, name) => milestoneCmd({subcommand, name}));
|
|
148
|
+
|
|
149
|
+
// Utility Commands
|
|
150
|
+
program
|
|
151
|
+
.command('todo <description>')
|
|
152
|
+
.description('Add a TODO item')
|
|
153
|
+
.action((description) => todoCmd({description}));
|
|
154
|
+
|
|
155
|
+
program
|
|
156
|
+
.command('todos [area]')
|
|
157
|
+
.description('List TODO items')
|
|
158
|
+
.action((area) => todosCmd({area}));
|
|
159
|
+
|
|
160
|
+
program
|
|
161
|
+
.command('debug <issue>')
|
|
162
|
+
.description('Debug a specific issue')
|
|
163
|
+
.action((issue) => debugCmd({issue}));
|
|
164
|
+
|
|
165
|
+
program
|
|
166
|
+
.command('update')
|
|
167
|
+
.description('Update REIS to latest version')
|
|
168
|
+
.action(() => {
|
|
169
|
+
console.log('Command coming soon in Phase 5-8');
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
program
|
|
173
|
+
.command('whats-new')
|
|
174
|
+
.description('Show what\'s new in latest version')
|
|
175
|
+
.action(() => {
|
|
176
|
+
console.log('Command coming soon in Phase 5-8');
|
|
177
|
+
});
|
|
178
|
+
|
|
179
|
+
program
|
|
180
|
+
.command('docs')
|
|
181
|
+
.description('Open REIS documentation')
|
|
182
|
+
.action(() => {
|
|
183
|
+
console.log('Command coming soon in Phase 5-8');
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
program
|
|
187
|
+
.command('uninstall')
|
|
188
|
+
.description('Uninstall REIS')
|
|
189
|
+
.action(() => {
|
|
190
|
+
console.log('Command coming soon in Phase 5-8');
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
// Default action (no command)
|
|
194
|
+
program.action(() => {
|
|
195
|
+
console.log('Run \'reis help\' for available commands');
|
|
196
|
+
});
|
|
197
|
+
|
|
198
|
+
// Parse command-line arguments
|
|
199
|
+
program.parse(process.argv);
|
|
200
|
+
|
|
201
|
+
// If no arguments provided, show default message
|
|
202
|
+
if (!process.argv.slice(2).length) {
|
|
203
|
+
console.log('Run \'reis help\' for available commands');
|
|
204
|
+
}
|
package/docs/.gitkeep
ADDED
|
File without changes
|