@bastani/atomic 0.9.14-alpha.2 → 0.9.14-alpha.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.
Files changed (79) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/builtin/intercom/package.json +1 -1
  3. package/dist/builtin/mcp/CHANGELOG.md +6 -0
  4. package/dist/builtin/mcp/package.json +2 -2
  5. package/dist/builtin/subagents/CHANGELOG.md +6 -0
  6. package/dist/builtin/subagents/agents/code-simplifier.md +1 -1
  7. package/dist/builtin/subagents/agents/codebase-analyzer.md +1 -1
  8. package/dist/builtin/subagents/agents/codebase-locator.md +1 -1
  9. package/dist/builtin/subagents/agents/codebase-online-researcher.md +1 -1
  10. package/dist/builtin/subagents/agents/codebase-pattern-finder.md +1 -1
  11. package/dist/builtin/subagents/agents/codebase-research-analyzer.md +1 -1
  12. package/dist/builtin/subagents/agents/codebase-research-locator.md +1 -1
  13. package/dist/builtin/subagents/agents/debugger.md +1 -1
  14. package/dist/builtin/subagents/agents/worker.md +1 -1
  15. package/dist/builtin/subagents/package.json +1 -1
  16. package/dist/builtin/web-access/CHANGELOG.md +16 -0
  17. package/dist/builtin/web-access/README.md +3 -6
  18. package/dist/builtin/web-access/index.ts +1 -2
  19. package/dist/builtin/web-access/package.json +2 -2
  20. package/dist/builtin/web-access/web-search-config.ts +2 -8
  21. package/dist/builtin/web-access/web-search-tool.ts +2 -7
  22. package/dist/builtin/web-access/web-search-workflow.ts +10 -0
  23. package/dist/builtin/workflows/CHANGELOG.md +18 -0
  24. package/dist/builtin/workflows/README.md +1 -1
  25. package/dist/builtin/workflows/builtin/goal-models.ts +4 -2
  26. package/dist/builtin/workflows/builtin/open-claude-design-runner.ts +2 -1
  27. package/dist/builtin/workflows/builtin/ralph-models.ts +10 -5
  28. package/dist/builtin/workflows/package.json +1 -1
  29. package/dist/builtin/workflows/src/extension/index.bundle.mjs +125 -66
  30. package/dist/builtin/workflows/src/runs/foreground/executor-hil.ts +32 -4
  31. package/dist/builtin/workflows/src/runs/foreground/executor-prompt-nodes.ts +3 -9
  32. package/dist/builtin/workflows/src/runs/foreground/executor-stage-call.ts +27 -20
  33. package/dist/builtin/workflows/src/runs/foreground/executor.ts +4 -0
  34. package/dist/builtin/workflows/src/shared/authoring-contract-ui.d.ts +6 -1
  35. package/dist/builtin/workflows/src/shared/authoring-contract-ui.ts +6 -1
  36. package/dist/builtin/workflows/src/tui/graph-theme.ts +11 -0
  37. package/dist/builtin/workflows/src/tui/graph-view-render.ts +19 -10
  38. package/dist/builtin/workflows/src/tui/stage-chat-view-custom-ui.ts +7 -8
  39. package/dist/builtin/workflows/src/tui/tool-detail.ts +45 -26
  40. package/dist/core/tools/ask-user-question/ask-user-question.d.ts +3 -1
  41. package/dist/core/tools/ask-user-question/ask-user-question.d.ts.map +1 -1
  42. package/dist/core/tools/ask-user-question/ask-user-question.js +2 -1
  43. package/dist/core/tools/ask-user-question/ask-user-question.js.map +1 -1
  44. package/dist/core/tools/ask-user-question/state/build-questionnaire.d.ts +1 -0
  45. package/dist/core/tools/ask-user-question/state/build-questionnaire.d.ts.map +1 -1
  46. package/dist/core/tools/ask-user-question/state/build-questionnaire.js +1 -0
  47. package/dist/core/tools/ask-user-question/state/build-questionnaire.js.map +1 -1
  48. package/dist/core/tools/ask-user-question/state/key-router.d.ts.map +1 -1
  49. package/dist/core/tools/ask-user-question/state/key-router.js +3 -1
  50. package/dist/core/tools/ask-user-question/state/key-router.js.map +1 -1
  51. package/dist/core/tools/ask-user-question/state/questionnaire-session.d.ts +3 -0
  52. package/dist/core/tools/ask-user-question/state/questionnaire-session.d.ts.map +1 -1
  53. package/dist/core/tools/ask-user-question/state/questionnaire-session.js +3 -0
  54. package/dist/core/tools/ask-user-question/state/questionnaire-session.js.map +1 -1
  55. package/dist/core/tools/ask-user-question/state/state-reducer.d.ts +1 -0
  56. package/dist/core/tools/ask-user-question/state/state-reducer.d.ts.map +1 -1
  57. package/dist/core/tools/ask-user-question/state/state-reducer.js +3 -1
  58. package/dist/core/tools/ask-user-question/state/state-reducer.js.map +1 -1
  59. package/dist/core/tools/ask-user-question/view/components/chat-row-view.d.ts +2 -0
  60. package/dist/core/tools/ask-user-question/view/components/chat-row-view.d.ts.map +1 -1
  61. package/dist/core/tools/ask-user-question/view/components/chat-row-view.js +1 -0
  62. package/dist/core/tools/ask-user-question/view/components/chat-row-view.js.map +1 -1
  63. package/dist/core/tools/ask-user-question/view/components/wrapping-select.d.ts +3 -0
  64. package/dist/core/tools/ask-user-question/view/components/wrapping-select.d.ts.map +1 -1
  65. package/dist/core/tools/ask-user-question/view/components/wrapping-select.js +2 -1
  66. package/dist/core/tools/ask-user-question/view/components/wrapping-select.js.map +1 -1
  67. package/dist/core/tools/edit-batch.d.ts +33 -0
  68. package/dist/core/tools/edit-batch.d.ts.map +1 -0
  69. package/dist/core/tools/edit-batch.js +89 -0
  70. package/dist/core/tools/edit-batch.js.map +1 -0
  71. package/dist/core/tools/edit.d.ts +1 -1
  72. package/dist/core/tools/edit.d.ts.map +1 -1
  73. package/dist/core/tools/edit.js +98 -42
  74. package/dist/core/tools/edit.js.map +1 -1
  75. package/docs/providers.md +1 -1
  76. package/docs/tools.md +1 -1
  77. package/docs/workflows.md +4 -4
  78. package/npm-shrinkwrap.json +65 -50
  79. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.9.14-alpha.4] - 2026-08-18
