{
  "name": "@jaybeeuu/agent-cortex",
  "version": "1.40.0",
  "description": "Personal PI package with custom agents, skills, and extensions",
  "keywords": [
    "pi-package"
  ],
  "license": "MIT",
  "repository": "https://github.com/jaybeeuu/agent-cortex",
  "bin": {
    "agent-cortex": "./bin/agent-cortex.mjs"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.1",
    "tsx": "^4.0.0",
    "yaml": "^2.0.0"
  },
  "pi": {
    "extensions": [
      "./extensions"
    ],
    "skills": [
      "./skills"
    ]
  },
  "scripts": {
    "build": "echo 'Build complete — no compilation needed for PI package'",
    "lint": "pnpm typecheck && pnpm check:sync",
    "check:sync": "node scripts/check-no-sync.mjs",
    "test": "node --test test/*.test.mjs && pnpm -r test",
    "typecheck": "pnpm -r typecheck",
    "build:copilot": "node scripts/build-copilot-agents.mjs",
    "changeset": "changeset",
    "version-packages": "changeset version && bash scripts/sync-plugin-version.sh && pnpm build:copilot",
    "publish-package": "TARBALL=$(pnpm pack | tail -n 1) && npm publish \"$TARBALL\" --provenance --access public",
    "release": "changeset publish",
    "postinstall": "bash scripts/install-instructions.sh"
  }
}