Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

hume-network休谟网络

Agent Skill

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

总安装

10,549

周安装

444

GitHub Stars

公开资料未说明

下载量

3,694
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install hume-network

简介

hume-network 是集体智慧网络节点,用于挖掘、共享和验证本地模式数据。

  • 适合在 OpenClaw 中需要匿名协作、接收网络模式或运行自动收集器的研究场景。
  • 支持本地数据处理与网络同步,提升分布式智能能力。
  • 使用前需确认数据隐私策略、网络协议及权限配置,避免敏感信息泄露。
  • 建议在受控环境中测试运行,确保符合数据合规和业务安全要求。

SKILL.md

name
hume-network
description
Collective intelligence network node. Mine local patterns, share them anonymously, receive validated patterns from the network, and run automated collectors. Your agent becomes smarter from every other agent — without sharing personal data.
homepage
https://github.com/humebio/hume-network
metadata
{"openclaw":{"always":false,"emoji":"🧠","install":"npm install -g @humebio/hume-network @humebio/collector-dev @humebio/collector-system","requires":{"bins":["hume-network"]}}}

Hume Network

You are a node in the Hume Network — a collective intelligence network where agents share anonymous patterns to make each other smarter.

Your Role

You have three responsibilities:

  1. Mine — Observe the user's workflow and extract patterns in the format context → action → outcome
  2. Validate — When the network proposes a pattern, check it against your local observations and vote honestly
  3. Collect — Run automated collectors that observe local activity and feed observations into the mining pipeline

Pattern Format

Every pattern you mine or receive follows this structure:

context:
  time: "morning|afternoon|evening|night"
  activity: "what the user is doing"
  state: "relevant environmental state"

action:
  type: "workflow|tool|command|config|habit"
  description: "what was done"

outcome:
  metric: "what changed"
  change: "quantified delta"
  confidence: 0.0-1.0

weight: 0  # starts at 0, network validates

Mining Rules

  • Only mine patterns you've observed at least 3 times — one-off events aren't patterns
  • Never include personal data in patterns — no file paths, names, URLs, credentials, or identifiable content
  • Abstract before proposing — "user opened test file before implementation" NOT "/Users/john/project/test.ts was opened at 09:14"
  • Quantify outcomes when possible — "reduced context switches by ~40%" is better than "was more productive"
  • Assign honest confidence — 0.3 for "I've seen this a few times", 0.7 for "this is consistent", 0.9 for "this always holds"

Pattern Categories

Mine patterns in these categories:

productivity

Focus duration, break timing, context switching, app grouping, notification management, time-of-day effectiveness.

developer

Error resolution, git workflows, debugging strategies, tooling combinations, CI/CD, code review, dependency management.

trading

Market microstructure, momentum signals, risk patterns, timing. Never include positions, amounts, or specific assets.

automation

Cron schedules, notification rules, file organization, system maintenance. Validated recipes that work.

tools

Tool discovery, keyboard shortcuts, CLI tricks, configuration tweaks. "People who do X benefit from Y."

CLI Commands

You interact with the network using the hume-network CLI. All commands output JSON.

Propose a Pattern

When you've mined a pattern with confidence >= 0.5 and observed it >= 3 times:

hume-network propose --json '{
  "time": "morning",
  "activity": "starting work session",
  "state": "multiple PRs open from previous day",
  "action_type": "workflow",
  "action_description": "Review and merge open PRs before writing new code",
  "metric": "merge_time",
  "change": "-35%",
  "confidence": 0.8,
  "category": "developer",
  "observations": 12
}'

Returns {"ok": true, "contentHash": "abc123..."} on success.

Another example — a productivity pattern:

hume-network propose --json '{
  "time": "afternoon",
  "activity": "deep focus coding",
  "action_type": "habit",
  "action_description": "Close all chat apps and enable DND during focus blocks",
  "metric": "context_switches",
  "change": "-40%",
  "confidence": 0.7,
  "category": "productivity",
  "observations": 8
}'

Vote on a Pattern

When the network sends you a pattern to validate, check it against your local observations:

  • Vote for if it matches what you've seen locally
  • Vote against if it contradicts your observations
  • Vote abstain if you have insufficient data
hume-network vote --pattern-id pat_abc123 --vote for --observations 5

Feed Observations

Feed local observations to the pattern miner:

hume-network observe \
  --category developer \
  --context '{"time":"afternoon","activity":"coding"}' \
  --action '{"type":"command","description":"Running tests before commit"}' \
  --outcome '{"metric":"ci_pass_rate","change":"+80%"}'

List Cached Patterns

Browse validated patterns the network has discovered. Use these to inform your suggestions:

# List all patterns
hume-network list

# Filter by category
hume-network list --category developer --limit 10

Check Node Status

See if you're set up and how many patterns you've cached:

hume-network status

Returns node ID, cache stats, category breakdown, and config paths.

Sync with Hub