6
+
7
+ ### Changed
8
+
9
+ - Bundled `web_search` no longer opens the curator confirmation UI by default. Persist `"workflow": "summary-review"` in web-search config or run `/curator on` to opt in.
10
+
11
+ ### Removed
12
+
13
+ - The `workflow` parameter on bundled `web_search`. Models cannot select the curator per call.
14
+
15
+ ## [0.9.14-alpha.3] - 2026-08-17
16
+
17
+ ### Changed
18
+
19
+ - Documented built-in workflow and subagent Grok 4.6 fallbacks as `xai/grok-4.6:xhigh` and `github-copilot/grok-4.6:xhigh`.
20
+ - Optional DBOS durable execution now makes `/workflow resume` recovery idempotent, re-stamps `executor_id` on a successful step checkpoint, and keeps the SDK's internal admin server off by default.
21
+ - MCP OAuth browser launch now succeeds from WSL when the Linux working directory is not reachable from Windows.
22
+ - `ask_user_question` no longer submits an empty or whitespace-only **Type something.** answer. The readiness-gate tool can treat **Chat about this** as a plain option via `createAskUserQuestionToolDefinition({ chatAsOption: true })`.
23
+
24
+ ### Fixed
25
+
26
+ - Parallel `edit` calls that share a `[path#TAG]` are now applied as one snapshot-anchored batch, so later siblings no longer fail with `file content changed before write` after the first write mints a new tag.
27
+ - PDF extraction no longer throws `TypeError: Math.sumPrecise is not a function` on Node runtimes without that builtin.
28
+
5
29
  ## [0.9.14-alpha.2] - 2026-08-17
6
30
 
7
31
  ### Added
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bastani/intercom",
3
- "version": "0.9.14-alpha.2",
3
+ "version": "0.9.14-alpha.4",
4
4
  "private": true,
5
5
  "description": "Atomic extension providing a private coordination channel between parent and child agent sessions. Fork of: https://github.com/nicobailon/pi-intercom",
6
6
  "contributors": [
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.9.14-alpha.3] - 2026-08-17
11
+
12
+ ### Changed
13
+
14
+ - MCP OAuth now opens the authorization URL from WSL when the Linux working directory is not reachable from Windows.
15
+
10
16
  ## [0.9.13] - 2026-08-13
11
17
 
12
18
  Cumulative release of the `0.9.13-alpha.1` – `0.9.13-alpha.2` prereleases. The summary below covers the user-visible outcome of that work; the per-change detail remains in the prerelease sections below.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bastani/mcp",
3
- "version": "0.9.14-alpha.2",
3
+ "version": "0.9.14-alpha.4",
4
4
  "private": true,
5
5
  "description": "Atomic extension that adapts MCP (Model Context Protocol) servers into the coding agent. Fork of: https://github.com/nicobailon/pi-mcp-adapter",
6
6
  "contributors": [
@@ -50,7 +50,7 @@
50
50
  "dependencies": {
51
51
  "@modelcontextprotocol/ext-apps": "^1.7.5",
52
52
  "@modelcontextprotocol/sdk": "^1.30.0",
53
- "open": "^11.0.0",
53
+ "open": "^11.0.1",
54
54
  "typebox": "^1.3.7",
55
55
  "zod": "^3.25.0 || ^4.0.0"
56
56
  }
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.9.14-alpha.3] - 2026-08-17
6
+
7
+ ### Changed
8
+
9
+ - Raised every built-in subagent Grok 4.6 fallback from `xai/grok-4.6:high` to `xai/grok-4.6:xhigh` and added the matching `github-copilot/grok-4.6:xhigh` twin immediately after each xAI id.
10
+
5
11
  ## [0.9.14-alpha.2] - 2026-08-17
6
12
 
7
13
  ### Added
@@ -9,7 +9,7 @@ description: |
9
9
  - Code that has gotten messy after several iterations.
10
10
  tools: read, edit, write, search, find, ls, bash, todo
11
11
  model: openai-codex/gpt-5.6-luna:max
