Source profileQuality 78/100

sonichi/sutando/skills/whatsapp/SKILL.md

whatsapp

Send WhatsApp messages, list chats, and search history via wacli (local CLI backed by a synced store at ~/.wacli). Use after the user has run `wacli auth` to pair the device.

Source repository stars
359
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Send messages, list chats, and search history using wacli — a local CLI that syncs a WhatsApp Web session into /.wacli/. No third-party service, no API key; the auth flow is a QR-code scan from the user's phone.

Best for

  • The user asks to send a WhatsApp message, list chats, or search WhatsApp history.
  • The user asks "did X message me on WhatsApp?" or similar history-search questions.
  • Not available until wacli auth has completed on this Mac. Probe with wacli chats list --limit 1; if it errors "not authenticated," tell the user to run wacli auth (QR-code pairing from their phone).

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/sonichi/sutando --skill "skills/whatsapp"
Safe inspection promptEditorial

Inspect the Agent Skill "whatsapp" from https://github.com/sonichi/sutando/blob/6a8f0fccd32e5aa620a3572c8885544f144bb6fe/skills/whatsapp/SKILL.md at commit 6a8f0fccd32e5aa620a3572c8885544f144bb6fe. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    When to use

    The user asks to send a WhatsApp message, list chats, or search WhatsApp history.

    The user asks to send a WhatsApp message, list chats, or search WhatsApp history.The user asks "did X message me on WhatsApp?" or similar history-search questions.Not available until wacli auth has completed on this Mac. Probe with wacli chats list --limit 1; if it errors "not authenticated," tell the user to run wacli auth (QR-code pairing from their phone).
  2. 02

    Install + auth

    steipete/tap is a third-party Homebrew tap (not Homebrew-core), and wacli stores a WhatsApp Web session locally at /.wacli/. Review the tap source before installing if security-sensitive.

    steipete/tap is a third-party Homebrew tap (not Homebrew-core), and wacli stores a WhatsApp Web session locally at /.wacli/. Review the tap source before installing if security-sensitive.The session lives at /.wacli/. Stays signed in across reboots until the user revokes the linked device from their phone.Optional .env settings (label shown in WhatsApp's Linked Devices screen on the user's phone):
  3. 03

    Commands

    Phone numbers are in E.164 (+countrycode...). For groups, pass the JID returned by wacli chats list instead of a phone number.

    Phone numbers are in E.164 (+countrycode...). For groups, pass the JID returned by wacli chats list instead of a phone number.
  4. 04

    Conventions

    Always confirm message content with the user before sending. Matches the iMessage / SMS / X-post pattern in CLAUDE.md. The confirmation flow lives in the agent / bridge that calls wacli send — this skill itself has no c…

    Always confirm message content with the user before sending. Matches the iMessage / SMS / X-post pattern in CLAUDE.md. The confirmation flow lives in the agent / bridge that calls wacli send — this skill itself has no c…For multi-line / long messages, write to a /tmp/wa-.txt and pass via --message "$(cat /tmp/wa-X.txt)" — avoids shell-escape issues with quotes and emoji.WhatsApp delivers messages best-effort; wacli send text returning success means the message hit WhatsApp's servers, not that the recipient has read it.
  5. 05

    Failure modes

    wacli: not authenticated → user must run wacli auth (QR-code flow). One-time per Mac.

    wacli: not authenticated → user must run wacli auth (QR-code flow). One-time per Mac.wacli: linked device revoked → user revoked the session from their phone. Re-run wacli auth.wacli: rate limited → WhatsApp is throttling. Back off 30s and retry.

Permission review

Static risk signals and limitations

Network access

medium · line 27

The documentation includes network, browsing, or remote request actions.

# See wacli's docs (https://github.com/steipete/wacli) for the full platform-string list.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score78/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars359SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
sonichi/sutando
Skill path
skills/whatsapp/SKILL.md
Commit
6a8f0fccd32e5aa620a3572c8885544f144bb6fe
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

WhatsApp (wacli)

Send messages, list chats, and search history using wacli — a local CLI that syncs a WhatsApp Web session into ~/.wacli/. No third-party service, no API key; the auth flow is a QR-code scan from the user's phone.

When to use

  • The user asks to send a WhatsApp message, list chats, or search WhatsApp history.
  • The user asks "did X message me on WhatsApp?" or similar history-search questions.
  • Not available until wacli auth has completed on this Mac. Probe with wacli chats list --limit 1; if it errors "not authenticated," tell the user to run wacli auth (QR-code pairing from their phone).

Install + auth

brew install steipete/tap/wacli       # one-time install (3rd-party tap, NOT Homebrew-core)
wacli auth                            # opens a QR for the user to scan from WhatsApp → Linked Devices

steipete/tap is a third-party Homebrew tap (not Homebrew-core), and wacli stores a WhatsApp Web session locally at ~/.wacli/. Review the tap source before installing if security-sensitive.

The session lives at ~/.wacli/. Stays signed in across reboots until the user revokes the linked device from their phone.

Optional .env settings (label shown in WhatsApp's Linked Devices screen on the user's phone):

WACLI_DEVICE_LABEL=Sutando            # any string; appears next to the device in WhatsApp → Linked Devices
WACLI_DEVICE_PLATFORM=CHROME          # default per wacli is DESKTOP; CHROME is the fallback if an invalid value is set.
                                      # See wacli's docs (https://github.com/steipete/wacli) for the full platform-string list.

Commands

wacli send text --to "+14155551234" --message "Hello!"     # send
wacli send text --to "+14155551234" --message "$(cat draft.txt)"  # multi-line via stdin / file
wacli chats list --limit 20                                # recent chats
wacli messages search "keyword" --limit 10                 # search history
wacli messages list --chat "+14155551234" --limit 20       # read a thread

Phone numbers are in E.164 (+countrycode...). For groups, pass the JID returned by wacli chats list instead of a phone number.

Conventions

  • Always confirm message content with the user before sending. Matches the iMessage / SMS / X-post pattern in CLAUDE.md. The confirmation flow lives in the agent / bridge that calls wacli send — this skill itself has no confirm step. Treating the SKILL.md as the confirmation surface would skip the check entirely on direct CLI invocations.
  • For multi-line / long messages, write to a /tmp/wa-*.txt and pass via --message "$(cat /tmp/wa-X.txt)" — avoids shell-escape issues with quotes and emoji.
  • WhatsApp delivers messages best-effort; wacli send text returning success means the message hit WhatsApp's servers, not that the recipient has read it.

Failure modes

  • wacli: not authenticated → user must run wacli auth (QR-code flow). One-time per Mac.
  • wacli: linked device revoked → user revoked the session from their phone. Re-run wacli auth.
  • wacli: rate limited → WhatsApp is throttling. Back off ~30s and retry.
  • Phone-number invalid → confirm the user provided E.164 format with a + prefix.

Origin

Synthesizes the proposal in PR #180 by @priyansh4320 (stale + conflicts, never landed) and the wacli reference already documented in CLAUDE.md's "Built-in capabilities" section. Issue #179 (asking for WhatsApp support) was closed 2026-05-16 noting the capability had landed as inline doc.