@orkestrel/scaffold 0.0.53 → 0.0.55
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 +2 -2
- package/dist/bin/main.js.map +1 -1
- package/dist/host/AGENTS.md +1 -0
- package/dist/host/agents/orchestration.md +6 -0
- package/dist/host/claude/agents/orkestrel.md +11 -10
- package/dist/host/claude/rules/architecture.md +11 -0
- package/dist/host/claude/rules/portability.md +98 -0
- package/dist/host/dotfiles/oxlintrc.json +1 -0
- package/dist/host/dotfiles/prettierignore +3 -0
- package/dist/host/guides/scaffold.md +19 -17
- package/dist/host/manifest.json +16 -10
- 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/policy.test.ts +84 -0
- package/dist/host/tests/setupPolicy.ts +540 -4
- package/dist/src/core/index.cjs +10 -10
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.js +10 -10
- package/dist/src/core/index.js.map +1 -1
- package/dist/src/server/index.cjs.map +1 -1
- package/dist/src/server/index.js.map +1 -1
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/scaffold",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"description": "Scaffold workspaces with five commands: new, audit, repair, catalog, and overwrite.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"audit",
|
|
@@ -81,7 +81,7 @@
|
|
|
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
83
|
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
84
|
-
"build": "npm run clean && npm run build:src && npm run build:host",
|
|
84
|
+
"build": "npm run clean && npm run build:src && npm run build:host && npm run build:inventory",
|
|
85
85
|
"build:src": "npm run build:src:core && npm run build:src:server && npm run build:src:bin",
|
|
86
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",
|
|
87
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",
|
|
@@ -92,23 +92,23 @@
|
|
|
92
92
|
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"@orkestrel/console": "^0.0.
|
|
95
|
+
"@orkestrel/console": "^0.0.11",
|
|
96
96
|
"@orkestrel/contract": "^0.0.13",
|
|
97
97
|
"@orkestrel/emitter": "^0.0.8",
|
|
98
|
-
"@orkestrel/markdown": "^0.0.
|
|
98
|
+
"@orkestrel/markdown": "^0.0.12",
|
|
99
99
|
"@orkestrel/process": "^0.0.6",
|
|
100
100
|
"@orkestrel/template": "^0.0.5"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
103
|
"@microsoft/api-extractor": "^7.59.0",
|
|
104
|
-
"@orkestrel/guide": "^0.0.
|
|
105
|
-
"@orkestrel/html": "^0.0.
|
|
106
|
-
"@orkestrel/probe": "^0.0.
|
|
104
|
+
"@orkestrel/guide": "^0.0.14",
|
|
105
|
+
"@orkestrel/html": "^0.0.7",
|
|
106
|
+
"@orkestrel/probe": "^0.0.9",
|
|
107
107
|
"@orkestrel/test": "^0.0.11",
|
|
108
|
-
"@types/node": "^26.
|
|
108
|
+
"@types/node": "^26.4.0",
|
|
109
109
|
"@vitest/browser-playwright": "^4.1.11",
|
|
110
|
-
"oxfmt": "^0.
|
|
111
|
-
"oxlint": "^1.
|
|
110
|
+
"oxfmt": "^0.65.0",
|
|
111
|
+
"oxlint": "^1.80.0",
|
|
112
112
|
"playwright": "^1.62.1",
|
|
113
113
|
"typescript": "^6.0.3",
|
|
114
114
|
"vite": "^8.2.2",
|