{
  "name": "@elizaos/plugin-agent-skills",
  "version": "1.0.0",
  "description": "Agent Skills plugin for elizaOS - implement the Agent Skills specification with progressive disclosure",
  "main": "dist/index.js",
  "type": "module",
  "types": "dist/index.d.ts",
  "keywords": [
    "elizaos",
    "plugin",
    "agent-skills",
    "clawhub",
    "otto",
    "skills",
    "agents",
    "progressive-disclosure"
  ],
  "dependencies": {
    "@elizaos/core": "workspace:*",
    "fflate": "^0.8.2"
  },
  "devDependencies": {
    "@anthropic-ai/sdk": "^0.30.1",
    "tsup": "8.3.5",
    "typescript": "^5.0.0",
    "vitest": "^2.0.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rm -rf dist",
    "lint": "prettier --write ./src",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "publishConfig": {
    "access": "public"
  },
  "agentConfig": {
    "pluginType": "elizaos:plugin:1.0.0",
    "pluginParameters": {
      "SKILLS_DIR": {
        "type": "string",
        "description": "Directory to install and load skills from (default: ./skills)",
        "required": false,
        "example": "./skills"
      },
      "SKILLS_AUTO_LOAD": {
        "type": "boolean",
        "description": "Automatically load installed skills on startup",
        "required": false,
        "example": "true"
      },
      "SKILLS_REGISTRY": {
        "type": "string",
        "description": "Skill registry URL (default: https://clawhub.ai)",
        "required": false,
        "example": "https://clawhub.ai"
      },
      "BUNDLED_SKILLS_DIRS": {
        "type": "string",
        "description": "Comma-separated list of directories containing bundled (read-only) skills",
        "required": false,
        "example": "./bundled-skills,./vendor-skills"
      },
      "OTTO_BUNDLED_SKILLS_DIR": {
        "type": "string",
        "description": "Legacy: Single directory containing Otto bundled skills",
        "required": false,
        "example": "./otto/skills"
      }
    }
  },
  "milaidy": {
    "platforms": [
      "node"
    ],
    "runtime": "node",
    "platformDetails": {
      "node": "Node.js via main entry point"
    }
  }
}
