mirror of
https://github.com/itme-brain/agent-team.git
synced 2026-05-08 16:50:12 -04:00
fix: resolve critical issues in install.sh, settings.json, and worker-protocol
- install.sh: replace unreachable $? check with `if !` pattern (set -e exits before the check runs on Windows mklink failure) - settings.json: remove fragile Bash deny patterns that can't match across path separators; broaden .env denies to recursive **/.env with Read/Write/Edit - worker-protocol: align QA instruction with qa-checklist — qa_check goes in frontmatter envelope, not as a prose line
This commit is contained in:
parent
341f500396
commit
b741354dd8
3 changed files with 9 additions and 11 deletions
|
|
@ -19,18 +19,18 @@
|
|||
"Read(~/.ssh/**)",
|
||||
"Read(~/.aws/**)",
|
||||
"Read(~/.gnupg/**)",
|
||||
"Read(./.env)",
|
||||
"Read(./.env.*)",
|
||||
"Read(**/.env)",
|
||||
"Read(**/.env.*)",
|
||||
"Write(~/.ssh/**)",
|
||||
"Write(~/.aws/**)",
|
||||
"Write(~/.gnupg/**)",
|
||||
"Write(**/.env)",
|
||||
"Write(**/.env.*)",
|
||||
"Edit(~/.ssh/**)",
|
||||
"Edit(~/.aws/**)",
|
||||
"Edit(~/.gnupg/**)",
|
||||
"Bash(*.ssh/*)",
|
||||
"Bash(*.aws/*)",
|
||||
"Bash(*.gnupg/*)",
|
||||
"Bash(*.env*)"
|
||||
"Edit(**/.env)",
|
||||
"Edit(**/.env.*)"
|
||||
],
|
||||
"ask": [
|
||||
"Bash(rm *)",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue