initial commit

This commit is contained in:
2026-05-11 17:20:02 -04:00
commit 9956b65e17
9 changed files with 5199 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "@evan/pi-subagents",
"version": "0.1.0",
"private": true,
"description": "Prompt-defined subagents for pi with constrained tool permissions.",
"pi": {
"extensions": [
"./index.ts"
]
},
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "oxlint . --ignore-pattern=.direnv/**"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "^0.73.1",
"typebox": "^1.1.38"
},
"devDependencies": {
"@types/node": "^22.10.0",
"oxlint": "^1.62.0",
"tsx": "^4.19.2",
"typescript": "^6.0.3"
}
}