{
  "name": "@moxxy/plugin-channel-slack",
  "version": "0.38.0",
  "description": "Slack bot channel for moxxy. Ingests Slack Events API over the proxy relay, drives the Session, and streams threaded replies. Autonomous allow-list permission model (no human in the loop).",
  "keywords": [
    "moxxy",
    "agent",
    "channel",
    "slack",
    "bot"
  ],
  "homepage": "https://moxxy.ai",
  "bugs": {
    "url": "https://github.com/moxxy-ai/moxxy/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/moxxy-ai/moxxy.git",
    "directory": "packages/plugin-channel-slack"
  },
  "author": "Michal Makowski <michal.makowski97@gmail.com>",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "moxxy": {
    "plugin": {
      "entry": "./dist/index.js",
      "kind": "cli"
    },
    "requirements": [
      {
        "kind": "plugin",
        "name": "@moxxy/plugin-vault",
        "hint": "slack resolves the vault from the service registry for its bot token + signing secret + pairing; @moxxy/plugin-vault must load first"
      }
    ],
    "setup": {
      "title": "Slack bot",
      "description": "Create an app at https://api.slack.com/apps → install it to your workspace and copy the Bot User OAuth Token (xoxb-…) plus the Signing Secret (Basic Information). Events arrive over an HTTP ingest URL — after setup, `moxxy slack pair` prints the Request URL to paste into Event Subscriptions; pairing is trust-on-first-@mention.",
      "fields": [
        {
          "key": "botToken",
          "label": "Bot User OAuth Token (xoxb-…)",
          "kind": "secret",
          "vaultKey": "slack_bot_token",
          "required": true,
          "placeholder": "xoxb-…"
        },
        {
          "key": "signingSecret",
          "label": "Signing Secret",
          "kind": "secret",
          "vaultKey": "slack_signing_secret",
          "required": true
        }
      ]
    }
  },
  "dependencies": {
    "@clack/prompts": "^1.4.0",
    "zod": "^3.25.76",
    "@moxxy/channel-kit": "0.38.0",
    "@moxxy/config": "0.38.0",
    "@moxxy/core": "0.38.0",
    "@moxxy/plugin-tunnel-proxy": "0.38.0",
    "@moxxy/plugin-vault": "0.38.0",
    "@moxxy/sdk": "0.38.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "typescript": "^6.0.3",
    "vitest": "^3.2.6",
    "@moxxy/testing": "0.0.64",
    "@moxxy/tsconfig": "0.0.0",
    "@moxxy/vitest-preset": "0.0.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "clean": "rm -rf dist .turbo"
  }
}