12
- fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
12
+ fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
13
13
  skills: tdd, playwright-cli, tmux
14
14
  ---
15
15
 
@@ -3,7 +3,7 @@ name: codebase-analyzer
3
3
  description: Analyzes codebase implementation details. Call the codebase-analyzer agent when you need to find detailed information about specific components.
4
4
  tools: read, search, find, ls, todo
5
5
  model: openai-codex/gpt-5.6-luna:max
6
- fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
6
+ fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
7
7
  skills: tdd, playwright-cli, tmux
8
8
  ---
9
9
 
@@ -3,7 +3,7 @@ name: codebase-locator
3
3
  description: Locates files, directories, and components relevant to a feature or task. Basically a "super search/find/ls tool."
4
4
  tools: read, search, find, ls
5
5
  model: openai-codex/gpt-5.6-luna:max
6
- fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:low, github-copilot/gpt-5.5:low, openai/gpt-5.5:low, anthropic/claude-opus-4-8:low, github-copilot/claude-opus-4.8:low, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:low, openrouter/anthropic/claude-opus-4-8:low, openrouter/x-ai/grok-4.6
6
+ fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:low, github-copilot/gpt-5.5:low, openai/gpt-5.5:low, anthropic/claude-opus-4-8:low, github-copilot/claude-opus-4.8:low, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:low, openrouter/anthropic/claude-opus-4-8:low, openrouter/x-ai/grok-4.6
7
7
  ---
8
8
 
9
9
  ## Role and goal
@@ -3,7 +3,7 @@ name: codebase-online-researcher
3
3
  description: Online research for up-to-date documentation and library-source knowledge. Use when you need authoritative external information — official docs, ecosystem context, version-specific behavior, GitHub permalinks into open-source libraries, or video tutorials.
4
4
  tools: read, search, find, ls, bash, web_search, fetch_content, get_search_content, todo
5
5
  model: openai-codex/gpt-5.6-luna:max
6
- fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
6
+ fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
7
7
  skills: playwright-cli
8
8
  ---
9
9
 
@@ -3,7 +3,7 @@ name: codebase-pattern-finder
3
3
  description: Find similar implementations, usage examples, or existing patterns in the codebase that can be modeled after.
4
4
  tools: read, search, find, ls
5
5
  model: openai-codex/gpt-5.6-luna:max
6
- fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:low, github-copilot/gpt-5.5:low, openai/gpt-5.5:low, anthropic/claude-opus-4-8:low, github-copilot/claude-opus-4.8:low, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:low, openrouter/anthropic/claude-opus-4-8:low, openrouter/x-ai/grok-4.6
6
+ fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:low, github-copilot/gpt-5.5:low, openai/gpt-5.5:low, anthropic/claude-opus-4-8:low, github-copilot/claude-opus-4.8:low, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:low, openrouter/anthropic/claude-opus-4-8:low, openrouter/x-ai/grok-4.6
7
7
  ---
8
8
 
9
9
  ## Role and goal
@@ -3,7 +3,7 @@ name: codebase-research-analyzer
3
3
  description: Analyzes local research documents to extract high-value insights, decisions, and technical details while filtering out noise. Use this when you want to deep dive on a research topic or understand the rationale behind decisions.
4
4
  tools: read, search, find, ls, todo
5
5
  model: openai-codex/gpt-5.6-luna:max
6
- fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
6
+ fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
7
7
  ---
8
8
 
9
9
  ## Role and goal
@@ -3,7 +3,7 @@ name: codebase-research-locator
3
3
  description: Discovers local research documents that are relevant to the current research task.
4
4
  tools: read, search, find, ls
5
5
  model: openai-codex/gpt-5.6-luna:max
6
- fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:low, github-copilot/gpt-5.5:low, openai/gpt-5.5:low, anthropic/claude-opus-4-8:low, github-copilot/claude-opus-4.8:low, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:low, openrouter/anthropic/claude-opus-4-8:low, openrouter/x-ai/grok-4.6
6
+ fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:low, github-copilot/gpt-5.5:low, openai/gpt-5.5:low, anthropic/claude-opus-4-8:low, github-copilot/claude-opus-4.8:low, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:low, openrouter/anthropic/claude-opus-4-8:low, openrouter/x-ai/grok-4.6
7
7
  ---
8
8
 
9
9
  ## Role and goal
@@ -3,7 +3,7 @@ name: debugger
3
3
  description: Debug and fix errors, test failures, and unexpected behavior. Use PROACTIVELY when encountering issues, analyzing stack traces, or investigating system problems.
4
4
  tools: read, edit, write, search, find, ls, bash, web_search, fetch_content, get_search_content, intercom, contact_supervisor, todo
5
5
  model: openai-codex/gpt-5.6-sol:xhigh
