← 返回 Skills 市场
769
总下载
0
收藏
5
当前安装
19
版本数
在 OpenClaw 中安装
/install xint-rs
功能描述
Fast X Intelligence CLI (Rust) — search, analyze, and engage on X/Twitter from the terminal. Use when: (1) user says "x research", "search x for", "search tw...
安全使用建议
This skill appears coherent for its stated purpose, but take these precautions before installing or enabling network modes:
- Inspect the installer: README suggests curl -fsSL https://raw.githubusercontent.com/... | bash. Prefer building from source (cargo build) or using Homebrew/packages, or at minimum download and inspect install.sh before running it. Consider setting REQUIRE_CHECKSUM=1 and verify checksums if you install prebuilt binaries.
- Protect credentials: X_BEARER_TOKEN is required and is powerful (read access to tweets). Store it only in a secure environment (.env or env variables), and never paste it into public logs. xAI keys and OAuth client IDs are optional but also sensitive.
- Watch/webhook and package-control-plane: watch --webhook will POST tweet data to any URL you provide; only use webhooks you control. Do not set XINT_PACKAGE_API_BASE_URL / XINT_PACKAGE_API_KEY to untrusted services — that can cause exported data or MCP tool results to be relayed elsewhere.
- File writes: the tool stores cache, exports, snapshots, and OAuth tokens in data/. Review data/ before sharing and secure filesystem permissions (SKILL.md indicates tokens use chmod 600).
- Autonomous agent use: SKILL.md asks for explicit approval before network-facing modes; if you intend agents to use this skill autonomously, restrict those modes or supervise execution. If in doubt, run the binary manually first to verify behavior.
If you want stronger assurance, build the binary from the included source (cargo build --release) and inspect the built binary or run it in an isolated environment (container/VM) before granting secrets or enabling external endpoints.
功能分析
Type: OpenClaw Skill
Name: xint-rs
Version: 2026.2.26
The xint-rs skill bundle is a legitimate and well-architected Rust-based CLI tool for X (Twitter) intelligence and xAI integration. It includes robust security features such as a daily budget guard to prevent runaway API costs (src/costs.rs), OAuth 2.0 PKCE for secure user-context operations (src/auth/oauth.rs), and a webhook validation utility (src/webhook.rs) that enforces HTTPS and supports host allowlisting. The SKILL.md file provides clear instructions and safety boundaries for the AI agent, including explicit requirements for user approval before performing network-facing or installation tasks. No evidence of malicious behavior, data exfiltration, or prompt injection was found.
能力评估
Purpose & Capability
Name/description (X intelligence CLI) match the repository contents: many Rust sources implement X API wrappers, search, watch, OAuth, and xAI integrations. Required and optional credentials (X_BEARER_TOKEN, XAI_API_KEY, X_CLIENT_ID, XAI_MANAGEMENT_API_KEY) are appropriate and justified by the documented features (search, Grok analysis, OAuth write actions, collections management).
Instruction Scope
SKILL.md stays on-scope for the declared purpose (search, watch, analyze, export). It explicitly documents writing to data/, storing OAuth tokens, webhook output for watch, and network endpoints (api.x.com, api.x.ai). Watch --webhook and optional package-control-plane settings can send data to external endpoints; those behaviors are declared, but they are the primary places where data leaves the machine and deserve careful review/explicit approval before use.
Install Mechanism
There is no platform-level install specification in the skill registry, but the repo includes an install.sh and README usage that recommend a curl|bash install from GitHub raw. The provided install.sh downloads release assets from GitHub Releases and attempts checksum verification if a checksum asset exists (or REQUIRE_CHECKSUM is set). Downloading from GitHub releases is a standard pattern, but the curl|bash install recommendation and default permissive checksum behavior are risk points — users should inspect the installer or build from source / use a package manager rather than piping to shell.
Credentials
The only required env var is X_BEARER_TOKEN (reasonable for any X/Twitter API client). Optional env vars (XAI_API_KEY, XAI_MANAGEMENT_API_KEY, X_CLIENT_ID) are directly tied to optional features (xAI analysis, collections mgmt, OAuth write actions). There are no unrelated secret env vars requested. Note: optional package-control-plane env vars (XINT_PACKAGE_API_BASE_URL, XINT_PACKAGE_API_KEY) can redirect some functionality to a hosted control plane — those are optional but could cause data to be sent to third-party servers if configured.
Persistence & Privilege
Skill writes data to its own data/ directory (cache, exports, snapshots, OAuth tokens) — expected for follower snapshots and exports. always:false (no forced global presence). The repo can run an optional local MCP server; default is local-only unless explicit flags (like --sse) or envs (package API base) are enabled. Be mindful that enabling hosted control-plane envs or webhooks grants outward network reach for data; SKILL.md requests explicit user approval for network-facing modes, but the platform-level registry flags may still allow autonomous invocation, so user consent/inspection is recommended before enabling those modes.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install xint-rs - 安装完成后,直接呼叫该 Skill 的名称或使用
/xint-rs触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2026.2.26
Major release with new analytics, reposts, user search, and a terminal UI.
- Added `reposts` command: list users who reposted a tweet.
- Added `users` command: search for X users by keyword.
- Introduced analytics-related commands: `analytics`, `growth`, `timing`, `top`, and `content_audit`.
- New terminal-based TUI: run `xint tui` for an interactive interface.
- Profile and user data now display `connection_status` and `subscription_type` in JSON output.
- Multiple security and docs updates for stricter environment and install controls.
v2026.2.25
- GitHub workflows, release management, and issue/pr templates added for improved project automation and contributions.
- New error handling module (`src/errors.rs`) introduced.
- Many internal code updates across CLI commands, analysis, bookmarks, collections, and reporting.
- Documentation in SKILL.md revised for accuracy, improved formatting, and removal of duplicate fields.
- No breaking changes to CLI usage or required APIs.
v2026.2.24
v2026.2.24: Fix X native article fetch via tweet.fields=article API field
v2026.2.20-2
Release v2026.2.20.2
v2026.2.20-1
Release v2026.2.20.1
v2026.2.19-6
Release v2026.2.19.6
v2026.2.19-3
Release v2026.2.19.3
v2026.2.19-2
Release v2026.2.19.2
v2026.2.19-1
Release v2026.2.19.1
v2026.2.18-11
Release v2026.2.18.11
v2026.2.18-10
Release v2026.2.18.10
v2026.2.18-9
Release v2026.2.18.9
v2026.2.18-8
Release v2026.2.18.8
v2026.2.18-3
Release v2026.2.18.3
v2026.2.18-2
Release v2026.2.18.2
v2026.2.18
Release v2026.2.18
v2026.2.17
Phase 2: Article AI analysis + security docs
v3.1.0
Phase 2: Article AI analysis + security docs
v0.1.0
Initial release of xint-rs — Fast X/Twitter Intelligence CLI in Rust
- Provides terminal-based search, analysis, and engagement for X/Twitter via a fast, zero-dependency Rust binary.
- Supports tweet/user search, trend discovery, real-time monitoring, AI-powered analysis (via xAI Grok), intelligence reports, and follower tracking.
- Includes bookmark, like, following management (with OAuth), plus CSV/JSON/JSONL export.
- Offers xAI X Search (no bearer needed) and xAI Collections knowledge base features.
- Built-in cost tracking and budget controls to manage API usage.
- All output is pipe-friendly via stdout; multiple formats (JSON, JSONL, CSV, markdown) supported.
- OAuth and API token setup detailed for authentication.
元数据
常见问题
Xint Rs 是什么?
Fast X Intelligence CLI (Rust) — search, analyze, and engage on X/Twitter from the terminal. Use when: (1) user says "x research", "search x for", "search tw... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 769 次。
如何安装 Xint Rs?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install xint-rs」即可一键安装,无需额外配置。
Xint Rs 是免费的吗?
是的,Xint Rs 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Xint Rs 支持哪些平台?
Xint Rs 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Xint Rs?
由 0xNyk(@0xnyk)开发并维护,当前版本 v2026.2.26。
推荐 Skills