@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/dist/src/core/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { fillTemplate } from "@orkestrel/template";
|
|
|
3
3
|
import { Emitter } from "@orkestrel/emitter";
|
|
4
4
|
var package_default = {
|
|
5
5
|
name: "@orkestrel/scaffold",
|
|
6
|
-
version: "0.0.
|
|
6
|
+
version: "0.0.55",
|
|
7
7
|
description: "Scaffold workspaces with five commands: new, audit, repair, catalog, and overwrite.",
|
|
8
8
|
keywords: [
|
|
9
9
|
"audit",
|
|
@@ -77,7 +77,7 @@ var package_default = {
|
|
|
77
77
|
"test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
|
|
78
78
|
"test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
|
|
79
79
|
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
80
|
-
"build": "npm run clean && npm run build:src && npm run build:host",
|
|
80
|
+
"build": "npm run clean && npm run build:src && npm run build:host && npm run build:inventory",
|
|
81
81
|
"build:src": "npm run build:src:core && npm run build:src:server && npm run build:src:bin",
|
|
82
82
|
"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",
|
|
83
83
|
"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",
|
|
@@ -88,23 +88,23 @@ var package_default = {
|
|
|
88
88
|
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release"
|
|
89
89
|
},
|
|
90
90
|
dependencies: {
|
|
91
|
-
"@orkestrel/console": "^0.0.
|
|
91
|
+
"@orkestrel/console": "^0.0.11",
|
|
92
92
|
"@orkestrel/contract": "^0.0.13",
|
|
93
93
|
"@orkestrel/emitter": "^0.0.8",
|
|
94
|
-
"@orkestrel/markdown": "^0.0.
|
|
94
|
+
"@orkestrel/markdown": "^0.0.12",
|
|
95
95
|
"@orkestrel/process": "^0.0.6",
|
|
96
96
|
"@orkestrel/template": "^0.0.5"
|
|
97
97
|
},
|
|
98
98
|
devDependencies: {
|
|
99
99
|
"@microsoft/api-extractor": "^7.59.0",
|
|
100
|
-
"@orkestrel/guide": "^0.0.
|
|
101
|
-
"@orkestrel/html": "^0.0.
|
|
102
|
-
"@orkestrel/probe": "^0.0.
|
|
100
|
+
"@orkestrel/guide": "^0.0.14",
|
|
101
|
+
"@orkestrel/html": "^0.0.7",
|
|
102
|
+
"@orkestrel/probe": "^0.0.9",
|
|
103
103
|
"@orkestrel/test": "^0.0.11",
|
|
104
|
-
"@types/node": "^26.
|
|
104
|
+
"@types/node": "^26.4.0",
|
|
105
105
|
"@vitest/browser-playwright": "^4.1.11",
|
|
106
|
-
"oxfmt": "^0.
|
|
107
|
-
"oxlint": "^1.
|
|
106
|
+
"oxfmt": "^0.65.0",
|
|
107
|
+
"oxlint": "^1.80.0",
|
|
108
108
|
"playwright": "^1.62.1",
|
|
109
109
|
"typescript": "^6.0.3",
|
|
110
110
|
"vite": "^8.2.2",
|