6
- fallbackModels: github-copilot/gpt-5.6-sol:xhigh, openai/gpt-5.6-sol:xhigh, anthropic/claude-opus-5:high, github-copilot/claude-opus-5:high, anthropic/claude-fable-5:high, github-copilot/claude-fable-5:high, kimi-coding/k3:max, moonshotai/kimi-k3:max, moonshotai-cn/kimi-k3:max, openai-codex/gpt-5.5:xhigh, github-copilot/gpt-5.5:xhigh, openai/gpt-5.5:xhigh, anthropic/claude-opus-4-8:high, github-copilot/claude-opus-4.8:high, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-sol:xhigh, openrouter/anthropic/claude-opus-5:high, openrouter/anthropic/claude-fable-5:high, openrouter/moonshotai/kimi-k3:max, openrouter/sakana/fugu-ultra:high, openrouter/openai/gpt-5.5:xhigh, openrouter/anthropic/claude-opus-4-8:high, openrouter/x-ai/grok-4.6
6
+ fallbackModels: github-copilot/gpt-5.6-sol:xhigh, openai/gpt-5.6-sol:xhigh, anthropic/claude-opus-5:high, github-copilot/claude-opus-5:high, anthropic/claude-fable-5:high, github-copilot/claude-fable-5:high, kimi-coding/k3:max, moonshotai/kimi-k3:max, moonshotai-cn/kimi-k3:max, openai-codex/gpt-5.5:xhigh, github-copilot/gpt-5.5:xhigh, openai/gpt-5.5:xhigh, anthropic/claude-opus-4-8:high, github-copilot/claude-opus-4.8:high, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-sol:xhigh, openrouter/anthropic/claude-opus-5:high, openrouter/anthropic/claude-fable-5:high, openrouter/moonshotai/kimi-k3:max, openrouter/sakana/fugu-ultra:high, openrouter/openai/gpt-5.5:xhigh, openrouter/anthropic/claude-opus-4-8:high, openrouter/x-ai/grok-4.6
7
7
  skills: tdd, playwright-cli, tmux
8
8
  ---
9
9
 
@@ -6,7 +6,7 @@ inheritProjectContext: true
6
6
  inheritSkills: false
7
7
  tools: read, edit, write, search, find, ls, bash, web_search, fetch_content, get_search_content, intercom, contact_supervisor, todo
8
8
  model: openai-codex/gpt-5.6-luna:max
9
- fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:high, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
9
+ fallbackModels: github-copilot/gpt-5.6-luna:max, openai/gpt-5.6-luna:max, anthropic/claude-opus-5:low, github-copilot/claude-opus-5:low, openai-codex/gpt-5.5:medium, github-copilot/gpt-5.5:medium, openai/gpt-5.5:medium, anthropic/claude-fable-5:low, github-copilot/claude-fable-5:low, anthropic/claude-opus-4-8:medium, github-copilot/claude-opus-4.8:medium, xai/grok-4.6:xhigh, github-copilot/grok-4.6:xhigh, zai/glm-5.3:high, zai-coding-cn/glm-5.3:high, openrouter/openai/gpt-5.6-luna:max, openrouter/anthropic/claude-opus-5:low, openrouter/openai/gpt-5.5:medium, openrouter/anthropic/claude-fable-5:low, openrouter/anthropic/claude-opus-4-8:medium, openrouter/x-ai/grok-4.6
10
10
  skills: tdd, playwright-cli, tmux
11
11
  defaultContext: fork
12
12
  defaultProgress: true
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bastani/subagents",
3
- "version": "0.9.14-alpha.2",
3
+ "version": "0.9.14-alpha.4",
4
4
  "private": true,
5
5
  "description": "Atomic extension for delegating tasks to subagents with parallel execution. Fork of: https://github.com/nicobailon/pi-subagents",
6
6
  "contributors": [
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.9.14-alpha.4] - 2026-08-18
8
+
9
+ ### Changed
10
+
11
+ - The interactive search curator is now opt-in. `web_search` returns raw results unless you set `"workflow": "summary-review"` in web-search config or run `/curator on`.
12
+
13
+ ### Removed
14
+
15
+ - The `workflow` parameter on `web_search`. The curator is no longer selectable per tool call; enable it with web-search config or `/curator`.
16
+
17
+ ## [0.9.14-alpha.3] - 2026-08-17
18
+
19
+ ### Fixed
20
+
21
+ - `fetch_content` PDF extraction no longer throws `TypeError: Math.sumPrecise is not a function` on Node runtimes without that builtin.
22
+
7
23
  ## [0.9.13] - 2026-08-13
8
24
 
9
25
  Cumulative release of the `0.9.13-alpha.2` prerelease. The summary below covers the user-visible outcome of that work; the per-change detail remains in the prerelease section below.
@@ -78,7 +78,7 @@ For batch search/fetch calls, partial success remains usable and retains item-le
78
78
 
79
79
  ### web_search
80
80
 
81
- Search the web via Exa, Perplexity AI, or Gemini. Returns a synthesized answer with source citations.
81
+ Search the web via Exa, Perplexity AI, or Gemini. Returns a synthesized answer with source citations. The curator UI is off by default; enable it with `/curator on` or `"workflow": "summary-review"` in config.
82
82
 
83
83
  ```typescript
84
84
  web_search({ query: "rust async programming" })
@@ -87,8 +87,6 @@ web_search({ query: "latest news", numResults: 10, recencyFilter: "week" })
87
87
  web_search({ query: "...", domainFilter: ["github.com"] })
88
88
  web_search({ query: "...", provider: "exa" })
89
89
  web_search({ query: "...", includeContent: true })
90
- web_search({ queries: ["query 1", "query 2"], workflow: "none" })
91
- web_search({ queries: ["query 1", "query 2"], workflow: "summary-review" })
92
90
  ```
93
91
 
94
92
  | Parameter | Description |
