@rasensio/aidlc 0.3.0 → 0.4.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/README.md +26 -0
- package/dist/commands/setup.d.ts.map +1 -1
- package/dist/commands/setup.js +82 -26
- package/dist/commands/setup.js.map +1 -1
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -232,6 +232,32 @@ Without this file, AIDLC defaults to Micro scope (Implementation + Testing only)
|
|
|
232
232
|
|
|
233
233
|
## Changelog
|
|
234
234
|
|
|
235
|
+
### 0.4.0 (2026-08-11)
|
|
236
|
+
|
|
237
|
+
**Features**
|
|
238
|
+
|
|
239
|
+
- add monorepo, service, and other project type options
|
|
240
|
+
|
|
241
|
+
### 0.3.3 (2026-08-11)
|
|
242
|
+
|
|
243
|
+
**Other**
|
|
244
|
+
|
|
245
|
+
- add dry-run mode feedback message
|
|
246
|
+
|
|
247
|
+
### 0.3.2 (2026-08-11)
|
|
248
|
+
|
|
249
|
+
**Other**
|
|
250
|
+
|
|
251
|
+
- add /release automation (conventional commits + changelog)
|
|
252
|
+
|
|
253
|
+
### 0.3.1
|
|
254
|
+
|
|
255
|
+
**Improved setup wizard UX**
|
|
256
|
+
|
|
257
|
+
- Every interactive prompt now includes a descriptive message explaining what it controls and why it matters.
|
|
258
|
+
- All options display contextual hints: project types explain the category, complexity shows which phases activate, platforms list the config file they generate, templates show the full phase flow, and scopes enumerate included phases.
|
|
259
|
+
- First-time users can now make informed choices without consulting external docs.
|
|
260
|
+
|
|
235
261
|
### 0.3.0
|
|
236
262
|
|
|
237
263
|
**First Activation (brownfield auto-discovery)**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAsLpC;;GAEG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAQpD"}
|
package/dist/commands/setup.js
CHANGED
|
@@ -22,14 +22,9 @@ import { join } from 'node:path';
|
|
|
22
22
|
import * as clack from '@clack/prompts';
|
|
23
23
|
import { computeSetup } from '../setup/setup-compute.js';
|
|
24
24
|
import { loadYaml, saveYaml } from '../state/yaml-helpers.js';
|
|
25
|
-
import { supportedPlatforms } from '../compile/adapters/index.js';
|
|
26
25
|
// ---------------------------------------------------------------------------
|
|
27
26
|
// Constants
|
|
28
27
|
// ---------------------------------------------------------------------------
|
|
29
|
-
const PROJECT_TYPES = ['web-app', 'library', 'cli', 'api'];
|
|
30
|
-
const COMPLEXITIES = ['simple', 'moderate', 'complex'];
|
|
31
|
-
const AVAILABLE_TEMPLATES = ['micro-task', 'full-feature', 'quick-feature', 'bugfix', 'spike'];
|
|
32
|
-
const AVAILABLE_SCOPES = ['full', 'standard', 'micro'];
|
|
33
28
|
/**
|
|
34
29
|
* Mapping from complexity to default scope and template (Req 21.5).
|
|
35
30
|
*/
|
|
@@ -68,49 +63,110 @@ async function collectInteractiveAnswers(existing) {
|
|
|
68
63
|
}
|
|
69
64
|
// Project type
|
|
70
65
|
const projectType = await clack.select({
|
|
71
|
-
message: '
|
|
72
|
-
options:
|
|
66
|
+
message: 'What kind of project is this?',
|
|
67
|
+
options: [
|
|
68
|
+
{ value: 'web-app', label: 'web-app', hint: 'Frontend or full-stack web application (React, Next.js, etc.)' },
|
|
69
|
+
{ value: 'api', label: 'api', hint: 'Backend service or REST/GraphQL API' },
|
|
70
|
+
{ value: 'cli', label: 'cli', hint: 'Command-line tool or terminal utility' },
|
|
71
|
+
{ value: 'library', label: 'library', hint: 'Reusable package or SDK consumed by other projects' },
|
|
72
|
+
{ value: 'service', label: 'service', hint: 'Background worker, MCP server, daemon, or long-running process' },
|
|
73
|
+
{ value: 'monorepo', label: 'monorepo', hint: 'Multiple packages/apps in one repo (apps, APIs, libraries, etc.)' },
|
|
74
|
+
{ value: 'other', label: 'other', hint: 'Something else — docs site, infra config, or anything not listed above' },
|
|
75
|
+
],
|
|
73
76
|
});
|
|
74
77
|
if (clack.isCancel(projectType))
|
|
75
78
|
return null;
|
|
76
79
|
// Complexity
|
|
77
80
|
const complexity = await clack.select({
|
|
78
|
-
message: '
|
|
79
|
-
options:
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
81
|
+
message: 'How complex is this project? (determines which lifecycle phases are used)',
|
|
82
|
+
options: [
|
|
83
|
+
{
|
|
84
|
+
value: 'simple',
|
|
85
|
+
label: 'simple',
|
|
86
|
+
hint: 'Small tasks — skip straight to implementation and testing',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
value: 'moderate',
|
|
90
|
+
label: 'moderate',
|
|
91
|
+
hint: 'Typical features — includes requirements, design, implementation, and testing',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
value: 'complex',
|
|
95
|
+
label: 'complex',
|
|
96
|
+
hint: 'Large features — full lifecycle from ideation through maintenance with review gates',
|
|
97
|
+
},
|
|
98
|
+
],
|
|
88
99
|
});
|
|
89
100
|
if (clack.isCancel(complexity))
|
|
90
101
|
return null;
|
|
91
102
|
// Platforms
|
|
92
103
|
const platforms = await clack.multiselect({
|
|
93
|
-
message: '
|
|
94
|
-
options:
|
|
95
|
-
value:
|
|
96
|
-
label:
|
|
97
|
-
|
|
104
|
+
message: 'Which AI coding platforms will you use? (generates config files for each)',
|
|
105
|
+
options: [
|
|
106
|
+
{ value: 'claude-code', label: 'claude-code', hint: 'Anthropic Claude Code (CLAUDE.md)' },
|
|
107
|
+
{ value: 'codex', label: 'codex', hint: 'OpenAI Codex CLI (AGENTS.md)' },
|
|
108
|
+
{ value: 'cursor', label: 'cursor', hint: 'Cursor IDE (.cursor/rules/)' },
|
|
109
|
+
{ value: 'kiro', label: 'kiro', hint: 'Kiro IDE (.kiro/steering/)' },
|
|
110
|
+
{ value: 'windsurf', label: 'windsurf', hint: 'Windsurf IDE (.windsurfrules)' },
|
|
111
|
+
],
|
|
98
112
|
required: false,
|
|
99
113
|
});
|
|
100
114
|
if (clack.isCancel(platforms))
|
|
101
115
|
return null;
|
|
102
116
|
// Default template
|
|
103
117
|
const template = await clack.select({
|
|
104
|
-
message: 'Default template:',
|
|
105
|
-
options:
|
|
118
|
+
message: 'Default workflow template (defines the phases and artifacts for each lifecycle run):',
|
|
119
|
+
options: [
|
|
120
|
+
{
|
|
121
|
+
value: 'micro-task',
|
|
122
|
+
label: 'micro-task',
|
|
123
|
+
hint: 'Minimal: implementation → testing only',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
value: 'quick-feature',
|
|
127
|
+
label: 'quick-feature',
|
|
128
|
+
hint: 'Standard: requirements → design → implementation → testing → deployment',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
value: 'full-feature',
|
|
132
|
+
label: 'full-feature',
|
|
133
|
+
hint: 'Complete: ideation through maintenance with adversarial review gates',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
value: 'bugfix',
|
|
137
|
+
label: 'bugfix',
|
|
138
|
+
hint: 'Bug fixes: reproduction → requirements → implementation → testing → deployment',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
value: 'spike',
|
|
142
|
+
label: 'spike',
|
|
143
|
+
hint: 'Research/exploration: ideation → findings documentation',
|
|
144
|
+
},
|
|
145
|
+
],
|
|
106
146
|
initialValue: COMPLEXITY_DEFAULTS[complexity]?.template ?? 'micro-task',
|
|
107
147
|
});
|
|
108
148
|
if (clack.isCancel(template))
|
|
109
149
|
return null;
|
|
110
150
|
// Default scope
|
|
111
151
|
const scope = await clack.select({
|
|
112
|
-
message: 'Default scope:',
|
|
113
|
-
options:
|
|
152
|
+
message: 'Default scope (controls how many lifecycle phases are active per run):',
|
|
153
|
+
options: [
|
|
154
|
+
{
|
|
155
|
+
value: 'full',
|
|
156
|
+
label: 'full',
|
|
157
|
+
hint: 'All phases enabled — ideation, requirements, design, implementation, testing, deployment, maintenance',
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
value: 'standard',
|
|
161
|
+
label: 'standard',
|
|
162
|
+
hint: 'Core phases — requirements, design, implementation, testing, deployment',
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
value: 'micro',
|
|
166
|
+
label: 'micro',
|
|
167
|
+
hint: 'Minimal — implementation and testing only (fastest)',
|
|
168
|
+
},
|
|
169
|
+
],
|
|
114
170
|
initialValue: COMPLEXITY_DEFAULTS[complexity]?.scope ?? 'micro',
|
|
115
171
|
});
|
|
116
172
|
if (clack.isCancel(scope))
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup.js","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AAExC,OAAO,EAAE,YAAY,EAAuC,MAAM,2BAA2B,CAAC;AAC9F,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"setup.js","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rasensio/aidlc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "AI Development Lifecycle Framework — structured lifecycle guidance for AI coding agents across platforms",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -16,9 +16,8 @@
|
|
|
16
16
|
"test:watch": "vitest",
|
|
17
17
|
"lint": "tsc --noEmit",
|
|
18
18
|
"prepublishOnly": "npm run build && npm test",
|
|
19
|
-
"release
|
|
20
|
-
"release:
|
|
21
|
-
"release:major": "npm version major && npm publish --access public && git push --follow-tags"
|
|
19
|
+
"release": "bash scripts/release.sh",
|
|
20
|
+
"release:dry": "bash scripts/release.sh --dry-run"
|
|
22
21
|
},
|
|
23
22
|
"keywords": [
|
|
24
23
|
"ai",
|