configure

configure is a skill for Claude Code from crisandrews/claude-whatsapp. It costs 78 tokens per session (6,045 once invoked), scanned D, original, MIT.

A setup tool for connecting a WhatsApp account to the system and managing that connection.

In plain words
What is it for?
Use it to scan a QR code, check connection status, reset the session, or enable voice transcription and choose its language.
Why use it?
It provides one place to handle connection problems and communication settings instead of changing them manually.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool; positional $N argument.

Part of the whatsapp plugin — 2 skills, 1 hook, 1 MCP server shipped together

Good fit Use it to scan a QR code, check connection status, reset the session, or enable voice transcription and choose its language.

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

Made for: Claude Code.

Or install whatsapp, the plugin that ships this one along with the rest of its 2 skills, 1 hook, 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/crisandrews/claude-whatsapp/configure/github.svg)](https://agentmods.dev/skills/crisandrews/claude-whatsapp/configure)
Your own site
<a href="https://agentmods.dev/skills/crisandrews/claude-whatsapp/configure"><img src="https://agentmods.dev/badge/skills/crisandrews/claude-whatsapp/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/crisandrews/claude-whatsapp/configure"><img src="https://agentmods.dev/badge/skills/crisandrews/claude-whatsapp/configure.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,045 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 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.00078 $0.06045
Opus 5 $0.00039 $0.03023
Sonnet 5 $0.00016 $0.01209
Haiku 4.5 $0.00008 $0.00605

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

Security

Grade D, and why

configure scanned grade D with 2 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 12d 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.

&& chmod 600 "<RESOLVED_STATE_DIR>/config.json.tmp.$$" \

Recursive force deletehighDestructive command

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

rm -rf $STATE_DIR/auth && mv $STATE_DIR/auth.backup-<ts> $STATE_DIR/auth
skills/configure/SKILL.md · 338 lines

How it starts

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

/whatsapp:configure — WhatsApp Channel Setup

This skill only acts on requests typed by the user in their terminal session.

When calling AskUserQuestion, translate the label and description strings to the user's active chat language. The English copy written below is the source of truth; render it localized to the user.

Tool invocation is mandatory. Whenever this skill instructs you to call a tool (e.g. AskUserQuestion, Read, Bash), you MUST invoke the tool. You MUST NOT paraphrase the tool's UI in chat text — for example, never render AskUserQuestion options as a numbered list like "Reply with 1 or 2". Rendering a tool's UI as chat text is a hard skill violation that breaks the onboarding flow.

Arguments passed: $ARGUMENTS

How to save config.json (Bash heredoc + validate + atomic mv, NOT Write)

$STATE_DIR/config.json lives under .whatsapp/ (project-local) or ~/.claude/channels/whatsapp/ (global fallback). When the fallback path applies, ClawCode 1.6.0+'s always-on protected-paths defense refuses any MCP Write / Edit under ~/.claude/ (everything in the home .claude tree is protected — exec-gate: write to protected path refused (claude-home)). Route every "write it back" instruction below through Bash instead.

After you Read + mutate the config object in your reasoning, save it like this — substitute <RESOLVED_STATE_DIR> (the absolute path you found) and <FULL_MUTATED_JSON> (the full updated object):

Bash('rm -f "<RESOLVED_STATE_DIR>/config.json.tmp.$$" && umask 077 && cat > "<RESOLVED_STATE_DIR>/config.json.tmp.$$" << "JSON_EOF" &&
<FULL_MUTATED_JSON>
JSON_EOF
node -e \'JSON.parse(require("fs").readFileSync(process.argv[1],"utf8"))\' "<RESOLVED_STATE_DIR>/config.json.tmp.$$" \
  && chmod 600 "<RESOLVED_STATE_DIR>/config.json.tmp.$$" \
  && mv "<RESOLVED_STATE_DIR>/config.json.tmp.$$" "<RESOLVED_STATE_DIR>/config.json" \
  || { rm -f "<RESOLVED_STATE_DIR>/config.json.tmp.$$"; echo "save aborted (invalid JSON or filesystem error)"; exit 1; }')

Read the full file on GitHub · 338 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. 12d ago First seen · 338 lines · 78 tokens per session scan D 75d6ef559719

Subscribe to this mod's changes

configure is a skill published in the GitHub repository crisandrews/claude-whatsapp (13 stars, last pushed 21d ago), licensed MIT. It adds 78 tokens to every session and 6,045 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it D with 2 findings (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.

Related

Other skills, from other repositories

configure

Set up the WhatsApp channel — configure the phone number, review access policy, and manage auth state. Use when the user asks to configure WhatsApp, set a phone number, check channel status, or reset authentication.

Rich627/whatsapp-claude-plugin · 46 tokens

claude-api

Reference for the Claude API / Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration. TRIGGER — read BEFORE opening the target file; don't skip because it "looks like a one-liner" — whenever: the prompt names Claude/Anthropic in any form (Claude…

asgeirtj/system_prompts_leaks · 294 tokens

non-storybook

No Storybook - the component list comes from the package's shipped .d.ts exports, and there is no reference render to verify against. Preview quality therefore comes from two layers: the converter ships every component fully functional (bundle + .d.ts + .prompt.md) with an honest floor card, and rich previews are…

asgeirtj/system_prompts_leaks · 0 tokens

design

Create a design canvas - a multi-artboard visual design published as an Artifact that runs Claude Design's canvas editor (an early preview of Claude Design inside Claude Code). You DRAFT the design as .dc.html artboards laid out on one pan/zoom canvas; where saving is enabled for the user's account they refine every…

asgeirtj/system_prompts_leaks · 224 tokens

setup-writing-style

Learns how the user writes from their own sent messages and docs, and builds a voice profile so future drafts sound like them instead of generic AI. The profile is saved as the my-writing-style skill. Use when the user asks to set up, learn, or capture their writing voice, or complains that drafts sound generic or…

asgeirtj/system_prompts_leaks · 97 tokens

create-design-system

Skill to use if user asks you to create a design system or UI kit.

asgeirtj/system_prompts_leaks · 19 tokens