{
  "name": "pi-skill-recommender",
  "version": "0.1.0",
  "description": "Pi package that observes repeated workflows and drafts reusable skills from them.",
  "type": "module",
  "license": "MIT",
  "author": "Steve Frost",
  "homepage": "https://github.com/steveafrost/pi-skill-recommender#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/steveafrost/pi-skill-recommender.git"
  },
  "bugs": {
    "url": "https://github.com/steveafrost/pi-skill-recommender/issues"
  },
  "keywords": [
    "pi-package",
    "pi",
    "extension",
    "skills",
    "automation",
    "productivity"
  ],
  "files": [
    "README.md",
    "extensions/**/*.ts"
  ],
  "scripts": {
    "clean": "echo 'nothing to clean yet'",
    "build": "echo 'nothing to build yet'",
    "check:manifest": "node --input-type=module -e \"import fs from 'node:fs'; const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8')); if (!(pkg.keywords || []).includes('pi-package')) throw new Error('Missing pi-package keyword'); if (!(pkg.pi?.extensions || []).includes('./extensions/*.ts')) throw new Error('Missing ./extensions/*.ts pi manifest entry'); console.log('package manifest OK');\"",
    "typecheck": "tsc -p tsconfig.json",
    "check": "node --input-type=module -e \"import fs from 'node:fs'; const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8')); if (!(pkg.keywords || []).includes('pi-package')) throw new Error('Missing pi-package keyword'); if (!(pkg.pi?.extensions || []).includes('./extensions/*.ts')) throw new Error('Missing ./extensions/*.ts pi manifest entry'); console.log('package manifest OK');\" && tsc -p tsconfig.json"
  },
  "engines": {
    "node": ">=20"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "^0.78.1",
    "@types/node": "^24.12.4",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3"
  },
  "pi": {
    "extensions": [
      "./extensions/*.ts"
    ]
  }
}
