chatroom-cli 1.79.0 → 1.79.1
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.js +13 -1
- package/dist/index.js.map +6 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -77447,13 +77447,23 @@ ${getContextReadDisclosureComment(params)}`;
|
|
|
77447
77447
|
var CONTEXT_READ_DISCLOSURE_CHECKBOX = "- [ ] I confirm that I read the current chatroom task context using the command below and that the goal stated in that context has been met";
|
|
77448
77448
|
var init_context_disclosure = () => {};
|
|
77449
77449
|
|
|
77450
|
+
// ../../services/backend/prompts/utils/handoff-severity-guidance.ts
|
|
77451
|
+
function getHandoffSeverityGuidanceBlock() {
|
|
77452
|
+
return `<!-- Severity: prefix each Tech Debt and Unresolved Decision bullet with [high], [medium], or [low] -->
|
|
77453
|
+
- [high] <critical issue — blocks correctness, security, or release>
|
|
77454
|
+
- [medium] <meaningful debt — should address soon>
|
|
77455
|
+
- [low] <minor cleanup — nice to have>`;
|
|
77456
|
+
}
|
|
77457
|
+
|
|
77450
77458
|
// ../../services/backend/prompts/utils/unresolved-decisions.ts
|
|
77451
77459
|
function getUnresolvedDecisionsSectionBlock() {
|
|
77452
77460
|
return `## Unresolved Decisions
|
|
77453
77461
|
<!-- REQUIRED. List open decisions needing user input, or write "Not Applicable" if none. Do not omit this section. -->
|
|
77462
|
+
${getHandoffSeverityGuidanceBlock()}
|
|
77454
77463
|
- <decision or question — options considered, recommendation if any>
|
|
77455
77464
|
<Carry forward decisions still open from earlier handoffs in this chatroom. Remove items the user has resolved. Do not decide on the user's behalf unless they explicitly asked you to.>`;
|
|
77456
77465
|
}
|
|
77466
|
+
var init_unresolved_decisions = () => {};
|
|
77457
77467
|
|
|
77458
77468
|
// ../../services/backend/prompts/utils/handoff-report-template-body.ts
|
|
77459
77469
|
function getHandoffReportTemplateBody(roleGuidanceContext) {
|
|
@@ -77528,6 +77538,7 @@ flowchart TD
|
|
|
77528
77538
|
<handoff-action>
|
|
77529
77539
|
## Tech Debt Observed
|
|
77530
77540
|
<!-- REQUIRED. List tech debt, or write "Not Applicable". Do not omit this section. -->
|
|
77541
|
+
${getHandoffSeverityGuidanceBlock()}
|
|
77531
77542
|
- <issues noticed but intentionally left out of scope of this change>
|
|
77532
77543
|
|
|
77533
77544
|
${getUnresolvedDecisionsSectionBlock()}
|
|
@@ -77541,6 +77552,7 @@ var init_handoff_report_template_body = __esm(() => {
|
|
|
77541
77552
|
init_context_disclosure();
|
|
77542
77553
|
init_handoff_quality_principles();
|
|
77543
77554
|
init_role_guidance_disclosure();
|
|
77555
|
+
init_unresolved_decisions();
|
|
77544
77556
|
});
|
|
77545
77557
|
|
|
77546
77558
|
// ../../services/backend/prompts/teams/duo/handoff-templates/planner-to-user.ts
|
|
@@ -114151,4 +114163,4 @@ program2.hook("preAction", async (_thisCommand, actionCommand) => {
|
|
|
114151
114163
|
});
|
|
114152
114164
|
program2.parse();
|
|
114153
114165
|
|
|
114154
|
-
//# debugId=
|
|
114166
|
+
//# debugId=92971AEF28A493ED64756E2164756E21
|