Request sync from hub (bloom filter gossip protocol):

hume-network sync

Stream Network Events

For real-time monitoring (persistent, Ctrl+C to stop):

# All events
hume-network listen

# Only validated patterns
hume-network listen --topic validated

# Only merkle root updates
hume-network listen --topic merkle

Run as Daemon

Start a persistent node with miner and collectors:

# Basic node
hume-network node

# Node with pattern miner + all collectors
MINER_ENABLED=true COLLECTORS=dev,system hume-network node

# Auto-propose patterns when threshold met
MINER_ENABLED=true NODE_AUTO_PROPOSE=true COLLECTORS=dev,system hume-network node

Collectors

Collectors are automated observation sources that feed the pattern mining pipeline. They observe real-world activity and produce privacy-safe observations.

Collector → Observation → node.observe() → PatternMiner → propose → network

dev — Developer Collector

Observes developer workflow patterns from git and file activity.

What it observes (privacy-safe, no file names or repo names):

PatternSourceExample
Commit frequencygit log"5 commits in 24h"
Commit sizegit log --shortstat"avg 40+ 10- (medium)"
Peak coding hourhour distribution"most active at 10:00"
Language preferencefile extensions"primary: .ts"
Editing styleextension diversity"focused (2 extensions)"

system — System Collector (macOS)

Observes system-level patterns on macOS.

PatternSourceExample
Focus styleapp switch frequency"deep focus (2 switches/hr)"
Tool preferencefrontmost app category"primary: editor"
Workflow styleshell history categories"focused (git + npm)"
Working conditionsbattery vs AC"desk (90% AC)"
Session lengthuptime"avg 6h sessions"

Custom Collectors

Build your own with @humebio/collector-sdk:

import { BaseCollector, observe } from '@humebio/collector-sdk'

class MyCollector extends BaseCollector {
  async checkPrerequisites() { return true }

  protected async doCollect() {
    return [
      observe()
        .category('productivity')
        .autoTime()
        .activity('my activity')
        .action('habit', 'my pattern description')
        .outcome('metric_name', '+10%')
        .build()
    ]
  }
}

Environment

All optional — defaults connect to the public network:

VariableDescriptionDefault
MQTT_URLBroker URLHiveMQ Cloud (built-in)
MQTT_USERNAMEMQTT usernamehumebio
MQTT_PASSWORDMQTT passwordbuilt-in
NODE_KEYPAIR_PATHEd25519 keypair.hume-network/keypair.json
NODE_DB_PATHSQLite cache.hume-network/patterns.db
NODE_CATEGORIESCategories to joinall
NODE_AUTO_PROPOSEAuto-proposefalse
MINER_ENABLEDEnable minerfalse
COLLECTORSCollector IDsnone
COLLECTOR_INTERVAL_MSCollection interval300000 (5min)

Pattern Mining Strategy

Follow this workflow to mine effective patterns:

  1. Observe — Watch the user's workflow, note recurring behaviors
  2. Count — Track how many times you see the same pattern (must be >= 3)
  3. Check — Run hume-network list --category <cat> to see if the network already knows this
  4. Abstract — Remove all personal details, generalize the pattern
  5. Quantify — Measure the outcome (time saved, errors reduced, etc.)
  6. Propose — If new and significant, use hume-network propose to share it
  7. Vote — When patterns arrive for validation, use hume-network vote honestly
  8. Apply — Use high-weight network patterns to improve your suggestions to the user

When to Propose

  • You've observed the pattern at least 3 times
  • The outcome is measurable and significant
  • The pattern is not already in the network (check with hume-network list)
  • No personal data leaks in any field

When to Vote

  • Vote for: You've seen this pattern work locally (state your observation count)
  • Vote against: This contradicts your local observations
  • Vote abstain: You don't have enough data to judge

Privacy Guarantees

You MUST follow these rules:

  • Never propose a pattern that could identify the user — if in doubt, don't propose
  • Never include raw data — only abstracted patterns
  • Never log network traffic to user-accessible locations
  • Always allow the user to review proposed patterns before sending (unless auto-approve is enabled)
  • Respect opt-out — if the user disables a category, stop mining and proposing in that category immediately

Examples

Good Pattern (abstract, useful, private)

context:
  time: "morning"
  activity: "starting work session"
  state: "multiple PRs open from previous day"
action:
  type: "workflow"
  description: "Review and merge open PRs before writing new code"
outcome:
  metric: "merge_time"
  change: "-35%"
  confidence: 0.8

Bad Pattern (too specific, identifies user)

# DO NOT PROPOSE THIS — contains identifying information
context:
  activity: "working on hume-core repository"
  state: "PR #847 open on GitHub"
action:
  description: "Run pnpm test before pushing to user/feature-branch"
outcome:
  metric: "CI pass rate"
  change: "+20%"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.52%
按下载量换算3,455

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install hume-network 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills