# 策展 · X (Twitter) 🔥

> 作者：LeahW (@LeahW_2077) · 平台：X (Twitter) · 日期：2026-05-04

> 原始來源：https://x.com/LeahW_2077/status/2048750466046279681

## 中文摘要

「World2Agent開源協議賦予AI Agent即時世界感知。」

World2Agent (W2A) 是一個開放協議，標準化AI Agent感知真實世界的管道，讓Agent從被動回應提示轉向主動感知變化；開發團隊MachinePulse已開源協議、SDK與首批感測器，邀請社群共同建構感知層。

**核心理念與痛點**

World2Agent強調「Agent無法對其無法感知的事物採取行動」，批評當前Agent僅在使用者告知航班延誤時才知曉，缺乏真實感知；W2A讓世界變化時Agent即時知曉，無需任何人觸發。  
這不是產品，而是開放協議與邀請，首批感測器僅為起點，真實突破來自社群貢獻。

**架構設計**

遵循「World → Sensor → Agent」流程：  
- 感測器監控資料來源，依W2A協議發送結構化即時資料。  
- Agent接收訊號後自行決定行動。  
所有感測器使用相同schema，可自由替換；詳見[訊號格式規範](https://github.com/machinepulse-ai/world2agent/blob/main/docs/signal-format.md)與[架構深入解析](https://github.com/machinepulse-ai/world2agent/blob/main/docs/architecture.md)。

**感測器實例與效益**

開發團隊已建置具體感測器，展現實際價值：  
- **X感測器**：監控技術領導者貼文，捕捉訊號後Agent自動使用其洞見審核程式碼庫，為開發團隊節省約10小時/週。  
- **Deal感測器**：偵測限時免費遊戲掉落，Agent自動領取，零遺漏優惠。  
其他範例包括Hacker News故事與前沿AI實驗室貼文（如@world2agent/sensor-hackernews、@quill-io/sensor-frontier-ai-news）。

**SensorHub生態**

SensorHub已上線（https://world2agent.ai/hub），是所有W2A感測器的目錄，涵蓋市場、新聞、生產警報、天氣、AI實驗室等，按感知類別組織。  
- 每個感測器為npm套件，執行`npm search w2a-sensor`即可搜尋。  
- 提供搜尋、熱門排行、社群精選，無需學習新平台。  
貢獻感測器僅需npm publish並提交至SensorHub；感興趣共同維護者請DM @LeahW_2077。

**快速入門指南**

W2A提供Claude Code、Hermes、OpenClaw的原生agent-runtime plugin（https://github.com/machinepulse-ai/world2agent-plugins），選擇既有runtime即可。  

**Claude Code整合**  
在活躍工作階段執行：  
```
/plugin marketplace add machinepulse-ai/world2agent-plugins  
/plugin install world2agent@world2agent-plugins  
/reload-plugins  
```  
新增感測器：  
```
/world2agent:sensor-add @world2agent/sensor-hackernews  
/world2agent:sensor-add @quill-io/sensor-frontier-ai-news  
```  
重啟以載入plugin頻道：  
```bash  
claude --dangerously-load-development-channels plugin:world2agent@world2agent-plugins  
```

**Hermes整合**  
首次安裝bridge：  
```bash  
npm install -g @world2agent/hermes-sensor-bridge  
hermes skills install machinepulse-ai/world2agent-plugins/hermes-sensor-bridge/skills/world2agent-manage  
```  
互動階段新增：  
```
/world2agent-manage add @world2agent/sensor-hackernews  
```  
Agent自動處理npm install、SETUP.md問答、webhook訂閱與子程序啟動；首次需重啟hermes gateway，之後無縫。每個訊號觸發全新AIAgent.run_conversation()。

**OpenClaw整合**  
三步驟：  
```bash  
npm install -g @world2agent/openclaw-sensor-bridge  
openclaw skills install world2agent-manage  
```  
聊天中發送：  
```
Use world2agent-manage skill install @quill-io/sensor-frontier-ai-news  
```  
Skill引導SETUP.md、產生handler skill、註冊感測器並啟動supervisor；後續訊號觸發/hooks/agent呼叫。首次修改~/.openclaw/openclaw.json（備份原檔），需重啟gateway；若配置<PLATFORM>_HOME_CHANNEL（如Feishu、iMessage、Telegram），回覆自動推送到配對聊天平台。

瀏覽完整目錄請至SensorHub；自訂Agent系統整合見[開發者快速入門](https://github.com/machinepulse-ai/world2agent/blob/main/docs/quick-start.md#option-2-code--sdk--sensor)。

**安全考量**

僅安裝信任感測器：感測器訊號驅動Agent感知與行動，等同未信任指令來源。堅持開源感測器，先審核程式碼。

**自建感測器**

缺少感測器？約50行程式碼即可建置（https://github.com/machinepulse-ai/world2agent/blob/main/docs/build-a-sensor.md）。  
使用`build-w2a-sensor` skill引導AI coding Agent完成發現、訊號設計、scaffold與安裝配方：  
```bash  
npx skills add https://github.com/machinepulse-ai/world2agent/skills/build-w2a-sensor  
```  
完成後npm publish，即可供任何人安裝。

**發展路線圖**

- **Graph layer**：在訊號抵達Agent前，組合並豐富多感測器訊號（RFC：https://github.com/machinepulse-ai/world2agent/blob/main/docs/rfc-graph.md）。

**貢獻管道**

- 🔧 **建置感測器**：npm publish即上線。  
- 🐛 **回報錯誤**：開啟issue（https://github.com/machinepulse-ai/world2agent/issues）。  
- 💡 **建議感測器**：參與討論（https://github.com/machinepulse-ai/world2agent/discussions）。  
詳見[貢獻指南](https://github.com/machinepulse-ai/world2agent/blob/main/docs/CONTRIBUTING.md)。

**社群資源**

- 網站：https://world2agent.ai/、https://machinepulse.ai/  
- X/Twitter：https://x.com/MachinePulse_AI、https://x.com/LeahW_2077  
- Discord：https://discord.gg/hDjaD8pX  
- YouTube：https://youtube.com/@MachinePulse_AI  
- GitHub：https://github.com/machinepulse-ai/world2agent（包含DEMO）  
- 概念影片：https://world2agent.ai/assets/promo-w2a.mp4  
授權：Apache 2.0。

**開源精神與願景**

MachinePulse強調「開源、開放協議、開放邀請」，GITHUB與DEMO見評論；5分鐘內建置首個感測器（https://github.com/machinepulse-ai/world2agent）。若相信Agent應感知世界而非僅回應提示，這是你的協議。SensorHub已活絡，npm publish即加入生態，預期社群驅動重大突破。

## 標籤

Agent, 開源專案, SDK, World2Agent, MachinePulse
