fix(task): propagate parent session permissions to sub-agents#24293
fix(task): propagate parent session permissions to sub-agents#24293herjarsa wants to merge 1 commit into
Conversation
When spawning a sub-agent via the task tool, the child session was created with a blank permission array, losing any Plan mode restrictions (e.g. edit: deny) set on the parent. This allowed sub-agents to bypass the parent's read-only guardrails. The child session now merges the parent session's permission ruleset with its own (canTodo, canTask, primary_tools) to ensure inherited restrictions take precedence. Fixes anomalyco#6527
|
The following comment was made by an LLM, it may be inaccurate: Based on my search, here are potential related PRs: Highly Related:
Related Context:
PR #23290 in particular seems very similar to the current PR #24293, both addressing preservation of parent permissions in task child sessions. You may want to verify if this is a duplicate or if they address different aspects of the same issue. |
|
Thanks for updating your PR! It now meets our contributing guidelines. 👍 |
|
Automated PR Cleanup Thank you for contributing to opencode. Due to the high volume of PRs from users and AI agents, we periodically close older PRs using automated criteria so maintainers can focus review time on the most active and community-supported contributions. This PR was closed because it matched the following cleanup criteria:
PRs created within the last month are not affected by this cleanup. If you believe this PR was closed incorrectly, or if you are still actively working on it, please leave a comment explaining why it should be reopened. A maintainer can review and reopen it if appropriate. Thanks again for taking the time to contribute. |
Issue for this PR
Closes #6527
Type of change
What does this PR do?
When spawning a sub-agent via the task tool, the child session was created with a blank permission array, losing any Plan mode restrictions (e.g.
edit: deny) set on the parent. This allowed sub-agents to bypass the parent's read-only guardrails.The child session now inherits the parent session's permission ruleset via
Permission.merge()before applying its own sub-agent defaults. This ensures that restrictions like Plan mode (edit: deny) are preserved and cannot be bypassed by delegating to a sub-agent.How did you verify your code works?
bun typecheckinpackages/opencode— no type errors in modified filestest/tool/task.test.tsthat:edit: denyTaskTooledit: denytodowrite: deny,task: deny)Screenshots / recordings
N/A — not a UI change
Checklist