@codeam/shared 2.61.95 → 2.61.97
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/index.d.mts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2506,7 +2506,9 @@ var PACK_REGISTRY = {
|
|
|
2506
2506
|
name: "Reviewer",
|
|
2507
2507
|
description: "Skeptical review in a fresh context \u2014 finds and fixes what the coder missed.",
|
|
2508
2508
|
skillIds: ["code-review", "code-naming"],
|
|
2509
|
-
prompt: REVIEWER_PROMPT
|
|
2509
|
+
prompt: REVIEWER_PROMPT,
|
|
2510
|
+
// Review-only: approving clean with no change is success, not a stall.
|
|
2511
|
+
requiresCommit: false
|
|
2510
2512
|
}
|
|
2511
2513
|
]
|
|
2512
2514
|
},
|
|
@@ -2535,7 +2537,9 @@ var PACK_REGISTRY = {
|
|
|
2535
2537
|
name: "Reviewer",
|
|
2536
2538
|
description: "Audits correctness, scope, design, and conventions with fresh eyes.",
|
|
2537
2539
|
skillIds: ["code-review", "code-naming"],
|
|
2538
|
-
prompt: REVIEWER_PROMPT
|
|
2540
|
+
prompt: REVIEWER_PROMPT,
|
|
2541
|
+
// Review-only: approving clean with no change is success, not a stall.
|
|
2542
|
+
requiresCommit: false
|
|
2539
2543
|
},
|
|
2540
2544
|
{
|
|
2541
2545
|
role: "qa",
|