vibe-coding-master 0.6.8 → 0.6.10

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.
@@ -1406,12 +1406,9 @@ function normalizeClaudePermissionMode(value) {
1406
1406
  return "default";
1407
1407
  }
1408
1408
  function normalizeClaudeModel(value) {
1409
- if (value === "best"
1410
- || value === "fable"
1411
- || value === "opus"
1412
- || value === "opus[1m]"
1413
- || value === "claude-opus-4-8"
1414
- || value === "claude-opus-4-8[1m]") {
1409
+ if (value === "opus"
1410
+ || value === "sonnet"
1411
+ || value === "fable") {
1415
1412
  return value;
1416
1413
  }
1417
1414
  return "default";
@@ -68,8 +68,10 @@ export function renderArchitectHarnessRules() {
68
68
  - Remove temporary diagnostics before completion.
69
69
  - If the fix exceeds those limits, return a normal architecture plan with root cause, evidence, affected scope, and Replan triggers.
70
70
  - Architect-run validation in Debug Mode is diagnostic evidence, not final acceptance.
71
+ - Before handing off an architect-completed Debug Mode fix, run the smallest relevant L0 fast checks for the touched files or changed modules: format, lint, typecheck, boundary, dependency, or project-defined equivalents. If a check cannot run, report the exact reason.
72
+ - If the Debug Mode fix changes module structure, source/test file lists, public APIs, routes, exports, re-exports, or other externally consumed surface, run \`.ai/tools/generate-module-index\` / \`.ai/tools/generate-public-surface\` or their \`--check\` mode as applicable.
71
73
  - After an architect-completed debug fix, route to reviewer for independent final validation before project-manager final acceptance.
72
- - Report root cause, changed files, production-code changed line count, validation run, and final disposition.
74
+ - Report root cause, changed files, production-code changed line count, L0 checks run or skipped with reason, generated-context regeneration or freshness check when applicable, diagnostic validation run, and final disposition.
73
75
 
74
76
  ### Replan And Drift
75
77
 
@@ -21,35 +21,20 @@ export const CLAUDE_MODEL_OPTIONS = [
21
21
  label: "Default",
22
22
  description: "Account default"
23
23
  },
24
- {
25
- value: "best",
26
- label: "Best",
27
- description: "Fable 5 or latest Opus"
28
- },
29
24
  {
30
25
  value: "fable",
31
- label: "Fable 5",
32
- description: "1M context, v2.1.170+"
26
+ label: "Fable",
27
+ description: "Claude Fable"
33
28
  },
34
29
  {
35
30
  value: "opus",
36
31
  label: "Opus",
37
- description: "latest Opus"
38
- },
39
- {
40
- value: "opus[1m]",
41
- label: "Opus 1M",
42
- description: "Force 1M context"
43
- },
44
- {
45
- value: "claude-opus-4-8",
46
- label: "Opus 4.8",
47
- description: "Current Opus"
32
+ description: "Latest Opus"
48
33
  },
49
34
  {
50
- value: "claude-opus-4-8[1m]",
51
- label: "Opus 4.8 1M",
52
- description: "Opus 4.8 + 1M context"
35
+ value: "sonnet",
36
+ label: "Sonnet",
37
+ description: "Latest Sonnet"
53
38
  }
54
39
  ];
55
40
  const BASE_EFFORT_OPTIONS = [