Files
pi-lgtm/package.json
T
wassname 8ea225d119 feat: pi-lgtm -- LGTM sign-off layer on pi-tasks
- Strip: TaskExecute, TaskOutput, TaskStop, process-tracker, subagent RPC, settings menu
- Add done_criterion (required, falsifiable) to TaskCreate
- Block status=completed in TaskUpdate -- must use /lgtm
- Add lgtm_ask tool: evidence + 2 failure modes + evidence_vs_failures + remaining_uncertainty
- Add /lgtm command: human-only sign-off with stored evidence review
- Persist all lgtm_ask fields in task.metadata for async review
- Widget shows 👀 for pending_approval tasks
- Update README, package.json author

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-17 05:41:18 +08:00

51 lines
1.2 KiB
JSON

{
"name": "@wassname/pi-lgtm",
"version": "0.4.2",
"description": "A pi extension providing goal tracking with structural sign-off and LGTM workflow.",
"author": "wassname",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wassname/pi-lgtm.git"
},
"homepage": "https://github.com/wassname/pi-lgtm#readme",
"bugs": {
"url": "https://github.com/wassname/pi-lgtm/issues"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"lgtm",
"sign-off",
"goal-tracking"
],
"dependencies": {
"@mariozechner/pi-coding-agent": "^0.62.0",
"@mariozechner/pi-tui": "^0.62.0",
"@sinclair/typebox": "latest"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ test/",
"lint:fix": "biome check --fix src/ test/"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"@biomejs/biome": "^2.3.5",
"vitest": "^4.0.18"
},
"pi": {
"extensions": [
"./src/index.ts"
],
"video": "",
"image": ""
}
}