Files
pi-kit/package.json
T
Aleksey Shakhmatov c068dfae0c fix(review): address review findings (guardrails, prompts, tests, docs)
- permission-gate: block refs/tags/v* pushes, rm -r -f separated flags,
  git reset --hard, git clean (verified against actual bypasses)
- prompts: /bugfix /feature /review no longer hardcode go-standards —
  reference profile-gated <lang>-standards instead
- company-context: drop hardcoded Go stack, note TRACKER_URL priority,
  warn on context truncation instead of silently dropping rules
- repo-map/docs-map: graceful degradation when config values are TODO
- /kit-doctor: warn on unfilled config fields (repoMap/trackerUrl/docsUrl)
- audit: retry POSTs to endpoint (3 attempts, backoff), still best-effort
- install.sh: remove TODO course URL from cheat sheet
- tests: expand guardrails (43 node checks), add shell tests for create-mr.sh
  (scp/https origin parse, GITLAB_HOST override, protected branch refusal),
  cover company-context lib (normalize/fetch/truncation) and mcp-bridge
- commit package-lock.json for reproducible installs
- document npm test Node >= 22.6 requirement (type stripping)
2026-08-06 11:22:53 +03:00

47 lines
1.0 KiB
JSON

{
"name": "@mvideo/pi-kit",
"version": "0.2.1",
"private": true,
"type": "module",
"description": "Корпоративный Pi-пакет: шаблоны задач, guardrails и скиллы для команды.",
"keywords": [
"pi-package",
"pi",
"coding-agent",
"internal"
],
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git@git.codelab.vc:ai/pi-kit.git"
},
"pi": {
"extensions": [
"./extensions"
],
"skills": [
"./skills"
],
"prompts": [
"./prompts"
]
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "node --experimental-strip-types test/guardrails.test.ts && bash test/shell.test.sh"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"dependencies": {},
"optionalDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"typescript": "^5"
}
}