feat: enable permission-aware subagents

This commit is contained in:
叶林立
2026-08-26 10:49:26 +08:00
parent d3bf562189
commit 7571ba6dd9
185 changed files with 48365 additions and 26 deletions
+95
View File
@@ -0,0 +1,95 @@
# Security Policy
This document explains the security model behind `@tintinweb/pi-subagents` and
where the boundaries are.
`pi-subagents` is a [pi](https://pi.dev) extension. It spawns and orchestrates
autonomous sub-agents that run locally within the same security boundary as the
user running pi, and inherit pi's trust model. It is the responsibility of the
user to monitor those agents' operations or to contain them within a container,
virtual machine, or other sandbox solution.
Sub-agents run with the local user account's privileges and can use the tools
they are granted (reading and writing files, running commands, network access,
etc.). They treat the local user account and files writable by that account as
inside the same trust boundary as the pi process itself. If an attacker can
modify files under the user's home directory, workspace, shell startup files,
environment, pi configuration, or this extension's configuration, they can
generally influence pi, its sub-agents, or other local developer tools. Reports
that depend on such prior local write access are not security vulnerabilities
unless they demonstrate how `pi-subagents` grants that write access or crosses an
operating-system privilege boundary.
`pi-subagents` relies on the user only loading trustworthy agent definitions
(`.pi/agents/*.md`, `.agents/agents/*.md`, and global agents), skills, and
tools, and only using pi within trusted repositories. Files like `AGENTS.md`,
custom agent frontmatter/system prompts, preloaded skills, or instructions
embedded in repository content and comments can be used to prompt-inject the
coding agent and its sub-agents trivially, and this cannot be protected against.
## Reporting a Vulnerability
If you believe you found a security vulnerability in `pi-subagents`, please
report it privately by opening a draft advisory through
[GitHub Security Advisories](https://github.com/tintinweb/pi-subagents/security/advisories/new)
for this repository.
Please include:
- A description of the issue and its impact
- Steps to reproduce, proof of concept, or relevant logs
- Affected version, commit, or configuration
- Any known mitigations
Do not open a public issue for security-sensitive reports. Reports will be
reviewed and disclosure coordinated as appropriate.
## Scope
Security issues in the published npm package and the code in this repository are
in scope — for example, a flaw in `pi-subagents` that crosses an
operating-system privilege boundary, or that causes the extension to bypass a
tool restriction, denylist, or agent boundary it claims to enforce.
## Out Of Scope
- Local code execution or sandboxing behavior (sub-agents intentionally do not
have a sandbox and run with the user's privileges)
- Behavior of pi itself, or of other pi extensions, skills, or tools installed by
the user (report those to their respective projects)
- Risks from working in untrusted repositories
- Risks from installing or loading untrusted agent definitions, skills,
extensions, packages, or tools
- Issues caused by non-trustworthy MITM proxies
- Public internet exposure of a pi installation
- Prompt injection attacks (including via `AGENTS.md`, agent frontmatter, custom
system prompts, preloaded skills, repository content, or context inheritance)
- Exposed secrets that are third-party/user-controlled credentials
- Reports requiring the ability to create, modify, delete, or replace files,
directories, symlinks, environment variables, shell configuration, or other
user-controlled local state on the target machine. This includes `.pi/agents/`,
`.agents/agents/`, agent and extension configuration, persistent agent memory,
workspace files, `AGENTS.md`, skills, dotfiles, and files synchronized through NFS, roaming
profiles, or dotfile managers, unless the report shows how `pi-subagents`
itself grants that access.
- Issues caused by intentionally weakened user configuration
- Resource/DOS claims that require trusted local input/config
- Reports about malicious model output
- User-approved or user-initiated local actions presented as vulnerabilities
## Notes for Reporters
The most useful reports show a current, reproducible security boundary bypass
with demonstrated impact. Reports that only show expected local-agent behavior,
prompt injection, or a malicious trusted agent definition/skill are not security
vulnerabilities under this model.
For example, a report showing that malicious contents written to a trusted agent
definition or extension configuration cause a sub-agent to execute commands, load
attacker-controlled tools, or send credentials to an attacker-controlled endpoint
is out of scope.
When possible, include the exact affected path, package version or commit SHA,
configuration, and a proof of concept against the latest release or latest
`master`. For dependency reports, include evidence that the shipped dependency is
affected and that the issue is reachable through `pi-subagents`.