@jakkrichm/create-nexus-devflow 2.10.2 → 2.11.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.
Files changed (52) hide show
  1. package/dist/lib/project-config.js +2 -2
  2. package/dist/lib/project-config.js.map +1 -1
  3. package/dist/lib/skill-manager.js +19 -14
  4. package/dist/lib/skill-manager.js.map +1 -1
  5. package/package.json +1 -1
  6. package/template/.agents/skills/adopt/SKILL.md +1 -1
  7. package/template/.agents/skills/audit/SKILL.md +1 -1
  8. package/template/.agents/skills/autopilot/SKILL.md +1 -1
  9. package/template/.agents/skills/brief/SKILL.md +1 -1
  10. package/template/.agents/skills/bughunter/SKILL.md +18 -13
  11. package/template/.agents/skills/check/SKILL.md +1 -1
  12. package/template/.agents/skills/ci/SKILL.md +1 -1
  13. package/template/.agents/skills/debug/SKILL.md +1 -1
  14. package/template/.agents/skills/doctor/SKILL.md +4 -1
  15. package/template/.agents/skills/feature/SKILL.md +8 -4
  16. package/template/.agents/skills/fix/SKILL.md +1 -1
  17. package/template/.agents/skills/implement/SKILL.md +1 -1
  18. package/template/.agents/skills/onboard/SKILL.md +30 -3
  19. package/template/.agents/skills/overview/SKILL.md +69 -1
  20. package/template/.agents/skills/prototype/SKILL.md +1 -1
  21. package/template/.agents/skills/release/SKILL.md +1 -1
  22. package/template/.agents/skills/rollback/SKILL.md +1 -1
  23. package/template/.agents/skills/setup-tests/SKILL.md +1 -1
  24. package/template/.agents/skills/try/SKILL.md +1 -1
  25. package/template/.claude/skills/adopt/SKILL.md +1 -1
  26. package/template/.claude/skills/audit/SKILL.md +1 -1
  27. package/template/.claude/skills/autopilot/SKILL.md +1 -1
  28. package/template/.claude/skills/brief/SKILL.md +1 -1
  29. package/template/.claude/skills/bughunter/SKILL.md +18 -13
  30. package/template/.claude/skills/check/SKILL.md +1 -1
  31. package/template/.claude/skills/ci/SKILL.md +1 -1
  32. package/template/.claude/skills/debug/SKILL.md +1 -1
  33. package/template/.claude/skills/discovery/SKILL.md +3 -3
  34. package/template/.claude/skills/doctor/SKILL.md +4 -2
  35. package/template/.claude/skills/feature/SKILL.md +8 -4
  36. package/template/.claude/skills/fix/SKILL.md +1 -1
  37. package/template/.claude/skills/implement/SKILL.md +1 -1
  38. package/template/.claude/skills/onboard/SKILL.md +30 -3
  39. package/template/.claude/skills/overview/SKILL.md +69 -1
  40. package/template/.claude/skills/prototype/SKILL.md +1 -1
  41. package/template/.claude/skills/release/SKILL.md +1 -1
  42. package/template/.claude/skills/rollback/SKILL.md +1 -1
  43. package/template/.claude/skills/setup-tests/SKILL.md +1 -1
  44. package/template/.claude/skills/try/SKILL.md +1 -1
  45. package/template/AGENTS.md +2 -0
  46. package/template/CLAUDE.md +2 -1
  47. package/template/devflow/build-plan.md +18 -0
  48. package/template/devflow/config.json +2 -2
  49. package/template/devflow/context/ai-interaction.md +5 -0
  50. package/dist/lib/ide-extension.d.ts +0 -38
  51. package/dist/lib/ide-extension.js +0 -61
  52. package/dist/lib/ide-extension.js.map +0 -1
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "workflow": {
4
- "stepReview": "every",
5
- "checkpointCommits": "enabled"
4
+ "stepReview": "feature",
5
+ "checkpointCommits": "disabled"
6
6
  },
