← 返回 Skills 市场
yizhao1978

Claude Anywhere

作者 yizhao1978 · GitHub ↗ · v1.6.2 · MIT-0
cross-platform ⚠ suspicious
263
总下载
0
收藏
1
当前安装
20
版本数
在 OpenClaw 中安装
/install claude-anywhere
功能描述
不是聊天机器人,是你口袋里的AI员工。Claude Anywhere 让你通过 Telegram、企业微信、QQ 随时随地读写文件、执行命令、分析图片、管理代码。Not a chatbot — your AI engineer in your pocket. Claude Anywhere lets you re...
使用说明 (SKILL.md)

Claude Anywhere

🦞 龙虾与Claude Code的完美结合 / OpenClaw meets Claude Code, anywhere.

不是聊天机器人。是你口袋里的 AI 员工。 Not a chatbot. Your AI engineer, in your pocket.

Claude Anywhere 让你通过 Telegram、企业微信、QQ 随时随地:

  • 📂 读写文件 / Read/write files
  • ⚡ 执行命令 / Execute commands
  • 📷 分析图片 / Analyze images
  • 📄 文件分析 / Analyze files (PDF, Excel, CSV, code)
  • 🔄 会话恢复 / Resume sessions across devices
  • ⏰ 定时任务 / Schedule cron tasks

Pro 版 ¥39.99/月 → 立即升级

3步上手 / 3 Steps to Start

Telegram

  1. 在 Telegram 搜索 @BotFather,发 /newbot,复制 Token
  2. git clone https://github.com/yizhao1978/claude-anywhere.git && cd claude-anywhere && npm install && cp .env.example .env
  3. 填入 Token → npm run telegram → 完成

企业微信 WeChat Work

  1. 登录 work.weixin.qq.com → 应用管理 → AI助手 → 创建机器人,记录 Bot ID 和 Secret
  2. git clone https://github.com/yizhao1978/claude-anywhere.git && cd claude-anywhere && npm install && cp .env.example .env
  3. 填入 Bot ID + Secret → npm run wecom → 完成

QQ

  1. 打开 https://q.qq.com/qqbot/openclaw/index.html → 扫码 → 创建机器人 → 获取 AppID + AppSecret
  2. git clone https://github.com/yizhao1978/claude-anywhere.git && cd claude-anywhere && npm install && cp .env.example .env
  3. 填入 AppID + AppSecret → npm run qq → 完成

三平台一键启动

配好所有 Token → npm start → 自动启动已配置的平台

Free Tier (no LICENSE_KEY)

  • 5 messages/day
  • 7-day trial period
  • Single-turn conversations
  • Text only
  • Upgrade prompts on every reply

Pro (¥39.99/月 | ¥399.9/年) → https://claudeanywhere.com/buy.html

  • Unlimited messages
  • Multi-turn conversations with /resume
  • Image and file analysis
  • WeChat Work full support
  • 付款后自动开通,无需填写 License Key / Auto-activated after payment

License Activation

扫码付款后 Pro 自动开通,无需任何操作。 After WeChat Pay, Pro is activated instantly and automatically.

