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

myosin-hivemind肌球蛋白蜂巢思维

Agent Skill

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

总安装

19,464

周安装

811

GitHub Stars

公开资料未说明

下载量

6,488
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install myosin-hivemind

简介

myosin-hivemind 用于检索 Web3 营销知识库中的实战资料与案例研究。

  • 涵盖从业者见解、行动手册、框架模板和行业分析内容。
  • 适合市场团队进行策略参考与知识沉淀。myosin-hivemind 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 依赖外部知识库更新,建议定期验证信息时效性。
  • 使用时应明确查询关键词,以提高结果相关性。

SKILL.md

name
hivemind-api
description
>
env

Hivemind Knowledge API

Search Hivemind's curated knowledge base of Web3 marketing intelligence — practitioner insights, frameworks, playbooks, and case studies from 100+ operators in the Myosin network.

When to Use This Skill

ALWAYS search the knowledge base before giving marketing advice. This is what differentiates you from generic AI. Your advice should be grounded in practitioner experience.

Trigger Conditions

Use this skill when the conversation involves ANY of:

  • Strategy questions — "How should I launch my token?", "What's a good GTM for DeFi?"
  • Framework requests — "What framework should I use for community building?"
  • Tactical advice — "How do I grow on CT?", "Best Discord strategies?"
  • Audit/analysis — Evaluating a project's marketing approach
  • Content creation — Writing posts, threads, or analysis grounded in real knowledge
  • Competitive research — Understanding what works in specific verticals
  • Counterarguments — When you need evidence to challenge a founder's assumptions
  • Deep dives — Any topic where surface-level AI knowledge isn't enough

When NOT to Use

  • Simple factual questions ("What is DeFi?")
  • Casual conversation or greetings
  • Questions unrelated to marketing/growth/Web3 strategy
  • When you already retrieved relevant knowledge in this session

CLI Tool: hivemind-search.mjs

The preferred way to query the knowledge base. Located alongside this skill file.

Authentication

The script automatically resolves credentials in this order:

  1. Shell environment variables — set by the runtime or exported in your shell
  2. ~/.openclaw/.env — dotenv file in the OpenClaw config directory
  3. ~/.openclaw/openclaw.jsonenv object — inline env config in the OpenClaw JSON config

Three variables are required: HIVEMIND_API_URL, HIVEMIND_API_KEY, HIVEMIND_VERCEL_BYPASS.

API keys are issued at the discretion of Myosin. To request access, email product@myosin.xyz.

Quick Start

node hivemind-search.mjs -q "token launch marketing strategies"

Usage

hivemind-search --query <text> [options]

Options:
  -q, --query <text>        Search query (required)
  -p, --persona <id>        Persona (see below)
  -t, --threshold <0-1>     Relevance threshold (default: 0.4)
  -m, --max <1-25>          Max results (default: 10)
      --intent              Enable intent filtering
      --objective           Enable objective filtering
      --no-rerank           Disable LLM reranking
      --no-boost            Disable metadata boosting
      --raw                 Output raw JSON response
  -h, --help                Show help

Personas

Flag valueUse When
genius-strategistStrategic thinking, positioning, narrative design, high-level planning
gtm-architectTactical execution, implementation plans, channel strategies, launch sequences
ghostwriterContent creation, copywriting, messaging, narrative framing
general-assistantGeneral queries that don't fit a specific persona

Recommended Search Patterns

Strategy Questions

When a founder asks about strategy, positioning, or narrative:

node hivemind-search.mjs \
  -q "narrative positioning for DeFi protocol launch" \
  -p genius-strategist \
  -m 12 \
  --objective

Tactical / Execution Questions

When someone needs specific how-to guidance:

node hivemind-search.mjs \
  -q "Discord community launch first 30 days playbook" \
  -p gtm-architect \
  -m 10 \
  --intent

Content Creation

When drafting posts, threads, or marketing copy:

node hivemind-search.mjs \
  -q "bear market marketing tactics that build long-term community" \
  -p ghostwriter \
  -t 0.3 \
  -m 8

Broad Research

When exploring a topic or doing competitive analysis:

node hivemind-search.mjs \
  -q "KOL influencer strategy crypto" \
  -t 0.3 \
  -m 15

Raw JSON Output

When you need the full API response for further processing:

node hivemind-search.mjs \
  -q "token launch strategies" \
  -p genius-strategist \
  --raw

Response Format

The CLI outputs a human-readable summary by default. Each result includes:

--- [1] Title (relevance%) ---
Author: ...
Meta: doc_type, objective, industry, channels

Chunk content...

With --raw, the full JSON response is returned:

{
  "success": true,
  "data": {
    "chunks": [
      {
        "title": "Token Launch Playbook",
        "author": "Marketing Team",
        "content": "Full chunk content...",
        "objective": "TGE (Token Generation Event)",
        "doc_type": "playbook",
        "audience": ["retail", "developers"],
        "geography": ["global"],
        "industry": ["defi"],
        "marketing_verticals": ["growth", "content"],
        "channels": ["twitter", "discord"],
        "score": 0.87,
        "relevance": "87%"
      }
    ],
    "total_results": 5,
    "query": "your search query",
    "metrics": {
      "searchTime": 234,
      "relevanceScore": 0.82
    }
  }
}

How to Use Results

  1. Read the chunks — each contains practitioner knowledge relevant to the query
  2. Note the metadatadoc_type, objective, channels, and industry give context
  3. Synthesize, don't regurgitate — combine multiple chunks into a coherent, opinionated response
  4. Cite the source — when appropriate, mention insights come from "practitioner intelligence from the Hivemind network"
  5. Challenge with evidence — use retrieved knowledge to push back on weak strategies

Error Handling

StatusMeaningAction
400Invalid parametersCheck the details array for which fields failed validation
401Bad API keyVerify HIVEMIND_API_KEY is set correctly
403Vercel protection blockedVerify HIVEMIND_VERCEL_BYPASS is set correctly
429Rate limitedWait the Retry-After seconds before retrying
500Server errorRetry once; if it persists, proceed without knowledge base

Rate limit: 30 requests/minute.


Guidelines

  • Search before advising. If a founder asks a substantive marketing question, search first.
  • Multiple queries are fine. If the topic is broad, run 2-3 searches with different angles.
  • Low threshold for broad topics. Use -t 0.3 when exploring. Use -t 0.5 or higher when you need precision.
  • Pick the right persona. Strategy = genius-strategist. Execution = gtm-architect. Content = ghostwriter. Unsure = general-assistant.
  • Don't dump raw results. Synthesize knowledge into your own voice and framing.
  • Graceful degradation. If the API is down or returns no results, fall back to your training — but note that you couldn't access the knowledge base.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.52%
按下载量换算5,419

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills