chatroom-cli 1.57.1 → 1.57.2
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 +22 -3
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -75589,9 +75589,18 @@ function getPlannerToBuilderHandoffTemplate(nativeIntegration = false) {
|
|
|
75589
75589
|
**Detail bar:** Specify down to **every file** the builder will create or modify (full repo paths). Include code snippets — types, signatures, stubs, or target implementations — until a competent builder **cannot misinterpret** what to write. Vague layers ("update the backend", "fix the component") are not acceptable.
|
|
75590
75590
|
|
|
75591
75591
|
\`\`\`markdown
|
|
75592
|
+
## Summary
|
|
75593
|
+
<brief context for this delegation slice — what problem it solves and where it fits in the larger task>
|
|
75594
|
+
|
|
75592
75595
|
## Goal
|
|
75593
75596
|
<one sentence: the outcome this slice delivers>
|
|
75594
75597
|
|
|
75598
|
+
## Key Knowledge for High Quality Bar
|
|
75599
|
+
<details that would move the implementation from good to excellent and delightful — domain context, user expectations, edge cases, naming, UX polish, invariants the builder must preserve>
|
|
75600
|
+
|
|
75601
|
+
## Force Multipliers
|
|
75602
|
+
<choices that greatly simplify the solution while preserving long-term maintainability — reuse existing abstractions, avoid unnecessary layers, leverage platform conventions>
|
|
75603
|
+
|
|
75595
75604
|
## Files to implement (exhaustive, file-level)
|
|
75596
75605
|
List **every** file in this slice. For each file, state the exact change and paste the code the builder should match (no guessing).
|
|
75597
75606
|
|
|
@@ -75661,9 +75670,19 @@ function getPlannerToUserReportTemplate() {
|
|
|
75661
75670
|
## Summary
|
|
75662
75671
|
<what was accomplished, in plain terms — no references to prior messages>
|
|
75663
75672
|
|
|
75664
|
-
##
|
|
75673
|
+
## Template Disclosure Confirmation
|
|
75674
|
+
- [ ] I confirm that I have seen this template at the start of any planning, before working on or delegating any task to the team
|
|
75675
|
+
|
|
75676
|
+
## Proof of Principle
|
|
75677
|
+
<!-- Demonstrate adherence to:
|
|
75678
|
+
- Organization & Maintainability: a small change in requirements should result in a small change in code in a small number of files and folders.
|
|
75679
|
+
- Static Evaluability and Provability: the system's behavior should be provably correct by looking at the source code, then automated tests, then manual tests, in this order.
|
|
75680
|
+
-->
|
|
75681
|
+
<how this work follows the principles above — localized changes, readable structure, correctness provable from source then tests>
|
|
75682
|
+
|
|
75683
|
+
## Proof of Completion
|
|
75665
75684
|
- \`path/to/file.ts\` — <what changed and why>
|
|
75666
|
-
<list every file you (or the builder) modified
|
|
75685
|
+
<evidence the goal was met — list every file you (or the builder) modified>
|
|
75667
75686
|
|
|
75668
75687
|
## Key Technical Decisions
|
|
75669
75688
|
- <schema design, modules, interfaces, domain entities — what you chose and why, or "Not Applicable">
|
|
@@ -89665,4 +89684,4 @@ program2.hook("preAction", async (_thisCommand, actionCommand) => {
|
|
|
89665
89684
|
});
|
|
89666
89685
|
program2.parse();
|
|
89667
89686
|
|
|
89668
|
-
//# debugId=
|
|
89687
|
+
//# debugId=A1C383F59B3688B364756E2164756E21
|