Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

pokepoke 搜索

Agent Skill

poke 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,427

周安装

140

GitHub Stars

公开资料未说明

下载量

1,109
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:poke(poke 搜索)
来源仓库:https://github.com/g9pedro/poke
安装命令:
openclaw skills install poke
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install poke

简介

发送 SMS/iMessage 消息并处理入站 Poke 事件通知。

  • 适用于短信提醒、事件触发或基于消息流的自动化响应场景。
  • 可结合用户指令动态生成消息内容并管理通信状态。
  • 需确认运营商接口权限及敏感信息传输合规性。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • poke 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
poke
description
Send SMS/iMessage to the user via Poke and process inbound Poke events. Use when the user asks to be texted, for SMS-based alerts, when processing events forwarded from Poke, or when helping a user set up external webhook triggers that route through Poke.

Poke Bridge — OpenClaw Skill

Poke is the user's personal AI assistant on their phone (SMS/iMessage). OpenClaw agents connect to Poke for two-way communication and event routing.

Architecture

User ←→ Poke (phone) ←→ Tunnel (relay) ←→ MCP Server ←→ OpenClaw (agent)
                                                ↑
External services (GitHub, Vercel, etc.) → webhooks → Poke → OpenClaw

Poke owns: triggers, schedules, condition monitoring, timing, user-facing UI OpenClaw owns: execution — acting on events, running code, deploying, responding

Do NOT create OpenClaw cron jobs for things Poke can handle. Poke fires, you execute.

Onboarding (Step by Step)

Follow these steps in order. Each step depends on the previous one.

Step 1: Install openclaw-poke

npm install -g openclaw-poke

Step 2: Run interactive setup

npx openclaw-poke setup

This auto-discovers your OpenClaw config and:

  • Detects gateway port, auth tokens, hooks URL from openclaw.json
  • Authenticates with Poke (runs poke login if needed)
  • Prompts for Poke API key (or uses OAuth)
  • Writes plugin config into openclaw.json
  • Creates + starts systemd service for MCP server on :3210
  • Installs agent skill
  • Verifies the handshake

Step 3: Authenticate with Poke

If not already logged in, setup will trigger poke login:

  1. A login code appears in the terminal (e.g. Q8CUQBXE)
  2. Open the URL: https://poke.com/device?code=YOUR_CODE
  3. Enter the code and approve

Important: The login URL is https://poke.com/device — NOT device.poke.com.

Step 4: Start the tunnel

The tunnel connects your local MCP server to Poke through an authenticated relay. No ports exposed, no public URLs, zero attack surface.

poke tunnel http://localhost:3210/mcp --name "OpenClaw"

The tunnel auto-registers with Poke — tools sync automatically.

Make it persistent with systemd:

cat > ~/.config/systemd/user/openclaw-poke-tunnel.service << 'EOF'
[Unit]
Description=OpenClaw Poke Tunnel
After=openclaw-poke-mcp.service
Requires=openclaw-poke-mcp.service

[Service]
Type=simple
ExecStart=/usr/local/bin/poke tunnel http://localhost:3210/mcp --name "OpenClaw"
Restart=always
RestartSec=10

[Install]
WantedBy=default.target
EOF

systemctl --user daemon-reload
systemctl --user enable --now openclaw-poke-tunnel

Adjust the ExecStart path to wherever poke is installed (which poke).

Step 5: Verify

# Check MCP server health
curl -s http://localhost:3210/health

# Check tunnel status
systemctl --user status openclaw-poke-tunnel

# Send a test message
npx openclaw-poke test

Known SDK Bug (poke ≤ 0.4.2)

poke tunnel may fail with "Server did not return a valid connection ID or tunnel URL." This is a Poke SDK bug — the API returns serverUrl: null for tunnel connections, but the SDK checks for it.

Fix: Patch the CLI binary:

# Find the error string and fix the check
POKE_BIN=$(which poke)
sed -i 's/this\.tunnelUrl=r\.serverUrl,!this\.connectionId||!this\.tunnelUrl/this.tunnelUrl=r.serverUrl||("https:\/\/tunnel.poke.com\/"+r.id),!this.connectionId/' "$POKE_BIN"

Also patch the library (variable name may differ — r vs s):

# Patch node_modules too (for programmatic usage)
SDK_DIR=$(node -e "console.log(require.resolve('poke').replace('/dist/index.mjs',''))")
sed -i 's/this\.tunnelUrl=s\.serverUrl,!this\.connectionId||!this\.tunnelUrl/this.tunnelUrl=s.serverUrl||("https:\/\/tunnel.poke.com\/"+s.id),!this.connectionId/' "$SDK_DIR/dist/index.mjs"
sed -i 's/this\.tunnelUrl=s\.serverUrl,!this\.connectionId||!this\.tunnelUrl/this.tunnelUrl=s.serverUrl||("https:\/\/tunnel.poke.com\/"+s.id),!this.connectionId/' "$SDK_DIR/dist/index.cjs"

