create-majlis 0.8.0 → 0.8.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 +14 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -99,7 +99,7 @@ Read source code at the specific locations relevant to your change. Do NOT
|
|
|
99
99
|
read the entire codebase or run diagnostic Python scripts. If the synthesis
|
|
100
100
|
says "lines 1921-22" then read those lines and their context. That's it.
|
|
101
101
|
|
|
102
|
-
Do NOT read raw data files (fixtures/, ground truth
|
|
102
|
+
Do NOT read raw data files (fixtures/, ground truth, test data). The synthesis
|
|
103
103
|
has the relevant facts. Reading raw data wastes turns re-deriving what the
|
|
104
104
|
doubt/challenge/verify cycle already established.
|
|
105
105
|
|
|
@@ -138,7 +138,7 @@ Do NOT iterate. Do NOT "try one more thing." The adversary, critic, and verifier
|
|
|
138
138
|
exist to diagnose what went wrong. The cycle comes back to you with their insights.
|
|
139
139
|
|
|
140
140
|
## Off-limits (DO NOT modify)
|
|
141
|
-
- \`fixtures/\` \u2014 test data, ground truth,
|
|
141
|
+
- \`fixtures/\` \u2014 test data, ground truth, reference outputs. Read-only.
|
|
142
142
|
- \`scripts/benchmark.py\` \u2014 the measurement tool. Never change how you're measured.
|
|
143
143
|
- \`.majlis/\` \u2014 framework config. Not your concern.
|
|
144
144
|
|
|
@@ -403,15 +403,20 @@ the database export.
|
|
|
403
403
|
2. Read docs/ files for narrative context, but trust the database when they conflict.
|
|
404
404
|
3. Cross-reference: same question in different language? contradicting decisions?
|
|
405
405
|
workaround masking root cause?
|
|
406
|
-
4.
|
|
406
|
+
4. **VERIFY before claiming code is live.** Dead-ended experiments are REVERTED \u2014
|
|
407
|
+
their code changes do NOT exist on the current branch. Before writing that code
|
|
408
|
+
is "live", "shipping", or "regressing", use Grep/Glob to confirm it actually
|
|
409
|
+
exists in the current codebase. If the code only existed on experiment branches,
|
|
410
|
+
say so explicitly and mark the issue as RESOLVED, not CRITICAL.
|
|
411
|
+
5. Update fragility map: thin coverage, weak components, untested judgment
|
|
407
412
|
decisions, broken provenance.
|
|
408
|
-
|
|
413
|
+
6. Update dead-end registry: compress rejected experiments into structural constraints.
|
|
409
414
|
Mark each dead-end as [structural] or [procedural].
|
|
410
|
-
|
|
415
|
+
7. REWRITE synthesis using the Write tool \u2014 shorter and denser. If it's growing,
|
|
411
416
|
you're accumulating, not compressing. You MUST use the Write tool to update
|
|
412
417
|
docs/synthesis/current.md, docs/synthesis/fragility.md, and docs/synthesis/dead-ends.md.
|
|
413
418
|
The framework does NOT auto-save your output for these files.
|
|
414
|
-
|
|
419
|
+
8. Review classification: new sub-types? resolved sub-types?
|
|
415
420
|
|
|
416
421
|
You may ONLY write to these three files:
|
|
417
422
|
- docs/synthesis/current.md
|
|
@@ -716,9 +721,9 @@ falsifiable structural constraint that blocks future experiments from repeating
|
|
|
716
721
|
## Constraint Quality
|
|
717
722
|
|
|
718
723
|
Good constraints are specific and block future repetition:
|
|
719
|
-
- "
|
|
720
|
-
- "Relaxing
|
|
721
|
-
- "
|
|
724
|
+
- "Binary search fallback in sortedMerge() is O(n log n) worst-case when input contains >40% duplicates \u2014 measured via 13-run sweep, ceiling 0.67x baseline"
|
|
725
|
+
- "Relaxing the pruning threshold in recursiveSplit() causes false positives on sparse inputs (accuracy 95->72.5%)"
|
|
726
|
+
- "Cyclic dependency in the module graph prevents topological sort \u2014 requires at least one back-edge cut"
|
|
722
727
|
|
|
723
728
|
Bad constraints are vague and useless:
|
|
724
729
|
- "Didn't work"
|