@orkestrel/scaffold 0.0.3 → 0.0.4
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/host/AGENTS.md +1 -1
- package/dist/host/CLAUDE.md +108 -33
- package/dist/host/claude/agents/application.md +0 -2
- package/dist/host/claude/agents/builder.md +1 -3
- package/dist/host/claude/agents/checker.md +0 -1
- package/dist/host/claude/agents/codex.md +73 -19
- package/dist/host/claude/agents/grok.md +27 -7
- package/dist/host/claude/agents/implementer.md +40 -0
- package/dist/host/claude/agents/orkestrel.md +0 -1
- package/dist/host/claude/agents/planner.md +0 -1
- package/dist/host/claude/agents/reviewer.md +1 -2
- package/dist/host/claude/agents/verifier.md +0 -1
- package/dist/host/claude/rules/architecture.md +2 -1
- package/dist/host/claude/settings.json +1 -5
- package/dist/host/codex/agents/implementer.toml +2 -2
- package/dist/host/codex/agents/opus.toml +25 -0
- package/dist/host/codex/config.toml +5 -3
- package/dist/host/cursor/mcp.json +12 -0
- package/dist/host/dotfiles/mcp.json +8 -0
- package/dist/host/manifest.json +21 -0
- package/dist/host/tests/setupPolicy.ts +47 -11
- package/dist/src/core/index.cjs +3 -1
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +1 -1
- package/dist/src/core/index.d.ts +1 -1
- package/dist/src/core/index.js +3 -1
- package/dist/src/core/index.js.map +1 -1
- package/package.json +2 -1
|
@@ -2131,7 +2131,7 @@ export declare function coreViteConfig(): string;
|
|
|
2131
2131
|
export declare function rootViteConfig(src: readonly Environment[], engine?: boolean): string;
|
|
2132
2132
|
|
|
2133
2133
|
/** The devDependency range generated packages pin `@orkestrel/scaffold` at. */
|
|
2134
|
-
export declare const SCAFFOLD_RANGE = "^0.0.
|
|
2134
|
+
export declare const SCAFFOLD_RANGE = "^0.0.4";
|
|
2135
2135
|
|
|
2136
2136
|
/**
|
|
2137
2137
|
* Carries a `ScaffoldErrorCode` + optional `context` (AGENTS §12).
|
package/dist/src/core/index.d.ts
CHANGED
|
@@ -2131,7 +2131,7 @@ export declare function coreViteConfig(): string;
|
|
|
2131
2131
|
export declare function rootViteConfig(src: readonly Environment[], engine?: boolean): string;
|
|
2132
2132
|
|
|
2133
2133
|
/** The devDependency range generated packages pin `@orkestrel/scaffold` at. */
|
|
2134
|
-
export declare const SCAFFOLD_RANGE = "^0.0.
|
|
2134
|
+
export declare const SCAFFOLD_RANGE = "^0.0.4";
|
|
2135
2135
|
|
|
2136
2136
|
/**
|
|
2137
2137
|
* Carries a `ScaffoldErrorCode` + optional `context` (AGENTS §12).
|
package/dist/src/core/index.js
CHANGED
|
@@ -118,6 +118,8 @@ var HOST_PATHS = Object.freeze([
|
|
|
118
118
|
".claude/settings.json",
|
|
119
119
|
".codex/agents",
|
|
120
120
|
".codex/config.toml",
|
|
121
|
+
".cursor/mcp.json",
|
|
122
|
+
".mcp.json",
|
|
121
123
|
"scripts/deps.sh",
|
|
122
124
|
"scripts/cursor.sh",
|
|
123
125
|
"scripts/codex.sh",
|
|
@@ -215,7 +217,7 @@ var DEFAULT_VERSION = "0.0.1";
|
|
|
215
217
|
/** The `engines.node` range the `blueprint` builder fills. */
|
|
216
218
|
var DEFAULT_ENGINES = `>=${MINIMUM_NODE_VERSION}`;
|
|
217
219
|
/** The devDependency range generated packages pin `@orkestrel/scaffold` at. */
|
|
218
|
-
var SCAFFOLD_RANGE = "^0.0.
|
|
220
|
+
var SCAFFOLD_RANGE = "^0.0.4";
|
|
219
221
|
/** Tooling versions shared by scaffold and every generated workspace. */
|
|
220
222
|
var BASE_DEV_DEPENDENCIES = Object.freeze({
|
|
221
223
|
"@microsoft/api-extractor": "^7.58.12",
|