Initial commit: pygenium as git submodule

This commit is contained in:
2026-08-07 14:54:45 -04:00
commit 581436ed23
61 changed files with 9331 additions and 0 deletions

55
package.json Normal file
View File

@@ -0,0 +1,55 @@
{
"name": "pygienium",
"version": "0.1.0",
"description": "Code hygiene extension for pi — isolated sub-agent checks that scan a target, apply fixes, and emit a findings+changes report.",
"keywords": [
"pi-package",
"pi-extension",
"code-hygiene",
"lint",
"subagents",
"pygienium"
],
"license": "MIT",
"type": "module",
"engines": {
"bun": ">=1.1.0"
},
"pi": {
"extensions": [
"./src/index.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-agent-core": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"typebox": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test"
}
}