Add 5 pi extensions: pi-subagents, pi-crew, rpiv-pi, pi-interactive-shell, pi-intercom
This commit is contained in:
98
extensions/pi-crew/package.json
Normal file
98
extensions/pi-crew/package.json
Normal file
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"name": "pi-crew",
|
||||
"version": "0.1.46",
|
||||
"description": "Pi extension for coordinated AI teams, workflows, worktrees, and async task orchestration",
|
||||
"author": "baphuongna",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/baphuongna/pi-crew.git"
|
||||
},
|
||||
"homepage": "https://github.com/baphuongna/pi-crew#readme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/baphuongna/pi-crew/issues"
|
||||
},
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"pi-crew": "install.mjs"
|
||||
},
|
||||
"keywords": [
|
||||
"pi-package",
|
||||
"pi",
|
||||
"pi-coding-agent",
|
||||
"teams",
|
||||
"agents",
|
||||
"multi-agent",
|
||||
"orchestration"
|
||||
],
|
||||
"files": [
|
||||
"*.ts",
|
||||
"*.mjs",
|
||||
"src/**/*.ts",
|
||||
"agents/",
|
||||
"teams/",
|
||||
"workflows/",
|
||||
"skills/**/*",
|
||||
"README.md",
|
||||
"AGENTS.md",
|
||||
"docs/",
|
||||
"tsconfig.json",
|
||||
"schema.json",
|
||||
"CHANGELOG.md",
|
||||
"LICENSE",
|
||||
"NOTICE.md"
|
||||
],
|
||||
"scripts": {
|
||||
"check": "npm run ci",
|
||||
"ci": "npm run typecheck && npm test && npm pack --dry-run",
|
||||
"typecheck": "tsc --noEmit && node --experimental-strip-types -e \"await import('./index.ts'); console.log('strip-types import ok')\"",
|
||||
"test": "npm run test:unit && npm run test:integration",
|
||||
"test:unit": "node --experimental-strip-types --test --test-concurrency=1 --test-timeout=30000 test/unit/*.test.ts",
|
||||
"test:integration": "node --experimental-strip-types --test --test-concurrency=1 --test-timeout=120000 test/integration/*.test.ts",
|
||||
"smoke:pi": "pi install ."
|
||||
},
|
||||
"exports": {
|
||||
"./schema.json": "./schema.json"
|
||||
},
|
||||
"pi": {
|
||||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"skills": [
|
||||
"./skills"
|
||||
]
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@mariozechner/pi-agent-core": "*",
|
||||
"@mariozechner/pi-ai": "*",
|
||||
"@mariozechner/pi-coding-agent": "*",
|
||||
"@mariozechner/pi-tui": "*"
|
||||
},
|
||||
"dependencies": {
|
||||
"cli-highlight": "^2.1.11",
|
||||
"diff": "^5.2.0",
|
||||
"jiti": "^2.6.1",
|
||||
"typebox": "^1.1.24"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@mariozechner/pi-agent-core": "^0.65.0",
|
||||
"@mariozechner/pi-ai": "^0.65.0",
|
||||
"@mariozechner/pi-coding-agent": "^0.65.0",
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@mariozechner/pi-agent-core": {
|
||||
"optional": true
|
||||
},
|
||||
"@mariozechner/pi-ai": {
|
||||
"optional": true
|
||||
},
|
||||
"@mariozechner/pi-coding-agent": {
|
||||
"optional": true
|
||||
},
|
||||
"@mariozechner/pi-tui": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"readmeFilename": "README.md"
|
||||
}
|
||||
Reference in New Issue
Block a user