install

install is a skill for Claude Code from jeremylongshore/claude-code-slack-channel. It costs 94 tokens per session (6,092 once invoked), scanned D, original, Apache-2.0.

A command center for installing, checking, repairing, verifying, resetting, and removing a Slack channel installation. Slack is a team messaging service where apps can connect to conversations.

In plain words
What is it for?
Use it for a fresh installation, diagnostics, verification, auto-repair, manifest export, reset, feature tour, or uninstall.
Why use it?
It guides the full installation lifecycle and provides health checks and recovery paths when an existing setup has problems. It can also prepare a Slack app manifest for import.

Skill for Claude Code

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

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/.../slack.

Part of the slack-channel plugin — 4 skills, 1 command, 1 MCP server shipped together

Good fit Use it for a fresh installation, diagnostics, verification, auto-repair, manifest export, reset, feature tour, or uninstall.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add jeremylongshore/claude-code-slack-channel
Claude Code
/plugin install slack-channel

Made for: Claude Code.

Or install slack-channel, the plugin that ships this one along with the rest of its 4 skills, 1 command, 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 install

README.md
[![agentmods](https://agentmods.dev/badge/skills/jeremylongshore/claude-code-slack-channel/install/github.svg)](https://agentmods.dev/skills/jeremylongshore/claude-code-slack-channel/install)
Your own site
<a href="https://agentmods.dev/skills/jeremylongshore/claude-code-slack-channel/install"><img src="https://agentmods.dev/badge/skills/jeremylongshore/claude-code-slack-channel/install/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 install

Your own site · 80×15
<a href="https://agentmods.dev/skills/jeremylongshore/claude-code-slack-channel/install"><img src="https://agentmods.dev/badge/skills/jeremylongshore/claude-code-slack-channel/install.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,092 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 4 findings. 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.00094 $0.06092
Opus 5 $0.00047 $0.03046
Sonnet 5 $0.00019 $0.01218
Haiku 4.5 $0.00009 $0.00609

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

Security

Grade D, and why

install scanned grade D with 4 findings 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 9d 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 the agent to reveal its instructionsmediumSystem prompt leakage

Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.

- Print instructions for revoking the Slack app

Asks for rootmediumPrivilege escalation

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

command -v curl >/dev/null && command -v jq >/dev/null || echo "Install jq: brew install jq (macOS) | sudo apt install jq (Debian/Ubuntu)"

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- Move `sessions/` to `sessions.reset.<timestamp>/` (archive, never `rm -rf` — keep one rollback path per the skill's safety invariants)

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

compatibility: Requires Claude Code >= v2.1.80 with a claude.ai login (Channels research preview rejects API-key-only auth), Bun >= 1.0 (Node.js fallback supported), and a Slack workspace where you can create apps. Docto
skills/install/SKILL.md · 504 lines

How it starts

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

/slack-channel:install

Overview

CCSC lifecycle command center. One skill, eight modes — fresh install through teardown. No subcommand defaults to the full install walkthrough.

/slack-channel:install [mode]

Modes:
  install     full fresh-clone walkthrough (default)        ← new user starts here
  doctor      run a health check against an existing install
  verify      run the verification round-trip only
  repair      auto-fix common issues surfaced by doctor
  manifest    export a Slack app manifest.json (one-click import — saves 10 min of scope clicking)
  reset       wipe state and restart from Step 3 (keeps Slack app)
  tour        explain CCSC features without installing (for evaluators)
  uninstall   clean teardown — remove state dir, optionally guide Slack app deletion

This skill orchestrates. It delegates token configuration to /slack-channel:configure and pairing to /slack-channel:access pair — do not re-implement those.

Prerequisites

Three prerequisites gate a fresh install; install mode checks them as Step 0 and doctor re-checks them on demand. See references/prerequisites.md for the exact commands and recovery paths.

  1. Bun ≥ 1.0bun --version. Node.js fallback is fine (see the prerequisites doc).
  2. Claude Code ≥ v2.1.80claude --version. Older versions cannot load Channels.
  3. claude.ai login (NOT API-key-only) — Channels is Research Preview and rejects pure API-key auth.

Doctor mode additionally shells out to curl and jq (see "Doctor dependencies" below), and every mode past Step 1 assumes a Slack workspace where you can create an app.

Instructions

  1. Parse the first word of $ARGUMENTS.
  2. If empty or install, run the install mode.
  3. Otherwise dispatch to the matching mode described in the sections below — each Mode: section is the complete procedure for that mode.
  4. Unknown modes: show the help block above and exit.

Mode: install (default)

Read the full file on GitHub · 504 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 504 lines · 94 tokens per session scan D 6768ed54b3e6

Subscribe to this mod's changes

install is a skill published in the GitHub repository jeremylongshore/claude-code-slack-channel (39 stars, last pushed yesterday), licensed Apache-2.0. It adds 94 tokens to every session and 6,092 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it D with 4 findings (asks the agent to reveal its instructions, asks for root, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.