@@ -99,7 +97,6 @@ web_search({ queries: ["query 1", "query 2"], workflow: "summary-review" })
99
97
  | `domainFilter` | Limit to domains (prefix with `-` to exclude) |
100
98
  | `provider` | `auto` (default), `exa`, `perplexity`, or `gemini` |
101
99
  | `includeContent` | Fetch full page content from sources in background |
102
- | `workflow` | `none` (skip curator) or `summary-review` (auto-generate summary draft after search completion, default) |
103
100
 
104
101
  ### code_search
105
102
 
@@ -227,7 +224,7 @@ Toggle or configure the curator workflow at runtime.
227
224
  /curator summary-review # explicit workflow
228
225
  ```
229
226
 
230
- Persists to `~/.pi/web-search.json` and takes effect on the next `web_search` call. When disabled, `web_search` returns raw results without opening the curator window.
227
+ Persists to `~/.pi/web-search.json` and takes effect on the next `web_search` call. The curator is off by default. When disabled, `web_search` returns raw results without opening the curator window.
231
228
 
232
229
  ### /search
233
230
 
@@ -287,7 +284,7 @@ All config lives in `~/.pi/web-search.json`. Every field is optional.
287
284
  }
288
285
  ```
289
286
 
290
- `EXA_API_KEY`, `GEMINI_API_KEY`, and `PERPLEXITY_API_KEY` env vars take precedence over config file values. `provider` sets the default search provider: `"exa"`, `"perplexity"`, or `"gemini"`. This is also updated automatically when you change the provider in the curator UI. `workflow` sets the default curator mode: `"summary-review"` (default, opens curator with auto-generated summary draft) or `"none"` (raw results, no curator). Overridden per-call via the `workflow` parameter on `web_search`, or toggled at runtime with `/curator`. `chromeProfile` overrides the Chromium profile directory used for Gemini Web cookie lookup. `allowBrowserCookies` enables Chromium cookie extraction for Gemini Web; it defaults to `false` to avoid surprise macOS Keychain prompts. You can also set `PI_ALLOW_BROWSER_COOKIES=1`. `searchModel` overrides the Gemini API model used by `web_search` without changing URL, YouTube, or video extraction defaults. `summaryModel` sets the default model used for generating summary drafts in the curator UI (e.g. `"anthropic/claude-haiku-4-5"` or `"openai-codex/gpt-5.3-codex-spark"`). Only models available in your model registry are eligible; if the configured model is unavailable, the default falls back to the built-in preference list. `curatorTimeoutSeconds` controls the initial curator idle timeout (default `20`, max `600`); users can still adjust the timer in the curator UI.
287
+ `EXA_API_KEY`, `GEMINI_API_KEY`, and `PERPLEXITY_API_KEY` env vars take precedence over config file values. `provider` sets the default search provider: `"exa"`, `"perplexity"`, or `"gemini"`. This is also updated automatically when you change the provider in the curator UI. `workflow` sets the curator mode: `"none"` (default, raw results, no curator) or `"summary-review"` (opens curator with auto-generated summary draft). Enable it in this file or toggle at runtime with `/curator`. `chromeProfile` overrides the Chromium profile directory used for Gemini Web cookie lookup. `allowBrowserCookies` enables Chromium cookie extraction for Gemini Web; it defaults to `false` to avoid surprise macOS Keychain prompts. You can also set `PI_ALLOW_BROWSER_COOKIES=1`. `searchModel` overrides the Gemini API model used by `web_search` without changing URL, YouTube, or video extraction defaults. `summaryModel` sets the default model used for generating summary drafts in the curator UI (e.g. `"anthropic/claude-haiku-4-5"` or `"openai-codex/gpt-5.3-codex-spark"`). Only models available in your model registry are eligible; if the configured model is unavailable, the default falls back to the built-in preference list. `curatorTimeoutSeconds` controls the initial curator idle timeout (default `20`, max `600`); users can still adjust the timer in the curator UI.
291
288
 
292
289
  ### Shortcuts
293
290
 
