@nk070281sjv/cli 2.3.23 → 2.3.24

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 (2) hide show
  1. package/dist/index.js +6 -4
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -30775,7 +30775,7 @@ ${hint}
30775
30775
  }
30776
30776
 
30777
30777
  // src/lib/version.ts
30778
- var CLI_VERSION = true ? "2.3.23" : createRequire(import.meta.url)("../../package.json").version;
30778
+ var CLI_VERSION = true ? "2.3.24" : createRequire(import.meta.url)("../../package.json").version;
30779
30779
 
30780
30780
  // src/lib/deps.ts
30781
30781
  init_src();
@@ -38039,14 +38039,15 @@ async function reviewerPrompt(context, reviewer, promptPath, reviewPath, sharedP
38039
38039
  "- Use the review brief as the source of truth for changed files and scope.",
38040
38040
  "- Inspect surrounding source code only when needed to validate a finding.",
38041
38041
  "- Rank by concrete risk: data loss, wrong persisted state, broken public contract, security, production performance, then testability.",
38042
+ "- Persona focus areas are for detecting issues only; this output contract overrides any persona request to propose fixes or broad guidance.",
38042
38043
  "",
38043
38044
  "Output contract:",
38044
38045
  `- Return review markdown through stdout for ${reviewPath}.`,
38045
38046
  "- Return only one fenced ```ocr-json block and no prose outside it.",
38046
- "- Include maximum 10 findings, sorted by severity and production impact.",
38047
+ "- Include maximum 5 findings, sorted by severity and production impact.",
38047
38048
  "- No introductions, no progress narration, no endpoint tables, no code snippets, no broad summaries.",
38048
38049
  "- Include critical, high, and medium findings. Include low only when it has concrete runtime/user impact. Exclude info/style/theoretical-only items.",
38049
- "- Do not include fix instructions; aggregation and synthesis will produce fix direction after deduplication and validation.",
38050
+ "- Do not write fix instructions, suggested patches, implementation recipes, or remediation plans.",
38050
38051
  "- Exclude any item that does not have concrete `files` and `evidence`.",
38051
38052
  "- Do not write files directly.",
38052
38053
  "- Do not claim skipped agents ran.",
@@ -38072,7 +38073,8 @@ async function reviewerPrompt(context, reviewer, promptPath, reviewPath, sharedP
38072
38073
  "",
38073
38074
  '- `sev` must be one of: "critical", "high", "medium", "low".',
38074
38075
  '- `confidence` must be one of: "high", "medium", "low".',
38075
- "- Keep every string under roughly 240 characters.",
38076
+ "- Keep title/claim/impact under roughly 180 characters each.",
38077
+ "- Keep evidence under roughly 260 characters and cite only the strongest code signal.",
38076
38078
  "",
38077
38079
  "Forbidden behavior:",
38078
38080
  `- Do not modify ${promptPath} or ${reviewPath}.`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nk070281sjv/cli",
3
- "version": "2.3.23",
3
+ "version": "2.3.24",
4
4
  "description": "CLI for Open Code Review - Multi-environment setup and progress tracking",
5
5
  "type": "module",
6
6
  "bin": {
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@inquirer/prompts": "^7.2.0",
40
- "@nk070281sjv/agents": "2.3.23",
40
+ "@nk070281sjv/agents": "2.3.24",
41
41
  "chalk": "^5.4.1",
42
42
  "chokidar": "^4.0.3",
43
43
  "commander": "^13.0.0",