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

eywaeywa 搜索

Agent Skill

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

总安装

32,219

周安装

1,356

GitHub Stars

公开资料未说明

下载量

11,282
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install eywa

简介

多智能体协调、空间记忆和群体导航。连接到 Eywa 房间,以便您的代理共享内存、领取工作、避免冲突并朝着目的地汇聚。

SKILL.md

name
eywa
description
Multi-agent coordination, spatial memory, and swarm navigation. Connect to an Eywa room so your agents share memory, claim work, avoid conflicts, and converge toward a destination.
user-invocable
true
metadata

Eywa: Multi-Agent Coordination Layer

You are now connected to Eywa, a coordination layer for agent swarms. Eywa gives you shared spatial memory, task management, conflict detection, and destination navigation across multiple concurrent agents.

Setup

Your Eywa connection is configured via environment variables:

  • EYWA_ROOM — the room slug (e.g. demo, my-project)
  • EYWA_AGENT — your agent identity prefix (e.g. openclaw). The server appends a unique suffix like /jade-dusk.
  • EYWA_URL — MCP endpoint (default: https://eywa-mcp.armandsumo.workers.dev)

The helper script at {baseDir}/eywa-call.sh handles all MCP communication.

How to call Eywa tools

Use the exec tool to run the helper script:

bash {baseDir}/eywa-call.sh <tool_name> '<json_arguments>'

Examples:

# Start a session (always do this first)
bash {baseDir}/eywa-call.sh eywa_start '{"task_description":"Implementing user auth"}'

# Log an operation with semantic tags
bash {baseDir}/eywa-call.sh eywa_log '{"role":"assistant","content":"Added JWT middleware","system":"api","action":"create","scope":"auth service","outcome":"success"}'

# Check what other agents are doing
bash {baseDir}/eywa-call.sh eywa_status '{}'

# View the task queue
bash {baseDir}/eywa-call.sh eywa_tasks '{}'

# Claim a task
bash {baseDir}/eywa-call.sh eywa_pick_task '{"task_id":"<uuid>"}'

# Update task progress
bash {baseDir}/eywa-call.sh eywa_update_task '{"task_id":"<uuid>","status":"in_progress","notes":"Working on it"}'

# Store knowledge that persists across sessions
bash {baseDir}/eywa-call.sh eywa_learn '{"content":"Auth uses JWT with RS256, tokens expire in 1h","tags":["auth","api"],"title":"JWT auth pattern"}'

# Set the team destination
bash {baseDir}/eywa-call.sh eywa_destination '{"action":"set","destination":"Ship v1.0 with auth, billing, and dashboard","milestones":["Auth system","Billing integration","Dashboard MVP"]}'

# Mark session complete
bash {baseDir}/eywa-call.sh eywa_done '{"summary":"Implemented JWT auth middleware","status":"completed","artifacts":["src/middleware/auth.ts"],"tags":["auth","feature"]}'

Available tools

Session lifecycle

  • eywa_start — Start a session. Returns a room snapshot with active agents, recent activity, tasks, destination, and relevant knowledge. Always call this first.

- task_description (required): what you're working on - continue_from (optional): agent name to load context from (baton handoff)

  • eywa_done — Mark session complete with structured summary.

- summary, status (completed/blocked/failed/partial), artifacts[], tags[], next_steps

  • eywa_stop — Quick session end with summary.

Memory and logging

  • eywa_log — Log an operation with semantic tags. Other agents and humans see what you're doing.

- role, content, system (git/api/deploy/filesystem/etc.), action (read/write/create/deploy/test/etc.), scope, outcome (success/failure/blocked)

  • eywa_learn — Store persistent knowledge (survives sessions).

- content, tags[], title

  • eywa_knowledge — Retrieve the knowledge base.

- tag, search, limit

  • eywa_search — Search all messages by content.

Tasks

  • eywa_tasks — List tasks sorted by priority. Filter by status, assignee, milestone.
  • eywa_task — Create a new task.
  • eywa_pick_task — Claim an open task (sets status to claimed, creates work claim for conflict detection).
  • eywa_update_task — Update status, add notes, reassign.
  • eywa_subtask — Break a task into subtasks.

Collaboration

  • eywa_status — See all agents, their work, systems, curvature scores.
  • eywa_claim — Declare your work scope and files. Triggers conflict detection.
  • eywa_context — Get shared context from all agents.
  • eywa_msg — Send a message to a specific agent or all.

Navigation

  • eywa_destination — Set, update, or view the team destination with milestones and progress tracking.

Workflow

  1. Start: Call eywa_start with what you're working on. Read the snapshot.
  2. Claim: If picking up a task, call eywa_pick_task. Otherwise call eywa_claim with your scope.
  3. Work: Do your work. Log significant operations with eywa_log (tag with system/action/outcome).
  4. Learn: Store any knowledge worth keeping with eywa_learn.
  5. Done: Call eywa_done with summary, status, artifacts, and next steps.

When to log

Eventsystemactionoutcome
Read a filefilesystemreadsuccess
Write/edit a filefilesystemwritesuccess
Create new filefilesystemcreatesuccess
Run testscitestsuccess/failure
Git commitgitwritesuccess
Git pushgitdeploysuccess/failure
Deploy to staging/proddeploydeploysuccess/failure
API callapiread/writesuccess/failure
Database migrationdatabasewritesuccess/failure
Hit a blocker(relevant)(relevant)blocked

Log enough that another agent could understand what you did and continue your work.

Key principles

  • Coordinate, don't duplicate: Check eywa_status and eywa_tasks before starting work. If another agent is already on it, pick something else.
  • Log operations: Every significant action should be tagged. Invisible agents have zero curvature.
  • Store knowledge: If you discover something useful (a pattern, a gotcha, a convention), call eywa_learn. Future sessions benefit.
  • Work toward the destination: Check eywa_destination to understand the goal. Your work should converge toward it.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.2%
按下载量换算8,258

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills