修复委派任务的权限策略继承#29
Open
Lixtt wants to merge 1 commit into
Open
Conversation
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.
修复 #28。
变更内容
task/parallel_task创建子运行时,将被委派 agent 的非默认权限策略写入子AgentConfig.permission_checker。PermissionPolicy,覆盖default_decision = Allow这类没有 allow/deny 列表但仍然显式配置的策略。验证
cargo fmtcargo test -p a3s-code-core --libcargo test -p a3s-code-core --lib tools::task::testscargo test -p a3s-code-core --lib agent_api::agent_binding::tests补充说明:不带
--lib的cargo test -p a3s-code-core <filter>会编译 integration tests,目前 main 上已有的core/tests/test_web_search_headless.rs存在Option<SearchConfig>与Option<Arc<SearchConfig>>类型不匹配问题,会阻断该命令;这个问题不是本 PR 引入的。