@signalridge/pi-subagents 1.8.0 → 1.8.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.8.1
4
+ ### Patch Changes
5
+
6
+ - 28c8aa1: Remove non-functional references to external product names from package descriptions, examples, and comments. Provider identifiers required for runtime compatibility remain unchanged.
7
+
3
8
  ## 1.8.0
4
9
  ### Minor Changes
5
10
 
package/README.md CHANGED
@@ -420,17 +420,18 @@ by name and nothing else: the `Agent` tool exposes `tier` and does **not** expos
420
420
  `subagents.json`, not by the orchestrator improvising per call.
421
421
 
422
422
  Names are yours. `small`/`medium`/`large` below are only an example — `research`,
423
- `cheap`, `nightly` are equally valid keys.
423
+ `cheap`, `nightly` are equally valid keys. Replace the illustrative provider/model
424
+ values with models available in your environment.
424
425
 
425
426
  ```json
426
427
  {
427
428
  "agentTiers": {
428
429
  "defaultTier": "medium",
429
430
  "profiles": {
430
- "small": { "description": "Fast, cheap exploration", "model": "deepseek/deepseek-v4-flash", "thinking": "max" },
431
- "medium": { "description": "Ordinary planning and review", "model": "openai-codex/gpt-5.6-luna", "thinking": "max" },
432
- "large": { "description": "Architecture and risky review", "model": "openai-codex/gpt-5.6-sol", "thinking": "xhigh" },
433
- "research": { "description": "Long-context research", "model": "kimi/k3", "thinking": "max" }
431
+ "small": { "description": "Fast, cheap exploration", "model": "provider/fast-model", "thinking": "max" },
432
+ "medium": { "description": "Ordinary planning and review", "model": "provider/reasoning-model", "thinking": "max" },
433
+ "large": { "description": "Architecture and risky review", "model": "provider/architecture-model", "thinking": "xhigh" },
434
+ "research": { "description": "Long-context research", "model": "provider/long-context-model", "thinking": "max" }
434
435
  }
435
436
  }
436
437
  }
@@ -450,7 +451,7 @@ remember. It sees:
450
451
  Available agent tiers:
451
452
 
452
453
  - small: Fast, cheap exploration
453
- model: deepseek/deepseek-v4-flash
454
+ model: provider/fast-model
454
455
  thinking: max
455
456
  ...
456
457
  Default tier: medium
@@ -608,12 +609,14 @@ Runtime tuning values set via `/agents` → Settings (max concurrency, default m
608
609
  "tiers": {
609
610
  "small": { "model": "inherit", "thinking": "low" },
610
611
  "medium": { "model": "inherit", "thinking": "medium" },
611
- "large": { "model": "openai-codex/gpt-5.6-luna", "thinking": "max" }
612
+ "large": { "model": "provider/architecture-model", "thinking": "max" }
612
613
  }
613
614
  }
614
615
  }
615
616
  ```
616
617
 
618
+ Replace the illustrative `provider/architecture-model` value with a model available in your environment.
619
+
617
620
  Profiles are complete `model` + `thinking` tuples. Each field may use `inherit`; a project profile replaces the whole matching global tier entry. Malformed or incomplete entries are retained as durable blocked-tier tombstones and fail closed rather than falling back to a built-in profile or merging field-by-field. An explicit `defaultTier` applies when a workflow task omits its tier. Without a task tier or configured default, the parent model and thinking level are inherited. Agent frontmatter remains authoritative for its explicit `model` and `thinking`; thinking is clamped to the selected model's native supported levels.
618
621
 
619
622
  **Default model** (`defaultModel`, unset): the model a subagent runs when no tier picked one — see [`defaultModel`](#defaultmodel) for where it sits in precedence, why an unresolvable value falls back instead of failing, and how `"inherit"` lets a project cancel a global default. **Default tier** (`agentTiers.defaultTier`, unset) is the tier applied when neither the caller nor the agent names one; the profiles it selects from live under [`agentTiers`](#model-tiers).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signalridge/pi-subagents",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "Signalridge's managed subagent runtime with workflow-owned orchestration RPC.",
5
5
  "author": "tintinweb and signalridge contributors",
6
6
  "license": "MIT",