pstack: route hardest tasks to claude-fable-5-thinking-max#143
Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
Bugbot Autofix is ON, but it could not run because the branch was deleted or merged before autofix could start.
Reviewed by Cursor Bugbot for commit 3f43ff6. Configure here.
| **Use `subagent_type: "poteto-agent"` for any subagent you spawn inside a playbook step** (code-writing delegates, ad-hoc helpers). `/poteto-mode` and `poteto-agent` route through the same wrapper. Routed workflow skills (`how`, `why`, `interrogate`, `reflect`) set their own `subagent_type` for diverse-model review; respect what the skill prescribes, don't override to `poteto-agent`. | ||
|
|
||
| **Defaults for every `Task` call.** `run_in_background: true`, agent mode (readonly strips MCP), file pointers not inlined context, explicit model per role (configurable via `/setup-pstack`; defaults `grok-4.5-fast-xhigh` for code, `claude-opus-4-8-thinking-xhigh` for prose and judgment). | ||
| **Defaults for every `Task` call.** `run_in_background: true`, agent mode (readonly strips MCP), file pointers not inlined context, explicit model per role (configurable via `/setup-pstack`; defaults `grok-4.5-fast-xhigh` for code, `claude-opus-4-8-thinking-xhigh` for prose and judgment). The hardest changes (cross-cutting design, gnarly concurrency, subtle algorithms, vague intent) go to `claude-fable-5-thinking-max`. |
There was a problem hiding this comment.
Hardest-tasks override never applies
Medium Severity · Logic Bug
poteto-mode hardcodes claude-fable-5-thinking-max for "hardest tasks", ignoring the configurable model defined via setup-pstack. Unlike other roles, this prevents user overrides in pstack-models.mdc from taking effect, forcing users to the hardcoded model even if they lack access or prefer another.
Reviewed by Cursor Bugbot for commit 3f43ff6. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Summary
claude-fable-5-thinking-max(mirrors the private setup's routing; deliberately no Sol tier here).hardest tasks:role line to the setup-pstack defaults rule so/setup-pstackusers can override it.Test plan
Note
Low Risk
Skill and plugin metadata only; no application runtime or security-sensitive code paths change.
Overview
Adds a hardest-tasks model tier to pstack so the heaviest work (cross-cutting design, gnarly concurrency, subtle algorithms, vague intent) defaults to
claude-fable-5-thinking-maxonTasksubagent calls, alongside the existing code and judgment defaults.setup-pstack gains a matching
hardest tasks:line in the generatedpstack-models.mdctemplate so users can override that role. Plugin version is bumped to 0.10.2.Reviewed by Cursor Bugbot for commit 3f43ff6. Bugbot is set up for automated code reviews on this repo. Configure here.