configure

configure is a skill for Claude Code from southlab-ai/Claude-Plugin-Marketplace. It costs 66 tokens per session (896 once invoked), scanned B, original, MIT.

A setup helper for connecting Claude Sentinel to a Telegram channel. It stores the Telegram bot token, checks access rules, and prepares the gateway service, including on a VPS.

In plain words
What is it for?
Use it to add or check a Telegram bot connection, review allowed senders and pairing requests, and get the next setup step when something is missing.
Why use it?
It avoids manually editing several environment and access files, and shows whether the token, permissions, and gateway service are ready or need attention.

Skill for Claude Code

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

Part of the claude-sentinel plugin — 4 skills shipped together

Good fit Use it to add or check a Telegram bot connection, review allowed senders and pairing requests, and get the next setup step when something is missing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/southlab-ai/claude-plugin-marketplace/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 southlab-ai/Claude-Plugin-Marketplace --skill configure
Clone the repo
git clone --depth 1 https://github.com/southlab-ai/Claude-Plugin-Marketplace

Made for: Claude Code.

Or install claude-sentinel, the plugin that ships this one along with the rest of its 4 skills.

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/southlab-ai/claude-plugin-marketplace/configure/github.svg)](https://agentmods.dev/skills/southlab-ai/claude-plugin-marketplace/configure)
Your own site
<a href="https://agentmods.dev/skills/southlab-ai/claude-plugin-marketplace/configure"><img src="https://agentmods.dev/badge/skills/southlab-ai/claude-plugin-marketplace/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/southlab-ai/claude-plugin-marketplace/configure"><img src="https://agentmods.dev/badge/skills/southlab-ai/claude-plugin-marketplace/configure.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 896 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.00066 $0.00896
Opus 5 $0.00033 $0.00448
Sonnet 5 $0.00013 $0.00179
Haiku 4.5 $0.00007 $0.00090

Measured 11d ago against content hash b2a7ef59b003, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d 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` both files — the token is a credential.
plugins/claude-sentinel/skills/configure/SKILL.md · 87 lines

How it starts

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

/sentinel:configure — Telegram Channel Setup

Writes the bot token to ~/.claude/channels/telegram/.env AND ~/.claude/channels/telegram/gateway.env (both needed — .env for the MCP server, gateway.env for the systemd service). Orients the user on access policy.

Arguments passed: $ARGUMENTS


Dispatch on arguments

No args — status and guidance

Read state files and give the user a complete picture:

  1. Token — check ~/.claude/channels/telegram/.env for TELEGRAM_BOT_TOKEN. Show set/not-set; if set, show first 10 chars masked (123456789:...).

  2. Gateway env — check ~/.claude/channels/telegram/gateway.env exists and matches. Warn if missing or mismatched.

  3. Access — read ~/.claude/channels/telegram/access.json (missing file = defaults: dmPolicy: "pairing", empty allowlist). Show:

    • DM policy and what it means
    • Allowed senders: count and list
    • Pending pairings: count with codes
  4. Gateway status — check if telegram-gateway.service is running: systemctl --user is-active telegram-gateway.service 2>/dev/null

  5. What next — concrete next step based on state:

    • No token → "Get a token from @BotFather on Telegram (from your phone, not the VPS — the VPS has no browser). Then run /sentinel:configure <token>."
    • Token set, nobody allowed → "DM your bot on Telegram. It replies with a code; approve with /sentinel:access pair <code>."
    • Token set, someone allowed, no gateway → "Run /sentinel:deploy to install the persistent gateway."
    • Everything ready → "Ready. DM your bot to reach the assistant."

Push toward lockdown. Once IDs are captured via pairing, suggest switching to allowlist policy. Pairing is temporary — allowlist is the goal.

<token> — save it

  1. Treat $ARGUMENTS as the token (trim whitespace). BotFather tokens look like 123456789:AAH... — numeric prefix, colon, long string.
  2. mkdir -p ~/.claude/channels/telegram
  3. Read existing .env if present; update/add the TELEGRAM_BOT_TOKEN= line, preserve other keys (like OPENAI_API_KEY). Write back, no quotes around value.
  4. Write gateway.env with same token (separate file for systemd EnvironmentFile).
  5. chmod 600 both files — the token is a credential.
  6. Confirm, then show the no-args status so the user sees where they stand.

Read the full file on GitHub · 87 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. 11d ago First seen · 87 lines · 66 tokens per session scan B b2a7ef59b003

Subscribe to this mod's changes

configure is a skill published in the GitHub repository southlab-ai/Claude-Plugin-Marketplace (2 stars, last pushed 1mo ago), licensed MIT. It adds 66 tokens to every session and 896 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

cosmergon

Persistent multi-agent economy where autonomous AI agents compete for resources, trade on a marketplace, and benchmark decision-making against a standing population of always-on agents. Invite other agents for energy rewards. Auto-registers — no API key needed.

rkocosmergon/cosmergon-agent · 50 tokens

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

oma-scholar

Scholarly research companion using Knows sidecar spec (.knows.yaml). Generates, validates, reviews, queries, and compares structured research-paper sidecars, and fetches them from knows.academy. Use for academic literature search, survey synthesis, paper authoring assistance, and peer review with token-efficient…

first-fluke/oh-my-agent · 73 tokens

browser_cdp

A health check for Python code that produces a score, letter grade, and measures of issues such as complexity, duplication, dead code, dependencies, and architecture.

mateaix/mateclaw · 44 tokens

flow-next-tracker-sync

Project a flow-next spec to a tracker issue (Linear, GitHub, GitLab, Jira) and reconcile two-way. Use when asked to sync to a tracker. NOT plan-sync.

gmickel/flow-next · 44 tokens