@phi-code-admin/phi-code 0.58.8 → 0.59.0

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.
@@ -174,13 +174,13 @@ function createRouting(assignments: Record<string, { preferred: string; fallback
174
174
  description: role.desc,
175
175
  keywords: KEYWORDS[role.key] || [],
176
176
  preferredModel: assignment?.preferred || role.defaultModel,
177
- fallback: assignment?.fallback || "qwen3.5-plus",
177
+ fallback: assignment?.fallback || role.defaultModel,
178
178
  agent: role.agent,
179
179
  };
180
180
  }
181
181
  return {
182
182
  routes,
183
- default: { model: assignments["default"]?.preferred || "qwen3.5-plus", agent: null },
183
+ default: { model: assignments["default"]?.preferred || "default", agent: null },
184
184
  };
185
185
  }
186
186
 
@@ -381,7 +381,7 @@ _Edit this file to customize Phi Code's behavior for your project._
381
381
  const assignments: Record<string, { preferred: string; fallback: string }> = {};
382
382
 
383
383
  if (availableModels.length === 0) {
384
- const fb = { preferred: "qwen3.5-plus", fallback: "qwen3.5-plus" };
384
+ const fb = { preferred: "default", fallback: "default" };
385
385
  for (const role of TASK_ROLES) assignments[role.key] = fb;
386
386
  assignments["default"] = fb;
387
387
  return assignments;
@@ -202,7 +202,7 @@ export default function orchestratorExtension(pi: ExtensionAPI) {
202
202
  args.push("--print");
203
203
  if (model && model !== "default") args.push("--model", model);
204
204
  if (agentDef?.systemPrompt) args.push("--system-prompt", agentDef.systemPrompt);
205
- args.push("--no-save");
205
+ args.push("--no-session");
206
206
  args.push(taskPrompt);
207
207
 
208
208
  const cmd = phiBin === "npx" ? "npx" : "node";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phi-code-admin/phi-code",
3
- "version": "0.58.8",
3
+ "version": "0.59.0",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "piConfig": {
@@ -58,7 +58,7 @@
58
58
  "phi-code-ai": "^0.56.3",
59
59
  "phi-code-tui": "^0.56.3",
60
60
  "proper-lockfile": "^4.1.2",
61
- "sigma-agents": "^0.1.2",
61
+ "sigma-agents": "^0.1.4",
62
62
  "sigma-memory": "^0.1.0",
63
63
  "sigma-skills": "^0.1.0",
64
64
  "strip-ansi": "^7.1.0",