CommunitySchreiben & Editierengithub.com

guanxiong/VibeSMS

Turn your Android phone into an SMS and call gateway for AI agents.

Was ist VibeSMS?

VibeSMS is a Claude Code agent skill that turn your Android phone into an SMS and call gateway for AI agents.

Funktioniert mitClaude Code~Codex CLICursor
npx skills add guanxiong/VibeSMS

Installed? Explore more Schreiben & Editieren skills: steipete/notion, affaan-m/seo, affaan-m/brand-voice · View all 6 →

In Ihrer bevorzugten KI fragen

Öffnet einen neuen Chat, in dem dieser Agent-Skill bereits geladen ist.

Dokumentation

Was macht VibeSMS?

Connect an AI agent to a user-owned Android phone and SIM without exposing the whole SMS inbox. A single VIBESMS_KEY gives the agent access only to its assigned phone number and supports four focused actions:

  • Check whether the Android terminal is bound and online.
  • Capture an event cursor before an external service sends a message.
  • Wait for a fresh 4–8 digit verification code after that cursor.
  • Read Key-isolated SMS and inbound call events.

The Android terminal uploads through a separate device credential, so the Agent Key cannot upload events or read another number. Use the bundled client for deterministic API calls. Resolve scripts/vibesms.py relative to this SKILL.md; do not assume the current working directory contains the skill.

Preconditions

  • Require VIBESMS_KEY in the environment or agent Secret store.
  • Use VIBESMS_BASE_URL only for a self-hosted instance; it defaults to https://sms.shareapi.ai.
  • Never ask the user to paste a Key into chat, command arguments, source code, or logs.
  • Never expose the Key in output. If it is missing, ask the user to configure the Secret.

Receive a verification code

  1. Capture a cursor immediately before triggering the external SMS:

    python3 <skill-directory>/scripts/vibesms.py status
    
  2. Read the cursor value from the JSON response.

  3. Trigger the user-authorized action that sends the SMS.

  4. Wait for the first 4–8 digit code received after that cursor:

    python3 <skill-directory>/scripts/vibesms.py wait-otp --after-id <cursor> --timeout 60
    
  5. Use the code only for the task the user authorized. Do not persist it after completion.

Always capture the cursor first. Without it, an older message could be mistaken for the new verification code.

Check terminal status

Run:

python3 <skill-directory>/scripts/vibesms.py status

If bound is false, tell the user the Key has not been paired with an Android SIM. If online is false, explain that messages may still arrive after the terminal reconnects and replays its offline queue.

Read inbox events

Run one of:

python3 <skill-directory>/scripts/vibesms.py inbox --after-id <cursor>
python3 <skill-directory>/scripts/vibesms.py inbox --type sms --limit 20
python3 <skill-directory>/scripts/vibesms.py inbox --type call --limit 20

Prefer after-id for task-specific reads. Return only the fields needed for the user's task; avoid repeating unrelated message content or phone numbers.

Errors

  • 401: the Key is invalid, disabled, or rotated. Ask the user to update the Secret.
  • status=timeout: no matching OTP arrived in time. Check terminal status, then retry only if the user still wants to wait.
  • Network/TLS failure: report the endpoint and failure without printing headers or the Key.

Read references/api.md only when raw endpoint schemas or self-hosted integration details are needed.

Verwandte Skills

steipete/notion

Notion CLI/API for pages, Markdown content, data sources, files, comments, search, Workers, and raw API calls.

community

affaan-m/seo

Audit, plan, and implement SEO improvements across technical SEO, on-page optimization, structured data, Core Web Vitals, and content strategy. Use when the user wants better search visibility, SEO remediation, schema markup, sitemap/robots work, or keyword mapping.

community

affaan-m/brand-voice

Build a source-derived writing style profile from real posts, essays, launch notes, docs, or site copy, then reuse that profile across content, outreach, and social workflows. Use when the user wants voice consistency without generic AI writing tropes.

community

affaan-m/crosspost

Multi-platform content distribution across X, LinkedIn, Threads, and Bluesky. Adapts content per platform using content-engine patterns. Never posts identical content cross-platform. Use when the user wants to distribute content across social platforms.

community

affaan-m/x-api

X/Twitter API integration for posting tweets, threads, reading timelines, search, and analytics. Covers OAuth auth patterns, rate limits, and platform-native content posting. Use when the user wants to interact with X programmatically.

community

affaan-m/content-engine

Create platform-native content systems for X, LinkedIn, TikTok, YouTube, newsletters, and repurposed multi-platform campaigns. Use when the user wants social posts, threads, scripts, content calendars, or one source asset adapted cleanly across platforms.

community