7
7
  "git": {
8
8
  "featureBranchPrefix": "feature/",
@@ -106,6 +106,11 @@ During `/check`:
106
106
  - **Stage 1 (Spec Fidelity Gate)**: Report each Acceptance Criterion and "Done When" status.
107
107
  - **Stage 2 (Code Quality & Security Gate)**: Report Typecheck, Lint, Test Suites, Security checks, and Findings Ledger (0 blockers).
108
108
 
109
+ ### ⚡ Review Cadence & Implementation Loop
110
+ - **Efficient Default (`stepReview: "feature"`)**: Presents one comprehensive review packet after all implementation steps of the feature complete, with step checkpoint commits disabled (`checkpointCommits: "disabled"`). This minimizes review fatigue and saves context window tokens.
111
+ - **Guided Review (`stepReview: "every"`)**: Available for high-risk changes, pair programming, or instructional sessions. Pauses for user approval after each small step and offers checkpoint commits (`checkpointCommits: "enabled"`).
112
+ - **Configuration**: Managed directly in `devflow/config.json`.
113
+
109
114
  ---
110
115
 
111
116
  ## 5. Standalone HTML Reporting Policy
@@ -1,38 +0,0 @@
1
- export interface IdeExtensionManifest {
2
- name: string;
3
- displayName: string;
4
- description: string;
5
- version: string;
6
- publisher: string;
7
- engines: {
8
- vscode: string;
9
- };
10
- categories: string[];
11
- activationEvents: string[];
12
- main: string;
13
- contributes: {
14
- viewsContainers: {
15
- activitybar: Array<{
16
- id: string;
17
- title: string;
18
- icon: string;
19
- }>;
20
- };
21
- views: {
22
- [containerId: string]: Array<{
23
- type: string;
24
- id: string;
25
- name: string;
26
- }>;
27
- };
28
- commands: Array<{
29
- command: string;
30
- title: string;
31
- category: string;
32
- }>;
33
- };
34
- }
35
- /**
36
- * Generates the official VS Code / Antigravity IDE Extension package.json manifest.
37
- */
38
- export declare function generateIdeExtensionManifest(): IdeExtensionManifest;
@@ -1,61 +0,0 @@
1
- /**
2
- * Generates the official VS Code / Antigravity IDE Extension package.json manifest.
3
- */
4
- export function generateIdeExtensionManifest() {
5
- return {
6
- name: "nexus-devflow-studio",
7
- displayName: "Nexus-DevFlow Studio",
8
- description: "Interactive 3-Pillars Kanban Dashboard, Dynamic Spec Manager & Quality Gatekeeper for Nexus-DevFlow",
9
- version: "2.0.27",
10
- publisher: "jakkrichm",
11
- engines: {
12
- vscode: "^1.80.0"
13
- },
14
- categories: ["Programming Languages", "Other", "Linters"],
15
- activationEvents: ["onView:nexusDevFlowStudioView", "onCommand:nexusDevFlow.openStudio"],
16
- main: "./out/extension.js",
17
- contributes: {
18
- viewsContainers: {
19
- activitybar: [
20
- {
21
- id: "nexus-devflow-container",
22
- title: "Nexus-DevFlow",
23
- icon: "resources/devflow-icon.svg"
24
- }
25
- ]
26
- },
27
- views: {
28
- "nexus-devflow-container": [
29
- {
30
- type: "webview",
31
- id: "nexusDevFlowStudioView",
32
- name: "DevFlow Studio"
33
- }
34
- ]
35
- },
36
- commands: [
37
- {
38
- command: "nexusDevFlow.openStudio",
39
- title: "Open DevFlow Studio Webview",
40
- category: "Nexus-DevFlow"
41
- },
42
- {
43
- command: "nexusDevFlow.checkGate",
44
- title: "Run Quality Gatekeeper Check",
45
- category: "Nexus-DevFlow"
46
- },
47
- {
48
- command: "nexusDevFlow.detectDrift",
49
- title: "Detect Git Diff Drift",
50
- category: "Nexus-DevFlow"
51
- },
52
- {
53
- command: "nexusDevFlow.reconcileState",
54
- title: "Auto-Heal & Reconcile State",
55
- category: "Nexus-DevFlow"
56
- }
57
- ]
58
- }
59
- };
60
- }
61
- //# sourceMappingURL=ide-extension.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ide-extension.js","sourceRoot":"","sources":["../../lib/ide-extension.ts"],"names":[],"mappings":"AAmCA;;GAEG;AACH,MAAM,UAAU,4BAA4B;IAC1C,OAAO;QACL,IAAI,EAAE,sBAAsB;QAC5B,WAAW,EAAE,sBAAsB;QACnC,WAAW,EAAE,qGAAqG;QAClH,OAAO,EAAE,QAAQ;QACjB,SAAS,EAAE,WAAW;QACtB,OAAO,EAAE;YACP,MAAM,EAAE,SAAS;SAClB;QACD,UAAU,EAAE,CAAC,uBAAuB,EAAE,OAAO,EAAE,SAAS,CAAC;QACzD,gBAAgB,EAAE,CAAC,+BAA+B,EAAE,mCAAmC,CAAC;QACxF,IAAI,EAAE,oBAAoB;QAC1B,WAAW,EAAE;YACX,eAAe,EAAE;gBACf,WAAW,EAAE;oBACX;wBACE,EAAE,EAAE,yBAAyB;wBAC7B,KAAK,EAAE,eAAe;wBACtB,IAAI,EAAE,4BAA4B;qBACnC;iBACF;aACF;YACD,KAAK,EAAE;gBACL,yBAAyB,EAAE;oBACzB;wBACE,IAAI,EAAE,SAAS;wBACf,EAAE,EAAE,wBAAwB;wBAC5B,IAAI,EAAE,gBAAgB;qBACvB;iBACF;aACF;YACD,QAAQ,EAAE;gBACR;oBACE,OAAO,EAAE,yBAAyB;oBAClC,KAAK,EAAE,6BAA6B;oBACpC,QAAQ,EAAE,eAAe;iBAC1B;gBACD;oBACE,OAAO,EAAE,wBAAwB;oBACjC,KAAK,EAAE,8BAA8B;oBACrC,QAAQ,EAAE,eAAe;iBAC1B;gBACD;oBACE,OAAO,EAAE,0BAA0B;oBACnC,KAAK,EAAE,uBAAuB;oBAC9B,QAAQ,EAAE,eAAe;iBAC1B;gBACD;oBACE,OAAO,EAAE,6BAA6B;oBACtC,KAAK,EAAE,6BAA6B;oBACpC,QAAQ,EAAE,eAAe;iBAC1B;aACF;SACF;KACF,CAAC;AACJ,CAAC"}