@orkestrel/scaffold 0.0.36 → 0.0.37
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/host/agents/skills/orkestrel-human-journey/SKILL.md +9 -1
- package/dist/host/scripts/codex.sh +0 -0
- package/dist/host/scripts/cursor.sh +0 -0
- package/dist/host/scripts/deps.sh +0 -0
- package/dist/host/scripts/ollama.sh +0 -0
- package/dist/src/core/index.cjs +1 -1
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.js +1 -1
- package/dist/src/core/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -40,6 +40,8 @@ Read the current files in this order:
|
|
|
40
40
|
6. **Commit a value through an act a person performs:** Enter, Tab away, or a named button. Report a
|
|
41
41
|
surface that commits on a timer, on an unpredictable event, or only after work the person cannot
|
|
42
42
|
observe as a surface finding, and never work around it in the layer.
|
|
43
|
+
7. **Type only what a person would.** Journeys carry trusted input; adversarial payloads belong to
|
|
44
|
+
the transport family and the parser suites.
|
|
43
45
|
|
|
44
46
|
## Build or verify the journey layer
|
|
45
47
|
|
|
@@ -66,7 +68,10 @@ placement and scope `.claude/rules/tests.md` fixes.
|
|
|
66
68
|
- Type keystroke by keystroke where the keystrokes are the subject; fill in one operation where the
|
|
67
69
|
text is only a payload the person pastes.
|
|
68
70
|
- Poll every fact the application produces asynchronously until it converges. Never assert one from
|
|
69
|
-
a single read after the action.
|
|
71
|
+
a single read after the action. A poll's predicate must be able to go false-to-true after the
|
|
72
|
+
action it observes; a predicate already true when the poll starts binds nothing.
|
|
73
|
+
- Assert the state the flow must reach, never the transient path taken to it. A criterion that bans
|
|
74
|
+
a harmless transient over-refuses and breaks on the next honest implementation.
|
|
70
75
|
- Assert the negative beside the positive whenever a value replaces another: the new sentence is
|
|
71
76
|
present **and** the old one is gone.
|
|
72
77
|
- After a confirmed destructive action, assert through trusted input that focus landed on a visible,
|
|
@@ -104,6 +109,9 @@ Follow [captures.md](references/captures.md) for the state registry and its plac
|
|
|
104
109
|
theme-and-viewport variant matrix, the always-on filename proof, the capture-run membership proof,
|
|
105
110
|
and how a state that exists only during an activation is captured.
|
|
106
111
|
|
|
112
|
+
When a capture and a green suite disagree, the capture is the evidence and the fixture is the
|
|
113
|
+
defect.
|
|
114
|
+
|
|
107
115
|
Route review of the portfolio to the `orkestrel-polish-surface` campaign. Do not judge it here.
|
|
108
116
|
|
|
109
117
|
## Accept
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/src/core/index.cjs
CHANGED
|
@@ -305,7 +305,7 @@ var DEFAULT_ENGINES = `>=${MINIMUM_NODE_VERSION}`;
|
|
|
305
305
|
/** The tooling versions scaffold and every generated workspace share. */
|
|
306
306
|
var BASE_DEV_DEPENDENCIES = Object.freeze({
|
|
307
307
|
"@orkestrel/guide": "^0.0.11",
|
|
308
|
-
"@orkestrel/scaffold": "^0.0.
|
|
308
|
+
"@orkestrel/scaffold": "^0.0.37",
|
|
309
309
|
"@orkestrel/test": "^0.0.3",
|
|
310
310
|
"@types/node": "^26.2.0",
|
|
311
311
|
oxfmt: "^0.62.0",
|