@rasensio/aidlc 1.28.0 → 1.29.2
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/dist/change/parser.d.ts.map +1 -1
- package/dist/change/parser.js +21 -1
- package/dist/change/parser.js.map +1 -1
- package/dist/change/reopen.d.ts.map +1 -1
- package/dist/change/reopen.js +7 -1
- package/dist/change/reopen.js.map +1 -1
- package/dist/change/types.d.ts +13 -0
- package/dist/change/types.d.ts.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +2 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands/amend.js +5 -2
- package/dist/commands/amend.js.map +1 -1
- package/dist/commands/start.js +11 -2
- package/dist/commands/start.js.map +1 -1
- package/dist/commands/templates.d.ts +27 -0
- package/dist/commands/templates.d.ts.map +1 -0
- package/dist/commands/templates.js +163 -0
- package/dist/commands/templates.js.map +1 -0
- package/dist/commands/transition.d.ts +18 -0
- package/dist/commands/transition.d.ts.map +1 -1
- package/dist/commands/transition.js +88 -19
- package/dist/commands/transition.js.map +1 -1
- package/dist/concurrency/worktree.d.ts.map +1 -1
- package/dist/concurrency/worktree.js +17 -0
- package/dist/concurrency/worktree.js.map +1 -1
- package/dist/core/lifecycle.d.ts +30 -0
- package/dist/core/lifecycle.d.ts.map +1 -1
- package/dist/core/lifecycle.js +43 -0
- package/dist/core/lifecycle.js.map +1 -1
- package/dist/core/types.d.ts +11 -3
- package/dist/core/types.d.ts.map +1 -1
- package/dist/cost/hooks/arm.d.ts +16 -0
- package/dist/cost/hooks/arm.d.ts.map +1 -0
- package/dist/cost/hooks/arm.js +42 -0
- package/dist/cost/hooks/arm.js.map +1 -0
- package/dist/doctor/migrations/missing-cost-shim.d.ts +1 -1
- package/dist/doctor/migrations/missing-cost-shim.d.ts.map +1 -1
- package/dist/doctor/migrations/missing-cost-shim.js +4 -26
- package/dist/doctor/migrations/missing-cost-shim.js.map +1 -1
- package/dist/menu/roster.d.ts.map +1 -1
- package/dist/menu/roster.js +5 -0
- package/dist/menu/roster.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Arm the generated cost-capture shim when tracked hook configuration already
|
|
3
|
+
* points at it.
|
|
4
|
+
*
|
|
5
|
+
* Hook declarations are tracked, while `.aidlc/cost/capture.sh` is deliberately
|
|
6
|
+
* machine-local and gitignored. Fresh clones and worktrees therefore need this
|
|
7
|
+
* small bridge before the first session starts.
|
|
8
|
+
*/
|
|
9
|
+
import { hookPlatforms, hookStatusFor } from './registry.js';
|
|
10
|
+
import { cliEntryPath } from './entry.js';
|
|
11
|
+
import { shimProblem, writeShim } from './shim.js';
|
|
12
|
+
/*
|
|
13
|
+
* Static for the same reason the hook migrations use a fixed registry view:
|
|
14
|
+
* hook installation exists only for the platforms registered at module load.
|
|
15
|
+
*/
|
|
16
|
+
const HOOK_PLATFORMS = hookPlatforms().map((name) => ({
|
|
17
|
+
name,
|
|
18
|
+
status: (root) => hookStatusFor(name, root),
|
|
19
|
+
}));
|
|
20
|
+
/** Platforms whose tracked hook is armed against an unusable generated shim. */
|
|
21
|
+
export function platformsWithUnusableShim(projectRoot) {
|
|
22
|
+
if (shimProblem(projectRoot) === null)
|
|
23
|
+
return [];
|
|
24
|
+
return HOOK_PLATFORMS.filter((platform) => {
|
|
25
|
+
const status = platform.status(projectRoot);
|
|
26
|
+
return status.installed && !status.legacy;
|
|
27
|
+
}).map((platform) => platform.name);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Regenerate the shim only when a current hook is already armed against it.
|
|
31
|
+
* Returns the platforms repaired, or an empty list when no shim is needed.
|
|
32
|
+
*/
|
|
33
|
+
export function armCostCaptureShim(projectRoot) {
|
|
34
|
+
const affected = platformsWithUnusableShim(projectRoot);
|
|
35
|
+
if (affected.length === 0)
|
|
36
|
+
return [];
|
|
37
|
+
// Hints only. The shim validates both at run time and never trusts them to
|
|
38
|
+
// still exist, which is what lets it survive a node or machine change.
|
|
39
|
+
writeShim(projectRoot, process.execPath, cliEntryPath());
|
|
40
|
+
return affected;
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=arm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arm.js","sourceRoot":"","sources":["../../../src/cost/hooks/arm.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAOnD;;;GAGG;AACH,MAAM,cAAc,GAAmB,aAAa,EAAE,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;IACpE,IAAI;IACJ,MAAM,EAAE,CAAC,IAAY,EAAE,EAAE,CAAC,aAAa,CAAC,IAAI,EAAE,IAAI,CAAuC;CAC1F,CAAC,CAAC,CAAC;AAEJ,gFAAgF;AAChF,MAAM,UAAU,yBAAyB,CAAC,WAAmB;IAC3D,IAAI,WAAW,CAAC,WAAW,CAAC,KAAK,IAAI;QAAE,OAAO,EAAE,CAAC;IACjD,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,EAAE;QACxC,MAAM,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;QAC5C,OAAO,MAAM,CAAC,SAAS,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;IAC5C,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;AACtC,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,kBAAkB,CAAC,WAAmB;IACpD,MAAM,QAAQ,GAAG,yBAAyB,CAAC,WAAW,CAAC,CAAC;IACxD,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,EAAE,CAAC;IAErC,2EAA2E;IAC3E,uEAAuE;IACvE,SAAS,CAAC,WAAW,EAAE,OAAO,CAAC,QAAQ,EAAE,YAAY,EAAE,CAAC,CAAC;IACzD,OAAO,QAAQ,CAAC;AAClB,CAAC"}
|
|
@@ -35,6 +35,6 @@ import type { Migration } from '../types.js';
|
|
|
35
35
|
* their problem — `legacy-cost-hooks` re-installs those, which writes the shim as
|
|
36
36
|
* a side effect anyway.
|
|
37
37
|
*/
|
|
38
|
-
export
|
|
38
|
+
export { platformsWithUnusableShim } from '../../cost/hooks/arm.js';
|
|
39
39
|
export declare const missingCostShim: Migration;
|
|
40
40
|
//# sourceMappingURL=missing-cost-shim.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"missing-cost-shim.d.ts","sourceRoot":"","sources":["../../../src/doctor/migrations/missing-cost-shim.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;
|
|
1
|
+
{"version":3,"file":"missing-cost-shim.d.ts","sourceRoot":"","sources":["../../../src/doctor/migrations/missing-cost-shim.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAOH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE7C;;;;;;;GAOG;AACH,OAAO,EAAE,yBAAyB,EAAE,MAAM,yBAAyB,CAAC;AAEpE,eAAO,MAAM,eAAe,EAAE,SA+B7B,CAAC"}
|
|
@@ -26,21 +26,8 @@
|
|
|
26
26
|
* Self-clearing: once the shim exists and is executable, `shimProblem` returns
|
|
27
27
|
* null and this stops reporting without anyone editing state.
|
|
28
28
|
*/
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import { cliEntryPath } from '../../cost/hooks/entry.js';
|
|
32
|
-
import { describeShimProblem, shimProblem, writeShim } from '../../cost/hooks/shim.js';
|
|
33
|
-
import { hookPlatforms, hookStatusFor } from '../../cost/hooks/registry.js';
|
|
34
|
-
/*
|
|
35
|
-
* Static for the same reason `legacy-cost-hooks` is: allProviders() is only
|
|
36
|
-
* populated by an explicit registerBuiltinProviders() call, so a caller that has
|
|
37
|
-
* not made it sees an empty list and the migration silently finds nothing. Hook
|
|
38
|
-
* installation exists for these two platforms only.
|
|
39
|
-
*/
|
|
40
|
-
const HOOK_PLATFORMS = hookPlatforms().map((name) => ({
|
|
41
|
-
name,
|
|
42
|
-
status: (root) => hookStatusFor(name, root),
|
|
43
|
-
}));
|
|
29
|
+
import { armCostCaptureShim, platformsWithUnusableShim, } from '../../cost/hooks/arm.js';
|
|
30
|
+
import { describeShimProblem, shimProblem } from '../../cost/hooks/shim.js';
|
|
44
31
|
/**
|
|
45
32
|
* Platforms whose hook is armed against an unusable shim. Read-only half,
|
|
46
33
|
* exported for reuse and direct testing.
|
|
@@ -49,14 +36,7 @@ const HOOK_PLATFORMS = hookPlatforms().map((name) => ({
|
|
|
49
36
|
* their problem — `legacy-cost-hooks` re-installs those, which writes the shim as
|
|
50
37
|
* a side effect anyway.
|
|
51
38
|
*/
|
|
52
|
-
export
|
|
53
|
-
if (shimProblem(projectRoot) === null)
|
|
54
|
-
return [];
|
|
55
|
-
return HOOK_PLATFORMS.filter((p) => {
|
|
56
|
-
const s = p.status(projectRoot);
|
|
57
|
-
return s.installed && !s.legacy;
|
|
58
|
-
}).map((p) => p.name);
|
|
59
|
-
}
|
|
39
|
+
export { platformsWithUnusableShim } from '../../cost/hooks/arm.js';
|
|
60
40
|
export const missingCostShim = {
|
|
61
41
|
id: 'missing-cost-shim',
|
|
62
42
|
tier: 'safe',
|
|
@@ -77,9 +57,7 @@ export const missingCostShim = {
|
|
|
77
57
|
const affected = platformsWithUnusableShim(ctx.projectRoot);
|
|
78
58
|
if (affected.length === 0)
|
|
79
59
|
return { changed: false, summary: 'cost shim is usable' };
|
|
80
|
-
|
|
81
|
-
// still exist, which is what lets it survive a node or machine change.
|
|
82
|
-
writeShim(ctx.projectRoot, process.execPath, cliEntryPath());
|
|
60
|
+
armCostCaptureShim(ctx.projectRoot);
|
|
83
61
|
const remaining = shimProblem(ctx.projectRoot);
|
|
84
62
|
if (remaining !== null) {
|
|
85
63
|
return { changed: false, summary: `could not regenerate the cost shim: ${describeShimProblem(remaining)}` };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"missing-cost-shim.js","sourceRoot":"","sources":["../../../src/doctor/migrations/missing-cost-shim.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"missing-cost-shim.js","sourceRoot":"","sources":["../../../src/doctor/migrations/missing-cost-shim.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAEH,OAAO,EACL,kBAAkB,EAClB,yBAAyB,GAC1B,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAG5E;;;;;;;GAOG;AACH,OAAO,EAAE,yBAAyB,EAAE,MAAM,yBAAyB,CAAC;AAEpE,MAAM,CAAC,MAAM,eAAe,GAAc;IACxC,EAAE,EAAE,mBAAmB;IACvB,IAAI,EAAE,MAAM;IACZ,KAAK,CAAC,GAAG;QACP,MAAM,QAAQ,GAAG,yBAAyB,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;QAC5D,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC;YAAE,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;QACvE,MAAM,OAAO,GAAG,WAAW,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;QAC7C,OAAO;YACL,UAAU,EAAE,IAAI;YAChB,OAAO,EAAE,IAAI;YACb,WAAW,EACT,GAAG,mBAAmB,CAAC,OAAQ,CAAC,QAAQ,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG;gBACjE,OAAO,QAAQ,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,sBAAsB;gBACpE,2EAA2E;SAC9E,CAAC;IACJ,CAAC;IACD,KAAK,CAAC,GAAG;QACP,MAAM,QAAQ,GAAG,yBAAyB,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;QAC5D,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC;YAAE,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,qBAAqB,EAAE,CAAC;QAErF,kBAAkB,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;QAEpC,MAAM,SAAS,GAAG,WAAW,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;QAC/C,IAAI,SAAS,KAAK,IAAI,EAAE,CAAC;YACvB,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,uCAAuC,mBAAmB,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC;QAC9G,CAAC;QACD,OAAO;YACL,OAAO,EAAE,IAAI;YACb,OAAO,EAAE,0CAA0C,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;SACzE,CAAC;IACJ,CAAC;CACF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"roster.d.ts","sourceRoot":"","sources":["../../src/menu/roster.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,wEAAwE;AACxE,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,CAAC;AAE/E,MAAM,WAAW,SAAS;IACxB,gFAAgF;IAChF,QAAQ,CAAC,IAAI,EAAE,SAAS,MAAM,EAAE,CAAC;IACjC,0DAA0D;IAC1D,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC;IAC5B;;;OAGG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAC;CAC/B;AAED;;;GAGG;AACH,eAAO,MAAM,MAAM,EAAE,SAAS,SAAS,
|
|
1
|
+
{"version":3,"file":"roster.d.ts","sourceRoot":"","sources":["../../src/menu/roster.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,wEAAwE;AACxE,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,CAAC;AAE/E,MAAM,WAAW,SAAS;IACxB,gFAAgF;IAChF,QAAQ,CAAC,IAAI,EAAE,SAAS,MAAM,EAAE,CAAC;IACjC,0DAA0D;IAC1D,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC;IAC5B;;;OAGG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAC;CAC/B;AAED;;;GAGG;AACH,eAAO,MAAM,MAAM,EAAE,SAAS,SAAS,EAkBtC,CAAC;AAEF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CA2BvD,CAAC;AAEF,+EAA+E;AAC/E,eAAO,MAAM,YAAY,EAAE,SAAS,UAAU,EAM7C,CAAC"}
|
package/dist/menu/roster.js
CHANGED
|
@@ -27,6 +27,11 @@ export const ROSTER = [
|
|
|
27
27
|
{ path: ['discover'], bucket: 'begin', label: 'Explore the codebase' },
|
|
28
28
|
{ path: ['continue'], bucket: 'resume', label: 'Resume work' },
|
|
29
29
|
{ path: ['status'], bucket: 'inspect', label: 'Show progress' },
|
|
30
|
+
// Rostered, not excluded: bare `aidlc templates` lists, which is the exclusion
|
|
31
|
+
// criterion this file states — does the bare form do something useful, not is it
|
|
32
|
+
// a group. It reads no project state, so it is safe for the menu to offer in any
|
|
33
|
+
// project (first-run-gaps/AC-26).
|
|
34
|
+
{ path: ['templates'], bucket: 'inspect', label: 'Show workflow templates' },
|
|
30
35
|
{ path: ['cost'], bucket: 'inspect', label: 'Cost report' },
|
|
31
36
|
{ path: ['metrics'], bucket: 'inspect', label: 'Project metrics' },
|
|
32
37
|
{ path: ['knowledge', 'query'], bucket: 'inspect', label: 'Search project knowledge' },
|
package/dist/menu/roster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"roster.js","sourceRoot":"","sources":["../../src/menu/roster.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAkBH;;;GAGG;AACH,MAAM,CAAC,MAAM,MAAM,GAAyB;IAC1C,EAAE,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,8BAA8B,EAAE;IAC1E,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,mBAAmB,EAAE;IACjE,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,cAAc,EAAE;IAC5D,EAAE,IAAI,EAAE,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,gBAAgB,EAAE,aAAa,EAAE,IAAI,EAAE;IAClF,EAAE,IAAI,EAAE,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,sBAAsB,EAAE;IACtE,EAAE,IAAI,EAAE,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,EAAE;IAC9D,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,eAAe,EAAE;IAC/D,EAAE,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,aAAa,EAAE;IAC3D,EAAE,IAAI,EAAE,CAAC,SAAS,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,iBAAiB,EAAE;IAClE,EAAE,IAAI,EAAE,CAAC,WAAW,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,0BAA0B,EAAE;IACtF,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,oBAAoB,EAAE;IACpE,EAAE,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,0BAA0B,EAAE;CAC1E,CAAC;AAEF;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,UAAU,GAAqC;IAC1D,IAAI,EAAE,yDAAyD;IAC/D,UAAU,EAAE,kDAAkD;IAC9D,KAAK,EAAE,mCAAmC;IAC1C,OAAO,EAAE,mCAAmC;IAC5C,GAAG,EAAE,oEAAoE;IACzE,SAAS,EACP,qFAAqF;IACvF,KAAK,EAAE,mCAAmC;IAC1C,IAAI,EAAE,QAAQ;IACd,UAAU,EACR,8EAA8E;QAC9E,gFAAgF;QAChF,yEAAyE;QACzE,qEAAqE;IACvE,YAAY,EACV,kGAAkG;IACpG,OAAO,EACL,mFAAmF;QACnF,uFAAuF;QACvF,uFAAuF;QACvF,8FAA8F;IAChG,KAAK,EACH,2FAA2F;QAC3F,4FAA4F;QAC5F,8EAA8E;QAC9E,4BAA4B;CAC/B,CAAC;AAEF,+EAA+E;AAC/E,MAAM,CAAC,MAAM,YAAY,GAA0B;IACjD,OAAO;IACP,OAAO;IACP,QAAQ;IACR,SAAS;IACT,UAAU;CACX,CAAC"}
|
|
1
|
+
{"version":3,"file":"roster.js","sourceRoot":"","sources":["../../src/menu/roster.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAkBH;;;GAGG;AACH,MAAM,CAAC,MAAM,MAAM,GAAyB;IAC1C,EAAE,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,8BAA8B,EAAE;IAC1E,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,mBAAmB,EAAE;IACjE,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,cAAc,EAAE;IAC5D,EAAE,IAAI,EAAE,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,gBAAgB,EAAE,aAAa,EAAE,IAAI,EAAE;IAClF,EAAE,IAAI,EAAE,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,sBAAsB,EAAE;IACtE,EAAE,IAAI,EAAE,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,aAAa,EAAE;IAC9D,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,eAAe,EAAE;IAC/D,+EAA+E;IAC/E,iFAAiF;IACjF,iFAAiF;IACjF,kCAAkC;IAClC,EAAE,IAAI,EAAE,CAAC,WAAW,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,yBAAyB,EAAE;IAC5E,EAAE,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,aAAa,EAAE;IAC3D,EAAE,IAAI,EAAE,CAAC,SAAS,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,iBAAiB,EAAE;IAClE,EAAE,IAAI,EAAE,CAAC,WAAW,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,0BAA0B,EAAE;IACtF,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,EAAE,oBAAoB,EAAE;IACpE,EAAE,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,0BAA0B,EAAE;CAC1E,CAAC;AAEF;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,UAAU,GAAqC;IAC1D,IAAI,EAAE,yDAAyD;IAC/D,UAAU,EAAE,kDAAkD;IAC9D,KAAK,EAAE,mCAAmC;IAC1C,OAAO,EAAE,mCAAmC;IAC5C,GAAG,EAAE,oEAAoE;IACzE,SAAS,EACP,qFAAqF;IACvF,KAAK,EAAE,mCAAmC;IAC1C,IAAI,EAAE,QAAQ;IACd,UAAU,EACR,8EAA8E;QAC9E,gFAAgF;QAChF,yEAAyE;QACzE,qEAAqE;IACvE,YAAY,EACV,kGAAkG;IACpG,OAAO,EACL,mFAAmF;QACnF,uFAAuF;QACvF,uFAAuF;QACvF,8FAA8F;IAChG,KAAK,EACH,2FAA2F;QAC3F,4FAA4F;QAC5F,8EAA8E;QAC9E,4BAA4B;CAC/B,CAAC;AAEF,+EAA+E;AAC/E,MAAM,CAAC,MAAM,YAAY,GAA0B;IACjD,OAAO;IACP,OAAO;IACP,QAAQ;IACR,SAAS;IACT,UAAU;CACX,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rasensio/aidlc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.29.2",
|
|
4
4
|
"description": "AI Development Lifecycle Framework — structured lifecycle guidance for AI coding agents across platforms",
|
|
5
5
|
"homepage": "https://aidlc.rodrigoasensio.com",
|
|
6
6
|
"repository": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"commander": "15.0.0",
|
|
32
32
|
"picomatch": "4.0.5",
|
|
33
33
|
"yaml": "2.9.0",
|
|
34
|
-
"@rasensio/aidlc-content": "1.
|
|
34
|
+
"@rasensio/aidlc-content": "1.29.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "22.15.32",
|