安全使用建议
Plain-language summary and recommended precautions: - What it does: this repository implements a Telegram/WeCom/QQ bot that forwards user messages, images, and files to the local Claude CLI and returns the model's responses. It intentionally saves attachments to /tmp, instructs the model to read those files, and can schedule recurring jobs and run commands — exactly as the README claims. - Mismatches you should notice: the registry metadata only lists TELEGRAM_BOT_TOKEN as required, but the code also expects WeCom and QQ credentials if you run those bridges. The package includes a license component that computes a machine id and builds payment/activation URLs — the license flow may send an identifier to the vendor's server. - Privacy & security risks: - Running this gives the bot and the Claude CLI access to local files and (per the README) the ability to execute commands: treat it like giving remote users a shell on your machine. If a malicious user or model prompt causes the bot to run CLI commands or read sensitive files, those secrets can be exposed. - The license flow likely transmits a machine identifier (getMachineId) to external servers; this can fingerprint your host. - The code runs as a persistent service when you follow the systemd instructions, increasing the blast radius of a compromise. - Before you install/run it, consider: 1. Inspect license-client.mjs and core.mjs to confirm exactly what is sent to the license server (what machine identifiers, network endpoints, and timing). If you don't want host fingerprinting, do not enable Pro activation or block license server access. 2. Run the bot in a sandbox/container or on a non-sensitive host (not a production server) if you want to test it. 3. Use a dedicated Telegram bot account with minimal privileges and avoid reusing tokens from important accounts. Do not run as root; use a restricted user account. 4. If you need WeCom/QQ support, only provide those credentials when you intend to run those bridges and understand they are required. Metadata underspecifies these requirements — the platform will not automatically provide them. 5. Review package-lock.json and installed npm dependencies for supply-chain risk. 6. If you must run it on a server with sensitive data, consider network restrictions (eg. firewall to block calls to the license server or outgoing traffic you don't expect) and monitor outbound connections. - Additional steps to reduce risk: audit or remove the license-client code if you don't want automatic activation/fingerprint reporting; avoid using the 'auto-activate after payment' flow if you require privacy; consider replacing calls to external endpoints with stubs in a fork. Given the code's intended high privileges (file read/write, command execution, persistent service) and the metadata mismatch plus the prompt-injection signal and license/fingerprinting behavior, proceed with caution and prefer sandboxed testing.
功能分析
Type: OpenClaw Skill Name: claude-anywhere Version: 1.6.2 The skill acts as a remote bridge for the Claude Code CLI, allowing users to execute shell commands, manage files, and run scheduled tasks via Telegram, QQ, and WeChat Work. A significant security risk is identified in 'core.mjs' and 'cron-manager.mjs', where the tool invokes the Claude binary with the '--dangerously-skip-permissions' flag, effectively granting the AI agent (and anyone with access to the bot) unprompted shell access to the host system. While these high-risk behaviors are aligned with the stated purpose of providing a remote 'AI engineer,' the lack of interactive permission gates for sensitive operations makes the bundle inherently dangerous. The skill also communicates with an external licensing endpoint at https://license.claudeanywhere.com.
能力评估
Purpose & Capability
The skill's name/description (Telegram/WeCom/QQ bot that reads/writes files, runs commands, analyzes images) matches the included code: bridge files and core logic implement those features and require node and the Claude CLI. However the declared requirements list only TELEGRAM_BOT_TOKEN as a required env var while the code also expects WECOM_BOT_ID/WECOM_SECRET and QQ_APP_ID/QQ_APP_SECRET when using WeCom/QQ bridges — metadata underspecifies required credentials.
Instruction Scope
SKILL.md and the code instruct users to install and run the bot, create systemd services, and install + log in to the Anthropic 'claude' CLI. Runtime behavior includes saving attachments to /tmp, passing local file paths to the Claude CLI and explicitly instructing the model to 'Read' local files and execute commands. That gives the remote model and any message sender the ability (via the bot and claude CLI) to read local files and execute commands on the host — which is intended for the product but is high privilege. The SKILL.md also contains a detected 'system-prompt-override' pattern (prompt-injection signal) which may indicate manipulation attempts embedded in the instructions; this needs manual review.
Install Mechanism
There is no formal install spec for the platform — SKILL.md instructs cloning the GitHub repo and running npm install and global npm install of @anthropic-ai/claude-code. That is a normal workflow for this kind of Node bot, but it results in arbitrary JS being installed and run locally. The included license-client contacts license.claudeanywhere.com and the README references external purchase endpoints (gumroad / custom domains). No opaque download-URL shorteners were observed in the provided content, but running npm install will fetch dependencies from registries — review package-lock.json if you need supply-chain assurance.
Credentials
Registry metadata only lists TELEGRAM_BOT_TOKEN as required, but the code reads many env keys (.env example and runtime): TELEGRAM_BOT_TOKEN, WECOM_BOT_ID, WECOM_SECRET, QQ_APP_ID, QQ_APP_SECRET, LICENSE_KEY, LICENSE_SERVER_URL, CLAUDE_PATH, CLAUDE_CWD. The code also imports a license-client that exposes getMachineId and constructs buy/activation URLs including a machine id parameter — that implies the package will compute and (likely) send a host fingerprint to the vendor's license server when checking/activating Pro. Requesting TELEGRAM_BOT_TOKEN is proportional for Telegram usage, but the omission of the other env vars in metadata is an incoherence and the machine-id/ license flow raises potential privacy/exfiltration concerns.
Persistence & Privilege
The skill does not request always:true and is user-invocable. SKILL.md suggests configuring systemd or tmux to keep the bot running as a service — that is typical for bots but does create a persistent long-lived process on the host that will have access to files and the Claude CLI. The package does not automatically force system-wide changes, but following the README will grant it persistent presence and the ability to respond to remote messages indefinitely.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install claude-anywhere
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /claude-anywhere 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.6.2
docs: 补充/cron命令完整说明、定时任务使用章节;企业微信/QQ帮助文案升级为菜单式快速开始
v1.6.1
No changes detected in this version. - Version number remains at 1.6.1. - No modifications were made to files or documentation. - Feature set and instructions are unchanged.
v1.5.11
- Documentation updated in SKILL.md with no functional or feature changes. - No modifications to code or user-facing functionality. - Version and metadata remain unchanged.
v1.5.10
- Documentation updated in SKILL.md; no functional changes. - Content and usage instructions remain the same.
v1.5.9
- No functional changes: only a documentation update. - SKILL.md was reformatted without content changes.
v1.5.8
- Documentation updated in SKILL.md; no functional changes to the skill itself - No new features or bug fixes included in this version
v1.5.7
- Documentation updated (SKILL.md) without any code or functionality changes. - No user-facing changes in this release.
v1.5.6
- Documentation updated in SKILL.md with no functional or user-facing changes. - No changes to features, code, or configuration.
v1.5.5
- Documentation updated in SKILL.md. - No functional or code changes; content remains the same.
v1.5.4
- Documentation updated; no functional or code changes. - SKILL.md content revised for clarity and details; version and descriptions remain unchanged.
v1.5.3
- Updated pricing: Pro now ¥39.99/month or ¥399.9/year, with new auto-activation after payment. - Changed upgrade/purchase links and homepage URLs to claudeanywhere.com. - Added CHANGELOG.md file. - Updated documentation and instructions for improved clarity and signup process. - Minor adjustments to SKILL.md metadata and descriptions.
v1.5.2
- Enriched documentation with feature highlights and clearer descriptions. - Added bullet list of core capabilities (file ops, commands, image/file analysis, session resume, scheduling). - Highlighted the integration with OpenClaw and Claude Code. - Improved structure and readability in setup instructions. - No code or functionality changes; documentation only.
v1.5.1
Rebrand: Claude Anywhere as independent brand, 3-platform setup cards, simplified docs
v1.5.0
claude-anywhere 1.5.0 - Version bump from 1.3.0 to 1.5.0. - Updated dependencies in package.json and package-lock.json. - Minor updates and maintenance (no user-facing changes documented).
v1.4.0
- Added QQ channel support with new bridge-qq.mjs file. - Introduced core.mjs to centralize business logic. - Added start-all.mjs script for unified multi-channel startup. - Updated setup and feature descriptions in README.md and SKILL.md. - Other bug fixes and dependency updates.
v1.3.0
- Added version bump to 1.3.0. - Updated bridge and cron management files. - Refreshed dependencies in package.json. - No changes to the user-facing SKILL.md content.
v1.2.0
- Added cron job management with new cron-manager.mjs file. - Updated pricing info from $4.99/mo to $5.99/mo across documentation. - Minor documentation and metadata updates to reflect latest features and details. - Various codebase and dependency updates for improved stability.
v1.1.0
- Downgraded Pro pricing to $4.99/mo and updated the purchase link. - Changed the homepage and documentation URLs to claudeanywhere.gumroad.com. - Updated version to 1.1.0. - Added index.html file. - Minor documentation and metadata adjustments.
v2.0.0
Claude Anywhere 2.0.0 introduces license key activation, changes pricing, and improves free tier messaging. - Added LICENSE_KEY support; activate via .env file or /activate command in bot - Updated Pro price to $5.99/mo - Free tier now displays upgrade prompts on every reply - Improved documentation for activation and setup - New install.sh script added for easier installation
v1.0.0
**claude-anywhere v1.1.0** Expanded access to Claude Code via Telegram and WeChat Work, with clear setup and subscription details. - Added WeChat Work (企业微信) integration instructions. - Clarified setup steps for both Telegram and WeChat Work. - Detailed Free tier (5 messages/day, 7-day trial) and Pro subscription features ($4.99/mo). - Updated description and metadata for better accessibility and platform clarity. - Provided direct link to homepage and subscription sign-up.
元数据
Slug claude-anywhere
版本 1.6.2
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 20
常见问题

Claude Anywhere 是什么?

不是聊天机器人,是你口袋里的AI员工。Claude Anywhere 让你通过 Telegram、企业微信、QQ 随时随地读写文件、执行命令、分析图片、管理代码。Not a chatbot — your AI engineer in your pocket. Claude Anywhere lets you re... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 263 次。

如何安装 Claude Anywhere?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install claude-anywhere」即可一键安装,无需额外配置。

Claude Anywhere 是免费的吗?

是的,Claude Anywhere 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Claude Anywhere 支持哪些平台?

Claude Anywhere 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Claude Anywhere?

由 yizhao1978(@yizhao1978)开发并维护,当前版本 v1.6.2。

💬 留言讨论