jorgex-stack 1.0.23 → 1.0.24
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/README.md +1 -1
- package/dist/cli.js +18 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ For development from a clone, run the same commands through `pnpm cli <command>`
|
|
|
24
24
|
|
|
25
25
|
Every command supports `--dry-run`, `--yes`, and `--target-dir <dir>` for testing without touching the real config. Writes create automatic backups and verify idempotency; merges into user config are surgical (marked markdown sections, JSON/TOML upserts), so user-owned content is never touched.
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Runtime defaults are documented in [docs/references/permissions.md](docs/references/permissions.md) for permissions and [docs/references/models.md](docs/references/models.md) for model selection, GPT-5.6 subagent tiers, and orchestrator inheritance.
|
|
28
28
|
|
|
29
29
|
### Modes: Human and Programmatic
|
|
30
30
|
|
package/dist/cli.js
CHANGED
|
@@ -179,21 +179,22 @@ function resolveAgentModel(models, agentName, tier) {
|
|
|
179
179
|
}
|
|
180
180
|
var DEFAULT_MODEL_MAP = {
|
|
181
181
|
opencode: {
|
|
182
|
-
strong: { model: "openai/gpt-5.
|
|
183
|
-
standard: { model: "openai/gpt-5.
|
|
184
|
-
cheap: { model: "
|
|
182
|
+
strong: { model: "openai/gpt-5.6-terra", variant: "xhigh" },
|
|
183
|
+
standard: { model: "openai/gpt-5.6-terra", variant: "xhigh" },
|
|
184
|
+
cheap: { model: "openai/gpt-5.6-luna", variant: "medium" }
|
|
185
185
|
},
|
|
186
186
|
"claude-code": {
|
|
187
187
|
strong: { model: "fable" },
|
|
188
188
|
standard: { model: "sonnet" },
|
|
189
189
|
cheap: { model: "haiku" }
|
|
190
190
|
},
|
|
191
|
-
//
|
|
192
|
-
//
|
|
191
|
+
// El primary (orchestrator) no usa estos tiers: tanto el profile de CLI como
|
|
192
|
+
// la skill de la app heredan el modelo elegido por el usuario. Estos defaults
|
|
193
|
+
// son solo para subagentes; variant → model_reasoning_effort.
|
|
193
194
|
codex: {
|
|
194
|
-
strong: { model: "
|
|
195
|
-
standard: { model: "
|
|
196
|
-
cheap: { model: "
|
|
195
|
+
strong: { model: "gpt-5.6-terra", variant: "xhigh" },
|
|
196
|
+
standard: { model: "gpt-5.6-terra", variant: "xhigh" },
|
|
197
|
+
cheap: { model: "gpt-5.6-luna", variant: "medium" }
|
|
197
198
|
}
|
|
198
199
|
};
|
|
199
200
|
function modelMapFile() {
|
|
@@ -2842,7 +2843,15 @@ import * as p5 from "@clack/prompts";
|
|
|
2842
2843
|
var TIERS = ["strong", "standard", "cheap"];
|
|
2843
2844
|
var EFFORTS = ["low", "medium", "high", "xhigh"];
|
|
2844
2845
|
var CLAUDE_ALIASES = ["fable", "opus", "sonnet", "haiku", "inherit"];
|
|
2845
|
-
var CODEX_MODELS = [
|
|
2846
|
+
var CODEX_MODELS = [
|
|
2847
|
+
"default",
|
|
2848
|
+
"gpt-5.6-sol",
|
|
2849
|
+
"gpt-5.6-terra",
|
|
2850
|
+
"gpt-5.6-luna",
|
|
2851
|
+
"gpt-5.5",
|
|
2852
|
+
"gpt-5.4",
|
|
2853
|
+
"gpt-5.4-mini"
|
|
2854
|
+
];
|
|
2846
2855
|
var CODEX_CUSTOM = "__custom__";
|
|
2847
2856
|
var CANCEL = /* @__PURE__ */ Symbol("cancel");
|
|
2848
2857
|
function opencodeLiveModels(binPath) {
|
package/package.json
CHANGED