@orkestrel/scaffold 0.0.19 → 0.0.21

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.
Files changed (31) hide show
  1. package/dist/bin/scaffold.js +15 -9
  2. package/dist/bin/scaffold.js.map +1 -1
  3. package/dist/host/CLAUDE.md +51 -24
  4. package/dist/host/agents/skills/orkestrel-debrief/SKILL.md +69 -59
  5. package/dist/host/agents/skills/orkestrel-debrief/references/field-testing.md +2 -2
  6. package/dist/host/agents/skills/orkestrel-debrief/references/instruction-audit.md +82 -0
  7. package/dist/host/claude/agents/application.md +34 -0
  8. package/dist/host/claude/agents/codex.md +7 -0
  9. package/dist/host/claude/agents/orkestrel.md +3 -3
  10. package/dist/host/claude/agents/researcher.md +31 -0
  11. package/dist/host/claude/agents/reviewer.md +5 -0
  12. package/dist/host/claude/agents/scout.md +25 -0
  13. package/dist/host/claude/rules/quality.md +10 -0
  14. package/dist/host/claude/rules/tests.md +10 -0
  15. package/dist/host/claude/skills/orkestrel-debrief/SKILL.md +1 -1
  16. package/dist/host/codex/agents/analyst.toml +5 -1
  17. package/dist/host/codex/agents/application.toml +23 -0
  18. package/dist/host/codex/agents/researcher.toml +22 -0
  19. package/dist/host/codex/agents/reviewer.toml +3 -1
  20. package/dist/host/codex/agents/scout.toml +18 -0
  21. package/dist/host/codex/config.toml +15 -6
  22. package/dist/host/guides/src/scaffold.md +120 -29
  23. package/dist/host/manifest.json +35 -0
  24. package/dist/host/tests/setupPolicy.ts +49 -11
  25. package/dist/src/core/index.cjs +1661 -856
  26. package/dist/src/core/index.cjs.map +1 -1
  27. package/dist/src/core/index.d.cts +84 -7
  28. package/dist/src/core/index.d.ts +84 -7
  29. package/dist/src/core/index.js +1656 -857
  30. package/dist/src/core/index.js.map +1 -1
  31. package/package.json +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/scaffold",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "description": "Blueprint-to-plan package scaffolding, auditing, dependency guide/version pulling, and fleet-wide shared-file upkeep for the @orkestrel line.",
5
5
  "keywords": [
6
6
  "audit",
@@ -75,7 +75,7 @@
75
75
  "format": "oxfmt --config .oxfmtrc.json --write .",
76
76
  "format:check": "oxfmt --config .oxfmtrc.json --check .",
77
77
  "lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
78
- "test": "npm run test:src && npm run test:policy && npm run test:guides",
78
+ "test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides",
79
79
  "test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:server --project src:bin",
80
80
  "test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
81
81
  "test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
@@ -83,6 +83,7 @@
83
83
  "test:integration": "vitest run --config vite.config.ts --no-cache --reporter=dot --project integration",
84
84
  "test:equivalence": "node -e \"const c=require('node:child_process'),p=process.env.npm_execpath;if(p===undefined)process.exit(1);const r=c.spawnSync(process.execPath,[p,'run','test:integration'],{stdio:'inherit',env:{...process.env,SCAFFOLD_BOUNDARY_EQUIVALENCE:'1'}});process.exit(r.status??1)\"",
85
85
  "test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
86
+ "test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
86
87
  "test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
87
88
  "pin": "vitest run --config vite.config.ts --no-cache --project src:core -t pinPlan -u",
88
89
  "build": "npm run clean && npm run build:src && npm run build:host",
@@ -104,6 +105,7 @@
104
105
  "devDependencies": {
105
106
  "@microsoft/api-extractor": "^7.58.12",
106
107
  "@orkestrel/guide": "^0.0.8",
108
+ "@orkestrel/html": "^0.0.2",
107
109
  "@types/node": "^26.1.2",
108
110
  "@vitest/browser-playwright": "^4.1.10",
109
111
  "oxfmt": "^0.62.0",