Alternative: Manual registration (no tunnel)

Only use this if you already have a publicly reachable URL (VPS, Tailscale Funnel, ngrok). Less secure — anyone with the URL can reach the endpoint.

# 1. Expose the MCP server port publicly
tailscale funnel localhost:3210 /poke

# 2. Register with Poke
poke mcp add https://myhost.example.com/poke/mcp --name "OpenClaw"

What Gets Configured

ComponentValueSource
MCP endpointhttp://localhost:3210/mcpMCP server
Hooks URLhttp://localhost:{port}/hooks/agentAuto-detected from gateway config
Hooks tokenBearer tokenAuto-detected from openclaw.json
Poke API keyJWTUser provides or OAuth
Gateway port18789 (default)Auto-detected

Sending Messages (OpenClaw → User)

Use the poke_send tool. It sends SMS/iMessage through Poke to the user's phone.

When to Use Poke vs Chat Channel

ScenarioUse
Normal conversationTelegram/WhatsApp (default channel)
User explicitly says "text me"Poke
Critical alert (deploy failure, outage)Poke (SMS gets through)
Proactive daily briefingChat channel (less intrusive)
Responding to a Poke-sourced requestPoke (respond where request came from)

Handling Inbound Events (Poke → OpenClaw)

ALL messages from Poke arrive prefixed with [Poke→OpenClaw]. This is how you identify the source.

Critical Rule: Route Responses Back to Poke

When you see [Poke→OpenClaw] in a hook/system message:

  1. The request came from Poke, not from the user's chat channel
  2. Respond via poke_send, NOT in the current chat session
  3. Never dump Poke responses into Telegram/WhatsApp — Poke asked, Poke gets the answer

Critical Rule: Tell Poke to Target Your Main Session

When sending instructions to Poke, always tell Poke to use session targeting:

  • Poke should call list_sessions to discover active sessions and their keys
  • Then use send_to_agent with session_key set to your main session (kind: "direct", ends with :main)
  • Discover the key via list_sessions — don't hardcode it
  • Without session_key, messages land in a throwaway hook session with NO context

Inbound Event Format

System: [timestamp] Hook Hook: [Poke→OpenClaw] <message content>

Webhook Triggers (Post-Setup)

After the handshake is established, wire up external services to route through Poke.

Creating Triggers

# Via tool
poke_webhook(condition="when a Vercel deploy fails")

# Via CLI
npx openclaw-poke webhook "when a Vercel deploy fails"

Or text Poke directly: "Create a trigger: when GitHub Actions fails, send details to my OpenClaw agent"

Common Patterns

  • GitHub CI failuresworkflow_run events
  • Vercel deploy errors → deployment events
  • Stripe payment failurespayment_intent.payment_failed
  • Uptime monitoring → webhook on downtime
  • Calendar events → Google Calendar push notifications

Available Tools

ToolPurpose
poke_sendSend SMS/iMessage to user
poke_sessionsList active OpenClaw sessions
poke_session_sendSend message to specific session
poke_webhookCreate Poke trigger/webhook

MCP Server Tools (exposed to Poke)

ToolPurpose
send_to_agentSend message to OpenClaw (with session targeting)
list_sessionsList active OpenClaw sessions and their keys
check_agent_statusHealth check
create_reminderSet a reminder via OpenClaw
send_mediaSend media to agent
get_logsGet recent agent logs
read_fileRead a file from agent workspace
create_triggerCreate a trigger on OpenClaw side

Troubleshooting

ProblemFix
"Missing Poke API key"Run npx openclaw-poke setup or set POKE_API_KEY
"Server did not return a valid connection ID"Poke SDK bug — apply the sed patch above
Tunnel won't startCheck poke whoami — may need poke login
Login URL not foundURL is https://poke.com/device?code=CODE (not device.poke.com)
Message not deliveredCheck Poke app, verify phone number
Agent responds in wrong channelCheck for [Poke→OpenClaw] prefix; respond via poke_send
Poke responses land in wrong sessionPoke isn't using session targeting; remind it to call list_sessions
Tools show 0 after registrationNormal; tools sync on first use
"clearhistory"If Poke calls wrong MCP after renaming, text "clearhistory" to Poke
Tunnel disconnectssystemd auto-restarts; check journalctl --user -u openclaw-poke-tunnel

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.54%
按下载量换算938

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills