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

rotifer-guide轮虫指南

Agent Skill

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

总安装

2,864

周安装

117

GitHub Stars

公开资料未说明

下载量

917
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install rotifer-guide

简介

Rotifer 协议的交互式入门与自然语言引导界面。

  • 提供诊断工具与生态系统技能搜索功能入口。
  • 帮助用户快速定位所需能力并升级保真度等级。
  • 集成常见问题解答与故障排除知识库链接。
  • 面向新用户降低学习曲线提升上手效率。rotifer-guide 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
rotifer-guide
description
>-

Rotifer Guide — User Entry Point

This Skill handles intent recognition and workflow routing. Deep technical details are delegated to specialized Skills.

Prerequisites

Before using this Skill, ensure the Rotifer CLI is available:

npx @rotifer/playground --version

If you prefer MCP integration instead of CLI, add this to your MCP config:

{
  "mcpServers": {
    "rotifer": {
      "command": "npx",
      "args": ["@rotifer/mcp-server"]
    }
  }
}

No version pinning needed — both packages resolve to the latest release automatically.


Intent Router

User signalSub-capabilityAction
How to / getting started / tutorial / beginner / what is a GeneonboardingInteractive walkthrough
Create / make a XX / new / init / I want ascaffoldNatural-language scaffolding
Score is 0 / publish failed / something's wrong / why / diagnose / checkdoctorDiagnostics & repair
Any gene for / recommend / search / find one that does XXexplorerEcosystem search
Upgrade / Wrapped to Native / fidelity / evolve / rewriteupgradeFidelity evolution

When intent is unclear, list all five sub-capabilities and let the user choose.

Related Skills

SkillRelationshipWhen to route
gene-dev/SKILL.mdDeep technical manual for scaffold / onboardingUser needs full development workflow details
gene-migration/SKILL.mdDeep migration manual for upgradeAfter user confirms migration plan
rotifer-arena/SKILL.mdComparison & evaluation entryUser wants to compare Genes / run Arena
genome/SKILL.mdGene compositionUser wants to combine multiple Genes into an Agent

1. onboarding — Interactive Walkthrough

Phase 1: Environment Check

cd rotifer-playground
node dist/index.js --version
node dist/index.js list

If not installed, guide: git clonenpm installnpm run build.

Phase 2: Core Concepts

ConceptOne-linerAnalogy
GeneSelf-contained logic unit: express(input) → outputFunction
FidelityNative > Hybrid > Wrapped — higher = more secureCompiler optimization level
ArenaGenes compete for ranking via F(g) fitness scoreLeaderboard
DomainTwo-level category like content.grammarNamespace
phenotype.jsonGene metadatapackage.json
R(g) / V(g)Reputation score / Security scoreCredit rating

Phase 3: Hands-on Experience

Walk the user through a Gene's complete lifecycle:

rotifer init hello-world --domain content.greeting --fidelity Wrapped
rotifer test hello-world
rotifer compile hello-world
rotifer arena submit hello-world
rotifer arena list --domain content.greeting

After each step, explain the output and confirm the user understands before proceeding.

Phase 4: Next Steps

Recommend based on user background:

  • Has an existing SKILL.md → scaffold (rotifer wrap)
  • Wants to browse the ecosystem → explorer
  • Wants to dive deeper → route to gene-dev/SKILL.md

2. scaffold — Natural-Language Scaffolding

Phase 1: Intent Extraction

Extract from the user's natural-language description:

ParameterExtraction methodDefault
nameGenerate kebab-case from descriptionMust confirm
domainInfer two-level domain from functionalityMust confirm
fidelityNeeds external API → Hybrid, pure computation → Native, quick prototype → WrappedWrapped

Phase 2: Confirm Parameters

Present inferred results to the user, wait for confirmation before executing.

Phase 3: Scaffold Generation

From scratch:

rotifer init <name> --domain <domain> --fidelity <fidelity>

From an existing SKILL.md:

rotifer scan --skills
rotifer wrap <name> --from-skill <path>

From ClawHub:

rotifer wrap <name> --from-clawhub <slug>

Phase 4: Verification

rotifer test <name>
rotifer compile <name>

After compilation passes, prompt: publish to Cloud (rotifer publish) or submit to Arena (rotifer arena submit).

For deeper development details (inputSchema design, express function implementation) → route to gene-dev/SKILL.md.


3. doctor — Diagnostics & Repair

Decision Tree

User reports a problem
 |
 +-- F(g) = 0 or abnormally low score
 |   +-- Does rotifer test <name> pass?
 |   |   +-- Fails → Check if express() return value matches outputSchema
 |   |   +-- Passes → Check if phenotype.json domain is reasonable
 |   +-- Are there competitors in the same domain?
 |       +-- Yes → Analyze competitor strengths, suggest optimizations
 |
 +-- Publish failed
 |   +-- Does rotifer compile <name> succeed?
 |   |   +-- Fails → Check for syntax errors, missing dependencies
 |   |   +-- Succeeds → Check network connection, Cloud credentials
 |   +-- Is phenotype.json format valid?
 |
 +-- Compilation failed
 |   +-- Check the exported express function signature in index.ts
 |   +-- Check inputSchema / outputSchema in phenotype.json
 |   +-- Check if fidelity declaration matches actual code
 |       +-- Declared Native but has fetch calls → Change to Hybrid or remove network calls
 |
 +-- Runtime error
     +-- rotifer test <name> --verbose
     +-- Check if input conforms to inputSchema
     +-- Check if express() handles edge cases correctly

Common Diagnostic Commands

rotifer test <name>
rotifer list
rotifer arena list --domain <domain>

Quick Reference

SymptomRoot causeFix
F(g) = 0express() returns empty or format mismatchFix return value to match outputSchema
Compilation failedTypeScript type errorCheck express function signature
Publish timeoutCloud credentials expiredRefresh Cloud credentials
Arena ranking droppedStronger competitor appeared in same domainOptimize algorithm or upgrade fidelity
Fidelity mismatchNative declared but has fetch callsRemove network calls or change declaration to Hybrid

4. explorer — Ecosystem Search

Phase 1: Understand the Need

Extract from user description: functionality keywords, target domain, fidelity preference.

Phase 2: Search

rotifer arena list
rotifer arena list --domain <domain>
rotifer list

Phase 3: Result Analysis

Display search results in a table:

FieldDescription
nameGene name
domainCategory
fidelityNative / Hybrid / Wrapped
F(g)Fitness score
R(g)Reputation score

Phase 4: Recommendation

  • Found a matching Gene → suggest install: rotifer install <name>
  • Found a partial match → suggest fork and modify, or submit an Arena challenge (route to rotifer-arena/SKILL.md)
  • Nothing found → suggest creating a new Gene (route to scaffold)

5. upgrade — Fidelity Evolution

Phase 1: Assess Current State

rotifer list

Check the target Gene's phenotype.json — confirm current fidelity and express() implementation.

Phase 2: Migration Path Decision

CurrentTargetConditionPath
WrappedNativeFunctionality can be implemented as pure computationRewrite express(), remove all external calls
WrappedHybridMust call external APIsAdd WASM shell + allowedDomains whitelist
HybridNativeCan internalize API dependenciesReplace API calls with local algorithms

Phase 3: Execute Migration

After confirming the migration plan, route to gene-migration/SKILL.md for the full migration workflow.

Phase 4: Verification

rotifer test <name>
rotifer compile <name>
rotifer arena submit <name>

Compare F(g) scores before and after migration to confirm ranking continuity.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.17%
按下载量换算882

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills