mirror of
https://github.com/itme-brain/agent-team.git
synced 2026-05-08 11:40:12 -04:00
feat(protocol): add authored runtime and team configs
This commit is contained in:
parent
7f0892d67b
commit
84882d3b9c
6 changed files with 1274 additions and 0 deletions
51
SETTINGS.yaml
Normal file
51
SETTINGS.yaml
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# yaml-language-server: $schema=./schemas/agent-runtime.schema.json
|
||||
|
||||
version: 1
|
||||
|
||||
model:
|
||||
class: balanced
|
||||
reasoning: medium
|
||||
|
||||
runtime:
|
||||
filesystem: workspace-write
|
||||
approval: guarded-auto
|
||||
network_access: false
|
||||
tools:
|
||||
- shell
|
||||
- read
|
||||
- edit
|
||||
- write
|
||||
- glob
|
||||
- grep
|
||||
- web_fetch
|
||||
- web_search
|
||||
|
||||
safety:
|
||||
protected_paths:
|
||||
- ~/.ssh/**
|
||||
- ~/.aws/**
|
||||
- ~/.gnupg/**
|
||||
- "**/.env*"
|
||||
dangerous_shell_commands:
|
||||
ask:
|
||||
- rm *
|
||||
- rmdir *
|
||||
- git push --force*
|
||||
- git push -f*
|
||||
- git reset --hard*
|
||||
- git clean *
|
||||
- chmod *
|
||||
- dd *
|
||||
- mkfs*
|
||||
- shred *
|
||||
- kill *
|
||||
- killall *
|
||||
- sudo *
|
||||
|
||||
targets:
|
||||
claude:
|
||||
claude_md_excludes:
|
||||
- .claude/agent-memory/**
|
||||
codex:
|
||||
approval_policy: untrusted
|
||||
network_access: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue