Apitweet

Automation
#twitter#twitter-api

Use this skill when the task should be done through the apitweet command-line client, including installing the CLI, configuring Twitter/X app or profile auth, previewing requests, and calling apitweet endpoints through convenience commands or raw paths.

Install

openclaw skills install @aliraza948/apitweet

apitweet-cli

Use this skill when the task should be completed by running apitweet commands instead of re-implementing request logic by hand.

Use this skill when

  • the user wants to install or run the apitweet CLI
  • the user wants to configure an API key, cookie, or auth_token
  • the user wants to test or inspect requests with --dry-run
  • the user wants to call supported Twitter/X apitweet commands for users, tweets, articles, dms, profile, timeline, global trending tweets, search, followers, following, lists, or follow actions
  • the user knows an endpoint path and wants to call it through the generic apitweet <path> form

Do not treat this skill as the main interface when the task is to edit the CLI source code itself.

Default approach

  1. Confirm the CLI is available.
  2. Make sure an app config or API key is available for read requests.
  3. Make sure a saved profile or explicit cookie is available for write requests.
  4. Prefer convenience commands first.
  5. Fall back to apitweet <path> only when no convenience command fits.
  6. Use --dry-run before real write actions unless the user explicitly asks to execute them.

Install and run

For normal users, prefer the published npm package:

npm install -g apitweet-cli
apitweet --help

When working from this repository:

node ./bin/apitweet.js --help

If a local executable is needed while developing:

npm link
apitweet --help

Requires Node.js 18 or newer.

Auth rules

  • API keys come from https://apitweet.com/dashboard.
  • For one-off commands, APITWEET_KEY or --api-key is acceptable.
  • The CLI also respects APITWEET_BASE_URL and APITWEET_CONFIG_DIR.
  • For repeated usage, prefer saved app configs with auth apps add.
  • For write actions, require either --cookie or a saved profile.
  • If a write action is requested without a usable profile or cookie, stop and ask for auth details instead of guessing.
  • By default the CLI reads and writes persistent config in ~/.apitweet/config.json.
  • Saved app configs may include API keys, and saved profiles may include cookies, auth_token, or ct0 in plain JSON.
  • On shared machines or CI, prefer --config-dir or APITWEET_CONFIG_DIR to isolate credentials.

App setup:

apitweet auth apps add --name prod --api-key "sk_1d90c878..."
apitweet auth apps use prod

Profile setup from cookie:

apitweet auth profiles add --name founder --cookie "ct0=...; auth_token=..."
apitweet auth profiles use founder

Profile setup from auth token:

apitweet auth cookie --auth-token "your_auth_token" --save-as founder

Inspect config:

apitweet config show
apitweet config path

Command selection

Prefer convenience commands such as:

apitweet --app prod about elonmusk
apitweet --app prod users elonmusk sama
apitweet --app prod search users "openai" --count 20
apitweet --app prod trending tweets --country "United States" --topic "Sports" --count 50
apitweet --app prod --profile founder article publish-md ./article.md --title "Launch Notes"
apitweet --app prod tweet lookup 1900000000000000000 --summary

Use the generic path form when the endpoint is known but not wrapped:

apitweet /api/twitter/elonmusk/about
apitweet -X POST -d '["elonmusk","sama"]' /api/twitter/users

Safety and execution rules

  • Put global options such as --app, --profile, --api-key, and --dry-run before the command.
  • For write actions like tweet create, tweet like, user follow, list create, and article publish-md, prefer --dry-run first.
  • Only send the real write request after the user clearly wants execution.
  • The CLI masks secrets in config output and dry-run previews, but still avoid echoing raw credentials back to the user.
  • auth cookie uses a request path that contains the auth_token, so be careful with logs and traces.
  • Local media file upload is not implemented; tweet creation supports --media-url.

Recommended test flow

Use an isolated config directory for local testing:

apitweet --config-dir ./.apitweet-local config show

Recommended order:

  1. Verify the CLI starts with apitweet --help or node ./bin/apitweet.js --help.
  2. Verify a read command such as about or users.
  3. Verify a raw-path request if needed.
  4. Verify write-command request construction with --dry-run before any real write action.