@orkestrel/scaffold 0.0.48 → 0.0.50
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/README.md +4 -2
- package/dist/bin/main.js +427 -97
- package/dist/bin/main.js.map +1 -1
- package/dist/host/agents/orchestration.md +35 -3
- package/dist/host/agents/skills/orkestrel-falsify/SKILL.md +4 -0
- package/dist/host/claude/agents/orkestrel.md +44 -44
- package/dist/host/claude/rules/quality.md +4 -1
- package/dist/host/claude/rules/tests.md +6 -2
- package/dist/host/guides/scaffold.md +478 -161
- package/dist/host/manifest.json +217 -109
- 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/host/tests/config.test.ts +129 -6
- package/dist/src/core/index.cjs +1315 -82
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +265 -44
- package/dist/src/core/index.d.ts +265 -44
- package/dist/src/core/index.js +1308 -83
- package/dist/src/core/index.js.map +1 -1
- package/dist/src/server/index.cjs +816 -152
- package/dist/src/server/index.cjs.map +1 -1
- package/dist/src/server/index.d.cts +723 -391
- package/dist/src/server/index.d.ts +723 -391
- package/dist/src/server/index.js +812 -156
- package/dist/src/server/index.js.map +1 -1
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -55,8 +55,10 @@ npx scaffold repair
|
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
Restores each planned path the target is missing or has let drift, then re-audits. A file the
|
|
58
|
-
workspace owns — its
|
|
59
|
-
is
|
|
58
|
+
workspace owns — its source, its own proofs, its README — is written once at creation and is never
|
|
59
|
+
rewritten here. Two paths are not owned that way: `tests/distribution.test.ts` is restored when it
|
|
60
|
+
is absent and left alone when the workspace has replaced it, and the manifest's script region is
|
|
61
|
+
rewritten when its chain is the one scaffold generated and refused without a write when it is not.
|
|
60
62
|
|
|
61
63
|
### `catalog` — refresh the package table and the guide mirrors
|
|
62
64
|
|