@orkestrel/scaffold 0.0.46 → 0.0.47
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/bin/main.js +179 -44
- package/dist/bin/main.js.map +1 -1
- package/dist/host/AGENTS.md +1 -0
- package/dist/host/agents/orchestration.md +3 -1
- package/dist/host/claude/agents/codex.md +4 -4
- package/dist/host/claude/agents/orkestrel.md +4 -4
- package/dist/host/claude/rules/documentation.md +2 -1
- package/dist/host/claude/rules/quality.md +3 -0
- package/dist/host/claude/rules/tests.md +19 -0
- package/dist/host/claude/rules/workspace.md +28 -21
- package/dist/host/claude/settings.json +781 -2
- package/dist/host/configs/policy.ts +167 -10
- package/dist/host/dotfiles/oxlintrc.json +9 -0
- package/dist/host/guides/scaffold.md +143 -44
- 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 +126 -11
- package/dist/host/tests/policy.test.ts +7 -0
- package/dist/host/tests/setupPolicy.ts +222 -8
- package/dist/src/core/index.cjs +420 -24
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +102 -9
- package/dist/src/core/index.d.ts +102 -9
- package/dist/src/core/index.js +416 -25
- package/dist/src/core/index.js.map +1 -1
- package/dist/src/server/index.cjs +41 -49
- package/dist/src/server/index.cjs.map +1 -1
- package/dist/src/server/index.d.cts +9 -8
- package/dist/src/server/index.d.ts +9 -8
- package/dist/src/server/index.js +42 -50
- package/dist/src/server/index.js.map +1 -1
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/scaffold",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.47",
|
|
4
4
|
"description": "Scaffold workspaces with five commands: new, audit, repair, catalog, and overwrite.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"audit",
|
|
@@ -80,35 +80,37 @@
|
|
|
80
80
|
"test:guides": "vitest run --config vite.config.ts --no-cache --reporter=dot --project guides",
|
|
81
81
|
"test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
|
|
82
82
|
"test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
|
|
83
|
+
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
83
84
|
"build": "npm run clean && npm run build:src && npm run build:host",
|
|
84
85
|
"build:src": "npm run build:src:core && npm run build:src:server && npm run build:src:bin",
|
|
85
86
|
"build:src:core": "vite build --config configs/src/vite.core.config.ts && npm run copy dist/src/core/index.d.ts dist/src/core/index.d.cts",
|
|
86
87
|
"build:src:server": "vite build --config configs/src/vite.server.config.ts && npm run copy dist/src/server/index.d.ts dist/src/server/index.d.cts",
|
|
87
88
|
"build:src:bin": "vite build --config configs/src/vite.bin.config.ts",
|
|
88
89
|
"build:host": "node -e \"import('./dist/src/server/index.js').then((m)=>{const n=m.stageHost(process.cwd(),'dist/host').length;console.log('build-host: staged '+n+' file(s) into dist/host')})\"",
|
|
90
|
+
"prepack": "npm run build",
|
|
89
91
|
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release"
|
|
90
92
|
},
|
|
91
93
|
"dependencies": {
|
|
92
94
|
"@orkestrel/console": "^0.0.9",
|
|
93
|
-
"@orkestrel/contract": "^0.0.
|
|
95
|
+
"@orkestrel/contract": "^0.0.13",
|
|
94
96
|
"@orkestrel/emitter": "^0.0.7",
|
|
95
97
|
"@orkestrel/markdown": "^0.0.9",
|
|
96
98
|
"@orkestrel/process": "^0.0.4",
|
|
97
99
|
"@orkestrel/template": "^0.0.4"
|
|
98
100
|
},
|
|
99
101
|
"devDependencies": {
|
|
100
|
-
"@microsoft/api-extractor": "^7.
|
|
102
|
+
"@microsoft/api-extractor": "^7.59.0",
|
|
101
103
|
"@orkestrel/guide": "^0.0.12",
|
|
102
104
|
"@orkestrel/html": "^0.0.4",
|
|
103
|
-
"@orkestrel/probe": "^0.0.
|
|
104
|
-
"@orkestrel/test": "^0.0.
|
|
105
|
+
"@orkestrel/probe": "^0.0.2",
|
|
106
|
+
"@orkestrel/test": "^0.0.8",
|
|
105
107
|
"@types/node": "^26.2.0",
|
|
106
108
|
"@vitest/browser-playwright": "^4.1.11",
|
|
107
109
|
"oxfmt": "^0.64.0",
|
|
108
110
|
"oxlint": "^1.79.0",
|
|
109
111
|
"playwright": "^1.62.1",
|
|
110
112
|
"typescript": "^6.0.3",
|
|
111
|
-
"vite": "
|
|
113
|
+
"vite": "^8.2.2",
|
|
112
114
|
"vite-plugin-dts": "^5.0.3",
|
|
113
115
|
"vitest": "^4.1.11"
|
|
114
116
|
},
|