Compare commits
6 Commits
4021013e0b
...
f6658b6bba
| Author | SHA1 | Date | |
|---|---|---|---|
|
f6658b6bba
|
|||
|
a707940a3a
|
|||
|
bc31593385
|
|||
|
ed360e5cc2
|
|||
|
fd01d4a42e
|
|||
|
8b2d0cf68f
|
@@ -1,5 +1,8 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://raw.githubusercontent.com/gotgenes/pi-packages/main/packages/pi-permission-system/schemas/permissions.schema.json",
|
"$schema": "https://raw.githubusercontent.com/gotgenes/pi-packages/main/packages/pi-permission-system/schemas/permissions.schema.json",
|
||||||
|
"debugLog": false,
|
||||||
|
"permissionReviewLog": true,
|
||||||
|
"yoloMode": false,
|
||||||
"permission": {
|
"permission": {
|
||||||
"*": "ask",
|
"*": "ask",
|
||||||
"path": {
|
"path": {
|
||||||
@@ -10,11 +13,10 @@
|
|||||||
},
|
},
|
||||||
"read": "allow",
|
"read": "allow",
|
||||||
"glob": "allow",
|
"glob": "allow",
|
||||||
"grep": "allow",
|
|
||||||
"find": "allow",
|
|
||||||
"ls": "allow",
|
|
||||||
"write": "allow",
|
"write": "allow",
|
||||||
"edit": "allow",
|
"edit": "allow",
|
||||||
|
"lsp_diagnostics": "allow",
|
||||||
|
"lens_diagnostics": "allow",
|
||||||
"bash": {
|
"bash": {
|
||||||
"*": "ask",
|
"*": "ask",
|
||||||
"cat *": "allow",
|
"cat *": "allow",
|
||||||
@@ -26,6 +28,7 @@
|
|||||||
"tree *": "allow",
|
"tree *": "allow",
|
||||||
"stat *": "allow",
|
"stat *": "allow",
|
||||||
"file *": "allow",
|
"file *": "allow",
|
||||||
|
"identify *": "allow",
|
||||||
"wc *": "allow",
|
"wc *": "allow",
|
||||||
"du *": "allow",
|
"du *": "allow",
|
||||||
"df *": "allow",
|
"df *": "allow",
|
||||||
@@ -35,6 +38,7 @@
|
|||||||
"rg *": "allow",
|
"rg *": "allow",
|
||||||
"find *": "allow",
|
"find *": "allow",
|
||||||
"fd *": "allow",
|
"fd *": "allow",
|
||||||
|
"sort *": "allow",
|
||||||
"diff *": "allow",
|
"diff *": "allow",
|
||||||
"cmp *": "allow",
|
"cmp *": "allow",
|
||||||
"comm *": "allow",
|
"comm *": "allow",
|
||||||
@@ -52,6 +56,9 @@
|
|||||||
"git branch": "allow",
|
"git branch": "allow",
|
||||||
"git remote -v": "allow"
|
"git remote -v": "allow"
|
||||||
},
|
},
|
||||||
"external_directory": "ask"
|
"external_directory": {
|
||||||
|
"*": "ask",
|
||||||
|
"/home/fpasqua/.local/share/pnpm/store/v11/links/@earendil-works/pi-coding-agent/*": "allow"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
"tui.editor.deleteWordBackward": ["ctrl+w", "alt+backspace", "ctrl+backspace"],
|
"tui.editor.deleteWordBackward": ["ctrl+w", "alt+backspace", "ctrl+backspace"],
|
||||||
"tui.editor.deleteWordForward": ["alt+d", "alt+delete", "ctrl+delete"]
|
"tui.editor.deleteWordForward": ["ctrl+delete"],
|
||||||
|
"app.message.dequeue": ["ctrl+up"],
|
||||||
|
"app.models.reorderUp": ["ctrl+up"],
|
||||||
|
"app.models.reorderDown": ["ctrl+down"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"lastChangelogVersion": "0.80.6",
|
"lastChangelogVersion": "0.80.7",
|
||||||
"theme": "dark",
|
"theme": "dark",
|
||||||
"defaultProvider": "openai-codex",
|
"defaultProvider": "openai-codex",
|
||||||
"defaultModel": "gpt-5.6-terra",
|
"defaultModel": "gpt-5.6-sol",
|
||||||
"defaultThinkingLevel": "high",
|
"defaultThinkingLevel": "medium",
|
||||||
"hideThinkingBlock": true,
|
"hideThinkingBlock": true,
|
||||||
"showCacheMissNotices": false,
|
"showCacheMissNotices": false,
|
||||||
"enabledModels": [
|
"enabledModels": [
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
"packages": [
|
"packages": [
|
||||||
"npm:@gotgenes/pi-permission-system",
|
"npm:@gotgenes/pi-permission-system",
|
||||||
"npm:@gotgenes/pi-subagents",
|
"npm:@gotgenes/pi-subagents",
|
||||||
"npm:@juicesharp/rpiv-ask-user-question"
|
"npm:@juicesharp/rpiv-ask-user-question",
|
||||||
|
"npm:pi-lens"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
5
subagents.json
Normal file
5
subagents.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"maxConcurrent": 3,
|
||||||
|
"defaultMaxTurns": 15,
|
||||||
|
"graceTurns": 3
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user