brettdavies

Xurl Rs Skill — Communication skill for Claude Code

Communication community

Agent skill bundle for xurl-rs.

How to install Xurl Rs Skill

This entry records only its repository, not the path inside it, so there is no exact command to give. Open brettdavies/xurl-rs-skill and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Xurl Rs Skill does

Agent skill bundle for xurl-rs . The X (Twitter) CLI for agents

Alternatives in Communication

README

xurl-rs-skill

Claude Code skill bundle for [`xurl-rs`](https://github.com/brettdavies/xurl-rs), the X (Twitter) CLI for agents.

What this is

A Claude Code (and Codex / Cursor / Factory / Kiro / OpenCode) skill bundle that teaches an agent how to use `xurl-rs` against the X (Twitter) API: authentication, requests, pagination, dry-run discipline against production credentials, the output contract (the API document on success; `ok` / `dry_run` / `error` envelopes), two deterministic helper scripts, and common task templates (OAuth2 setup, post / reply / thread, search and process, media upload).

Install

Preferred: let `xr` install the bundle into the right path for your host:

xr skill install claude_code      # ~/.claude/skills/xurl-rs
xr skill install codex            # ~/.codex/skills/xurl-rs
xr skill install --all            # all known hosts at once
xr skill install claude_code --dry-run  # preview without cloning

Manual fallback:

mkdir -p ~/.claude/skills && \
  git clone https://github.com/brettdavies/xurl-rs-skill ~/.claude/skills/xurl-rs

Full install matrix and first-session walkthrough: [`getting-started.md`](getting-started.md).

Layout

Path Purpose
SKILL.md Entry point Claude Code / Codex / Cursor load when the skill activates.
references/ Reference material the agent reads on demand (auth flows, output contract, X API).
templates/ Starter prompts and task recipes the agent can copy into a project.
scripts/ dry-run-gate.sh and paginate.sh, shipped to consumers; release tooling beside them.
getting-started.md Human-oriented quickstart.