{
  "name": "@sleekai/cortex",
  "version": "2.1.0",
  "type": "module",
  "description": "Cortex — AI Compute Operating System: capability-planned, budget-capped, harness-agnostic dispatch kernel (UCP v2)",
  "bin": {
    "cortex": "dist/index.js",
    "cx": "dist/index.js",
    "ucp": "dist/index.js",
    "cortex-mcp": "dist/mcp-server.js",
    "cortex-install-skill": "skills/install.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sleekai/cortex.git"
  },
  "homepage": "https://github.com/sleekai/cortex#readme",
  "bugs": {
    "url": "https://github.com/sleekai/cortex/issues"
  },
  "keywords": [
    "ai",
    "compute",
    "os",
    "dispatch",
    "kernel",
    "llm",
    "agent",
    "ucp"
  ],
  "license": "MPL-2.0",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "typescript": "^5.7.3"
  },
  "devDependencies": {
    "@types/node": "^22.10.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && cp src/worker/registry.default.json dist/worker/",
    "start": "node dist/index.js",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "start:mcp": "node dist/mcp-server.js",
    "test": "rm -rf dist-test && tsc -p tsconfig.test.json && cp src/worker/registry.default.json dist-test/src/worker/ && node --test dist-test/test/*.test.js",
    "toolchain": "npm run build && node dist/index.js",
    "prepublishOnly": "npm run build && npm test"
  }
}
