configure

configure is a skill for Claude Code from pierreraii/claude-slack-bridge. It costs 56 tokens per session (767 once invoked), scanned B, original, Apache-2.0.

A setup and access-control command for connecting a bot to Slack, a workplace messaging service. It saves Slack tokens and reports who is allowed to contact the assistant.

In plain words
What is it for?
Use it to save bot and app tokens, check their status, review access rules, approve pairings, and enable an allowlist of permitted senders.
Why use it?
It removes the manual work of locating configuration files and checking whether the Slack connection is ready or restricted.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Part of the slack-bridge plugin — 2 skills, 1 MCP server shipped together

Good fit Use it to save bot and app tokens, check their status, review access rules, approve pairings, and enable an allowlist of permitted senders.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pierreraii/claude-slack-bridge/configure
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add pierreraii/claude-slack-bridge --skill configure
Clone the repo
git clone --depth 1 https://github.com/pierreraii/claude-slack-bridge

Made for: Claude Code.

Or install slack-bridge, the plugin that ships this one along with the rest of its 2 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for configure

README.md
[![agentmods](https://agentmods.dev/badge/skills/pierreraii/claude-slack-bridge/configure/github.svg)](https://agentmods.dev/skills/pierreraii/claude-slack-bridge/configure)
Your own site
<a href="https://agentmods.dev/skills/pierreraii/claude-slack-bridge/configure"><img src="https://agentmods.dev/badge/skills/pierreraii/claude-slack-bridge/configure/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for configure

Your own site · 80×15
<a href="https://agentmods.dev/skills/pierreraii/claude-slack-bridge/configure"><img src="https://agentmods.dev/badge/skills/pierreraii/claude-slack-bridge/configure.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 767 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.00767
Opus 5 $0.00028 $0.00383
Sonnet 5 $0.00011 $0.00153
Haiku 4.5 $0.00006 $0.00077

Measured 10d ago against content hash 81703e4a1c7c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

configure scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

5. `chmod 600 ~/.claude/channels/slack/.env`
skills/configure/SKILL.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/slack-bridge:configure — Slack Channel Setup

Writes the bot and app tokens to ~/.claude/channels/slack/.env and orients the user on access policy. The server reads this file at boot.

Arguments passed: $ARGUMENTS


Dispatch on arguments

No args — status and guidance

Read both state files and give the user a complete picture:

  1. Tokens — check ~/.claude/channels/slack/.env for SLACK_BOT_TOKEN and SLACK_APP_TOKEN. Show set/not-set; if set, show first 10 chars masked.

  2. Access — read ~/.claude/channels/slack/access.json (missing = defaults). Show: dmPolicy, allowed senders count and list, pending pairings.

  3. What next — concrete next step:

    • No tokens → show the Slack App setup guide below
    • Tokens set, nobody allowed → "DM your bot on Slack. Approve with /slack-bridge:access pair <code>."
    • Tokens set, someone allowed → "Ready. DM your bot to reach the assistant."

Push toward lockdown. Once the allowlist is set, offer to flip to allowlist policy.


<bot-token> <app-token> — save tokens

  1. Split $ARGUMENTS — first is SLACK_BOT_TOKEN, second is SLACK_APP_TOKEN.
  2. Warn if prefixes don't match xoxb- / xapp-.
  3. mkdir -p ~/.claude/channels/slack
  4. Read existing .env, update/add both lines, preserve other keys. Write back.
  5. chmod 600 ~/.claude/channels/slack/.env
  6. Show no-args status after saving.
  7. Note: restart required for token changes (/reload-plugins).

clear — remove tokens

Delete both token lines (or the file if that's all it contains).


Slack App Setup Guide

Show this when tokens are not set:

To create a Slack bot:

1. Go to https://api.slack.com/apps → "Create New App" → "From scratch"

2. Left sidebar → "Socket Mode" → Enable Socket Mode
   Generate an App-Level Token with scope: connections:write
   Copy it — this is your SLACK_APP_TOKEN (starts with xapp-)

3. Left sidebar → "OAuth & Permissions" → "Bot Token Scopes" → Add:
     chat:write, reactions:write, im:history, im:write,
     channels:history, groups:history, files:read, files:write, users:read

4. Left sidebar → "Event Subscriptions" → Enable Events → Subscribe to:
     message.im, message.channels, message.groups, app_mention

5. Left sidebar → "Install App" → "Install to Workspace" → Allow
   Copy the Bot User OAuth Token — this is your SLACK_BOT_TOKEN (starts with xoxb-)

6. Run: /slack-bridge:configure xoxb-... xapp-...

Read the full file on GitHub · 84 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 84 lines · 56 tokens per session scan B 81703e4a1c7c

Subscribe to this mod's changes

configure is a skill published in the GitHub repository pierreraii/claude-slack-bridge (1 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 56 tokens to every session and 767 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

build-design-workflow

Configure the design phase of the /process workflow. Asks whether the user wants a design step at all (skip-able), then asks whether they already have a design process (e.g. an existing /design command or skill). If they do, reads it and inspects whether it already commits/pushes/opens a PR; whatever is missing gets…

tomeraitz/claude-slack-bridge · 256 tokens

build-plan-workflow

Configure the plan phase of the /process workflow. Asks whether the user wants a plan step at all (skip-able), then asks whether they already have a planning process (e.g. an existing /plan command or skill). If they do, reads it and inspects whether it already commits/pushes/opens a PR; whatever is missing gets…

tomeraitz/claude-slack-bridge · 259 tokens

build-process-skill

Generate the /process orchestrator command for this repo. Writes .claude/commands/process.md — the local entry point that reads .claude/process-template.json and walks through the configured workflow steps in order, dispatching to each step's slash command and routing to /required-fixes when a /review step surfaces…

tomeraitz/claude-slack-bridge · 120 tokens

build-run-plan-flow

Configure the run-plan (implementation) phase of the /process workflow. Asks whether the user wants a run-plan step at all (skip-able), then asks whether they already have a run-plan process (e.g. an existing /run-plan command or skill that takes a plan doc and implements it). If they do, reads it and inspects whether…

tomeraitz/claude-slack-bridge · 243 tokens

slack-webhook

Send the user a Slack message as Claude — progress, a finished task, an alert, anything worth interrupting them for. Use whenever you want to reach the user outside this chat. Required instead of the Slack connector, which posts as the user and doesn't notify them.

tomeraitz/claude-slack-bridge · 59 tokens

slack-expert

Expert in Slack bot development, Block Kit UI, Events API, slash commands, OAuth flows, and app distribution. Use when the user mentions communication, collaboration, bots, API, Slack bot, or Block Kit, or when the task involves Slack Platform, Development Tools, Slack Bot with Bolt, or Python Slack Bot.

personamanagmentlayer/pcl · 69 tokens