Add 5 pi extensions: pi-subagents, pi-crew, rpiv-pi, pi-interactive-shell, pi-intercom

This commit is contained in:
2026-05-08 15:59:25 +10:00
parent d0d1d9b045
commit 31b4110c87
457 changed files with 85157 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{
"name": "pi-intercom",
"version": "0.6.0",
"license": "MIT",
"type": "module",
"main": "index.ts",
"files": [
"index.ts",
"types.ts",
"config.ts",
"reply-tracker.ts",
"broker/**/*.ts",
"ui/**/*.ts",
"skills/**/*"
],
"scripts": {
"test": "tsx --test broker/paths.test.ts broker/spawn.test.ts reply-tracker.test.ts intercom.integration.test.ts test/inline-message.test.ts"
},
"keywords": [
"pi-package"
],
"pi": {
"extensions": [
"./index.ts"
],
"skills": [
"./skills"
]
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*"
},
"dependencies": {
"tsx": "^4.20.0",
"typebox": "^1.1.24"
}
}