@@ -320,7 +320,7 @@ export default function webAccess(pi: ExtensionAPI) {
320
320
  pi.registerTool({
321
321
  name: "web_search",
322
322
  label: "Web Search",
323
- description: "Search the web using Perplexity AI, Exa, or Gemini. Returns an AI-synthesized answer with source citations. For comprehensive research, prefer queries (plural) with 2-4 varied angles over a single query — each query gets its own synthesized answer, so varying phrasing and scope gives much broader coverage. When includeContent is true, full page content is fetched in the background. Searches auto-open the interactive browser curator and stream results live; set workflow to \"none\" to skip curation. Provider auto-selects: Exa (direct API with key, MCP fallback without), else Perplexity (needs key), else Gemini API (needs key), else Gemini Web (needs a supported Chromium-based browser login).",
323
+ description: "Search the web using Perplexity AI, Exa, or Gemini. Returns an AI-synthesized answer with source citations. For comprehensive research, prefer queries (plural) with 2-4 varied angles over a single query — each query gets its own synthesized answer, so varying phrasing and scope gives much broader coverage. When includeContent is true, full page content is fetched in the background. Searches return raw results by default. Enable the interactive browser curator with /curator on or by setting workflow to \"summary-review\" in web-search config. Provider auto-selects: Exa (direct API with key, MCP fallback without), else Perplexity (needs key), else Gemini API (needs key), else Gemini Web (needs a supported Chromium-based browser login).",
324
324
  promptSnippet: "Use for web research questions. Prefer {queries:[...]} with 2-4 varied angles over a single query for broader coverage.",
325
325
  parameters: Type.Object({
326
326
  query: Type.Optional(Type.String({ description: "Single search query. For research tasks, prefer 'queries' with multiple varied angles instead." })),
@@ -330,7 +330,6 @@ export default function webAccess(pi: ExtensionAPI) {
330
330
  recencyFilter: Type.Optional(Type.String({ enum: ["day", "week", "month", "year"], description: "Filter by recency" })),
331
331
  domainFilter: Type.Optional(Type.Array(Type.String(), { description: "Limit to domains (prefix with - to exclude)" })),
332
332
  provider: Type.Optional(Type.String({ enum: ["auto", "perplexity", "gemini", "exa"], description: "Search provider (default: auto)" })),
333
- workflow: Type.Optional(Type.String({ enum: ["none", "summary-review"], description: "Search workflow mode: none = no curator, summary-review = open curator with auto summary draft (default)" })),
334
333
  }),
335
334
  execute: (...args) => executeHeavyTool(loadHeavy, "web_search", args),
336
335
  renderResult: (...args) => renderHeavyToolResult(loadedHeavy?.heavy ?? null, "web_search", args),
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bastani/web-access",
3
- "version": "0.9.14-alpha.2",
3
+ "version": "0.9.14-alpha.4",
4
4
  "private": true,
5
5
  "description": "Atomic extension for web search, URL fetching, GitHub repo cloning, PDF/video extraction. Fork of: https://github.com/nicobailon/pi-web-access",
6
6
  "contributors": [
@@ -46,6 +46,6 @@
46
46
  "linkedom": "^0.18.13",
47
47
  "p-limit": "^7.3.1",
48
48
  "turndown": "^7.2.0",
49
- "unpdf": "1.7.0"
49
+ "unpdf": "1.8.1"
50
50
  }
51
51
  }
@@ -33,8 +33,8 @@ export interface ProviderAvailability {
33
33
  gemini: boolean;
34
34
  }
35
35
 
36
- export type WebSearchWorkflow = "none" | "summary-review";
37
- export type CuratorWorkflow = "summary-review";
36
+ export type { CuratorWorkflow, WebSearchWorkflow } from "./web-search-workflow.js";
37
+ export { resolveWorkflow } from "./web-search-workflow.js";
38
38
 
39
39
  export interface CuratorBootstrap {
40
40
  availableProviders: ProviderAvailability;
@@ -99,12 +99,6 @@ function normalizeCuratorTimeoutSeconds(value: unknown): number | undefined {
99
99
  return Math.min(normalized, MAX_CURATOR_TIMEOUT_SECONDS);
100
100
  }
101
101
 
102
- export function resolveWorkflow(input: unknown, hasUI: boolean): WebSearchWorkflow {
103
- if (!hasUI) return "none";
104
- if (typeof input === "string" && input.trim().toLowerCase() === "none") return "none";
105
- return "summary-review";
106
- }
107
-
108
102
  export function normalizeQueryList(queryList: unknown[]): string[] {
109
103
  const normalized: string[] = [];
110
104
  for (const query of queryList) {
@@ -32,7 +32,7 @@ export function registerWebSearchTool(pi: ExtensionAPI, deps: RegisterWebSearchT
32
32
  name: "web_search",
33
33
  label: "Web Search",
34
34
  description:
35
- `Search the web using Perplexity AI, Exa, or Gemini. Returns an AI-synthesized answer with source citations. For comprehensive research, prefer queries (plural) with 2-4 varied angles over a single query — each query gets its own synthesized answer, so varying phrasing and scope gives much broader coverage. When includeContent is true, full page content is fetched in the background. Searches auto-open the interactive browser curator and stream results live; set workflow to "none" to skip curation. Provider auto-selects: Exa (direct API with key, MCP fallback without), else Perplexity (needs key), else Gemini API (needs key), else Gemini Web (needs a supported Chromium-based browser login).`,
35
+ `Search the web using Perplexity AI, Exa, or Gemini. Returns an AI-synthesized answer with source citations. For comprehensive research, prefer queries (plural) with 2-4 varied angles over a single query — each query gets its own synthesized answer, so varying phrasing and scope gives much broader coverage. When includeContent is true, full page content is fetched in the background. Searches return raw results by default. Enable the interactive browser curator with /curator on or by setting workflow to "summary-review" in web-search config. Provider auto-selects: Exa (direct API with key, MCP fallback without), else Perplexity (needs key), else Gemini API (needs key), else Gemini Web (needs a supported Chromium-based browser login).`,
36
36
  promptSnippet:
37
37
  "Use for web research questions. Prefer {queries:[...]} with 2-4 varied angles over a single query for broader coverage.",
38
38
  parameters: Type.Object({
@@ -47,11 +47,6 @@ export function registerWebSearchTool(pi: ExtensionAPI, deps: RegisterWebSearchT
47
47
  provider: Type.Optional(
48
48
  StringEnum(["auto", "perplexity", "gemini", "exa"], { description: "Search provider (default: auto)" }),
49
49
  ),
50
- workflow: Type.Optional(
51
- StringEnum(["none", "summary-review"], {
52
- description: "Search workflow mode: none = no curator, summary-review = open curator with auto summary draft (default)",
53
- }),
54
- ),
55
50
  }),
56
51
 
57
52
  async execute(_toolCallId, params, signal, onUpdate, ctx) {
@@ -60,7 +55,7 @@ export function registerWebSearchTool(pi: ExtensionAPI, deps: RegisterWebSearchT
60
55
  : (params.query !== undefined ? [params.query] : []);
61
56
  const queryList = normalizeQueryList(rawQueryList);
62
57
  const configWorkflow = loadConfigForExtensionInit().workflow;
63
- const workflow = resolveWorkflow(params.workflow ?? configWorkflow, ctx?.hasUI !== false);
58
+ const workflow = resolveWorkflow(configWorkflow, ctx?.hasUI !== false);
64
59
  const shouldCurate = workflow !== "none";
65
60
 
66
61
  if (queryList.length === 0) {
@@ -0,0 +1,10 @@
1
+ export type WebSearchWorkflow = "none" | "summary-review";
2
+ export type CuratorWorkflow = "summary-review";
3
+
4
+ export function resolveWorkflow(input: unknown, hasUI: boolean): WebSearchWorkflow {
5
+ if (!hasUI) return "none";
6
+ if (typeof input === "string" && input.trim().toLowerCase() === "summary-review") {
7
+ return "summary-review";
8
+ }
9
+ return "none";
10
+ }
@@ -6,6 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.9.14-alpha.4] - 2026-08-18
10
+
11
+ ### Fixed
12
+
13
+ - Opened `ctx.tool` detail now matches the main-chat tool block: `Box(1,1)` inner padding, a blank row under the `$` header, full-width alignment with the orchestrator bars, unpainted canvas above and below the card, host `toolTitle`/`toolOutput` colors, a dim `ctrl+o Expand` hint, and second-resolution `Took`/`Elapsed` timing.
14
+
15
+ ## [0.9.14-alpha.3] - 2026-08-17
16
+
17
+ ### Changed
18
+
19
+ - Raised built-in Goal, Ralph, and open-claude-design Grok 4.6 fallbacks from `xai/grok-4.6:high` to `xai/grok-4.6:xhigh` and added the matching `github-copilot/grok-4.6:xhigh` twin immediately after each xAI id.
20
+
21
+ ### Fixed
22
+
23
+ - Readiness-gate **Type something.** now stays in the stage and sends the typed text as the next stage-chat turn. Empty or whitespace-only custom text cannot be submitted. **Chat about this** is a plain option on the gate (no inline editor) and stays by sending `The user would like to chat more about this`.
24
+
25
+ - Fixed `ask_user_question` failing every workflow stage that called it while the graph viewer was attached. The tool always mounts with `overlay: true`, and both graph hosts — the attached stage chat and the `ctx.ui.custom` prompt node — rejected that with "ctx.ui.custom overlay mode is unavailable in the workflow graph viewer", so the questionnaire never painted and the stage failed. Overlay is a placement hint rather than a capability request: an overlay request now mounts on the stage chat's existing custom-UI slot, which already keeps the stage transcript visible and scrollable behind the question, takes focus, and resolves through `done(value)`. Workflow-level `ctx.ui.custom(factory, { overlay: true })` completes on the same path. No nested overlay is opened above the graph chrome, so `overlayOptions` and `onHandle` stay unconsumed there, and non-overlay custom UI, readiness gates, detach-does-not-cancel, and mid-mount settle guards are unchanged.
26
+
9
27
  ## [0.9.14-alpha.2] - 2026-08-17
10
28
 
11
29
  ### Breaking Changes
@@ -218,7 +218,7 @@ export default workflow({
218
218
 
219
219
  Human input is runtime-only: call `ctx.ui.input`, `ctx.ui.confirm`, `ctx.ui.select`, `ctx.ui.editor`, or `ctx.ui.custom<T>` at the point where the workflow actually needs a decision. No declaration-time HIL marker is required or supported.
220
220
 
221
- `ctx.ui.custom<T>(factory, options?)` mounts an arbitrary focused TUI component in the attached workflow graph/stage UI and resolves with the value passed to `done(value)`. The factory uses the same real TUI/theme/keybinding/component types as Atomic extension `ctx.ui.custom`. Use `options.label` for a safe display-only graph/status label and `options.replayIdentity` (do not include secrets) when the widget's semantics can change without the callsite changing; label text is not part of replay identity. Custom widget prompts require an interactive workflow graph; they are not answerable through non-TUI `workflow send` in iteration 1. Inline graph rendering is supported; `overlay: true` is rejected clearly because nested workflow graph overlays are not safely supported yet.
221
+ `ctx.ui.custom<T>(factory, options?)` mounts an arbitrary focused TUI component in the attached workflow graph/stage UI and resolves with the value passed to `done(value)`. The factory uses the same real TUI/theme/keybinding/component types as Atomic extension `ctx.ui.custom`. Use `options.label` for a safe display-only graph/status label and `options.replayIdentity` (do not include secrets) when the widget's semantics can change without the callsite changing; label text is not part of replay identity. Custom widget prompts require an interactive workflow graph; they are not answerable through non-TUI `workflow send` in iteration 1. Both inline rendering and `overlay: true` mount: overlay is a placement hint, so the request lands on the attached stage chat's custom-UI slot — which keeps the stage transcript visible behind it — rather than opening a nested overlay above the graph chrome. An in-stage `ask_user_question`, which always asks for an overlay, therefore mounts and answers there; `overlayOptions` and `onHandle` are not consumed on that path.
222
222
 
223
223
  ### Example 4 — Compose workflows
224
224
 
@@ -19,7 +19,8 @@ export const orchestratorModelConfig = {
19
19
  "openai/gpt-5.5:xhigh",
20
20
  "anthropic/claude-opus-4-8:high",
21
21
  "github-copilot/claude-opus-4.8:high",
22
- "xai/grok-4.6:high",
22
+ "xai/grok-4.6:xhigh",
23
+ "github-copilot/grok-4.6:xhigh",
23
24
  "zai/glm-5.3:high",
24
25
  "zai-coding-cn/glm-5.3:high",
25
26
  "openrouter/anthropic/claude-opus-5:high",
@@ -53,7 +54,8 @@ export const reviewerModelConfig = {
53
54
  "openai/gpt-5.5:xhigh",
54
55
  "anthropic/claude-opus-4-8:high",
55
56
  "github-copilot/claude-opus-4.8:high",
56
- "xai/grok-4.6:high",
57
+ "xai/grok-4.6:xhigh",
58
+ "github-copilot/grok-4.6:xhigh",
57
59
  "zai/glm-5.3:high",
58
60
  "zai-coding-cn/glm-5.3:high",
59
61
  "openrouter/anthropic/claude-opus-5:high",
@@ -118,7 +118,8 @@ export async function runOpenClaudeDesignWorkflow(ctx: OpenClaudeDesignContext):
118
118
  "openai-codex/gpt-5.6-sol:xhigh",
119
119
  "github-copilot/gpt-5.6-sol:xhigh",
120
120
  "openai/gpt-5.6-sol:xhigh",
121
- "xai/grok-4.6:high",
121
+ "xai/grok-4.6:xhigh",
122
+ "github-copilot/grok-4.6:xhigh",
122
123
  "zai/glm-5.3:high",
123
124
  "zai-coding-cn/glm-5.3:high",
124
125
  "openrouter/anthropic/claude-opus-5:high",
@@ -31,7 +31,8 @@ export const promptEngineerModelConfig = {
31
31
  "openai/gpt-5.5:xhigh",
32
32
  "anthropic/claude-opus-4-8:high",
33
33
  "github-copilot/claude-opus-4.8:high",
34
- "xai/grok-4.6:high",
34
+ "xai/grok-4.6:xhigh",
35
+ "github-copilot/grok-4.6:xhigh",
35
36
  "zai/glm-5.3:high",
36
37
  "zai-coding-cn/glm-5.3:high",
37
38
  "openrouter/anthropic/claude-opus-5:high",
@@ -63,7 +64,8 @@ export const researchModelConfig = {
63
64
  "openai/gpt-5.5:xhigh",
64
65
  "anthropic/claude-opus-4-8:high",
65
66
  "github-copilot/claude-opus-4.8:high",
66
- "xai/grok-4.6:high",
67
+ "xai/grok-4.6:xhigh",
68
+ "github-copilot/grok-4.6:xhigh",
67
69
  "zai/glm-5.3:high",
68
70
  "zai-coding-cn/glm-5.3:high",
69
71
  "openrouter/anthropic/claude-opus-5:high",
@@ -95,7 +97,8 @@ export const orchestratorModelConfig = {
95
97
  "openai/gpt-5.5:xhigh",
96
98
  "anthropic/claude-opus-4-8:high",
97
99
  "github-copilot/claude-opus-4.8:high",
98
- "xai/grok-4.6:high",
100
+ "xai/grok-4.6:xhigh",
101
+ "github-copilot/grok-4.6:xhigh",
99
102
  "zai/glm-5.3:high",
100
103
  "zai-coding-cn/glm-5.3:high",
101
104
  "openrouter/anthropic/claude-opus-5:high",
@@ -127,7 +130,8 @@ export const reviewerAModelConfig = {
127
130
  "openai/gpt-5.5:xhigh",
128
131
  "anthropic/claude-opus-4-8:high",
129
132
  "github-copilot/claude-opus-4.8:high",
130
- "xai/grok-4.6:high",
133
+ "xai/grok-4.6:xhigh",
134
+ "github-copilot/grok-4.6:xhigh",
131
135
  "zai/glm-5.3:high",
132
136
  "zai-coding-cn/glm-5.3:high",
133
137
  "openrouter/anthropic/claude-opus-5:high",
@@ -160,7 +164,8 @@ export const reviewerBModelConfig = {
160
164
  "openai/gpt-5.5:xhigh",
161
165
  "anthropic/claude-opus-4-8:high",
162
166
  "github-copilot/claude-opus-4.8:high",
163
- "xai/grok-4.6:high",
167
+ "xai/grok-4.6:xhigh",
168
+ "github-copilot/grok-4.6:xhigh",
164
169
  "zai/glm-5.3:high",
165
170
  "zai-coding-cn/glm-5.3:high",
166
171
  "openrouter/openai/gpt-5.6-sol:xhigh",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bastani/workflows",
3
- "version": "0.9.14-alpha.2",
3
+ "version": "0.9.14-alpha.4",
4
4
  "private": true,
5
5
  "description": "Atomic extension for multi-stage workflow authoring and execution.",
6
6
  "contributors": [