@copilot-swarm/core 0.0.30 → 0.0.31

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 CHANGED
@@ -131,7 +131,7 @@ Drop a `swarm.config.yaml` in your repo root to customize the pipeline. If not p
131
131
 
132
132
  ```yaml
133
133
  primaryModel: claude-opus-4-6
134
- reviewModel: gpt-5.2-codex
134
+ reviewModel: gpt-5.3-codex
135
135
 
136
136
  agents:
137
137
  pm: builtin:pm
@@ -196,7 +196,7 @@ pipeline:
196
196
  | `MAX_AUTO_RESUME` | `3` | Auto-resume attempts on failure |
197
197
  | `MAX_RETRIES` | `2` | Retry attempts for failed agent responses |
198
198
  | `PRIMARY_MODEL` | `claude-opus-4-6` | AI model for primary agents (overrides YAML) |
199
- | `REVIEW_MODEL` | `gpt-5.2-codex` | AI model for cross-model review (overrides YAML) |
199
+ | `REVIEW_MODEL` | `gpt-5.3-codex` | AI model for cross-model review (overrides YAML) |
200
200
 
201
201
  ## GitHub Actions
202
202
 
@@ -3,7 +3,7 @@
3
3
  # pipeline unless it provides its own swarm.config.yaml.
4
4
 
5
5
  primaryModel: claude-opus-4-6
6
- reviewModel: gpt-5.2-codex
6
+ reviewModel: gpt-5.3-codex
7
7
  fastModel: claude-haiku-4.5
8
8
 
9
9
  agents:
@@ -210,7 +210,7 @@ export function parsePipelineConfig(raw) {
210
210
  const obj = raw;
211
211
  const config = {
212
212
  primaryModel: typeof obj.primaryModel === "string" ? obj.primaryModel : "claude-opus-4-6",
213
- reviewModel: typeof obj.reviewModel === "string" ? obj.reviewModel : "gpt-5.2-codex",
213
+ reviewModel: typeof obj.reviewModel === "string" ? obj.reviewModel : "gpt-5.3-codex",
214
214
  fastModel: typeof obj.fastModel === "string" ? obj.fastModel : "claude-haiku-4.5",
215
215
  agents: validateAgents(obj.agents),
216
216
  pipeline: validatePipeline(obj.pipeline),
@@ -46,7 +46,7 @@ describe("parsePipelineConfig", () => {
46
46
  delete raw.reviewModel;
47
47
  const config = parsePipelineConfig(raw);
48
48
  expect(config.primaryModel).toBe("claude-opus-4-6");
49
- expect(config.reviewModel).toBe("gpt-5.2-codex");
49
+ expect(config.reviewModel).toBe("gpt-5.3-codex");
50
50
  expect(config.fastModel).toBe("claude-haiku-4.5");
51
51
  });
52
52
  it("rejects missing agents map", () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilot-swarm/core",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
4
4
  "description": "Multi-agent orchestrator for GitHub Copilot — coordinates PM, designer, engineer, reviewer, and tester agents through a declarative pipeline",
5
5
  "license": "MIT",
6
6
  "type": "module",