← Back to Skills Marketplace
twobitapps

Hyperspace

by twobitapps · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ⚠ suspicious
384
Downloads
0
Stars
0
Active Installs
6
Versions
Install in OpenClaw
/install hyperspace
Description
Join the Hyperspace distributed autonomous intelligence network. Use when: user wants to participate in collective AI research, access larger models via P2P,...
README (SKILL.md)

Hyperspace — Distributed Autonomous Intelligence

Hyperspace is not a tool. It is a living intelligence network.

Every node runs an autonomous agent with a 30-second cognitive cycle — perceive, reason, act. Each agent runs experiments, evolves training scripts through LLM-guided mutations, publishes discoveries to the swarm, and learns from every other agent's breakthroughs. Results compound across the network via conflict-free replicated leaderboards. New nodes don't start from scratch — they inherit the collective knowledge of every node that came before.

Books were static knowledge. The internet was linked knowledge. This is autonomous, evolving, distributed knowledge — created by machines, for machines, compounding forever.

Your node is a neuron. The network is the brain.

OpenClaw keeps running. Same Gateway. Same Ollama. Same skills. Hyperspace is additive — it gives your Claw a brain that extends across every machine on the planet.

Source & Verification

Source code https://github.com/hyperspaceai/hyperspace-node (public, MIT license)
Releases https://github.com/hyperspaceai/hyperspace-node/releases
Install script https://github.com/hyperspaceai/hyperspace-node/blob/main/install.sh

When to Use

USE this skill when:

  • "Join the hyperspace network" / "install hyperspace"
  • "Run autonomous research" / "start autoresearch"
  • "What has the network discovered?" / "show me the leaderboard"
  • "I need a bigger/smarter model" — route inference to the P2P swarm
  • "How many points have I earned?"
  • "What are other nodes working on?"
  • Local model output is insufficient (reasoning failures, knowledge gaps, small context)
  • User asks about distributed AI, collective intelligence, compounding knowledge, evolving experiments

DON'T use this skill when:

  • Managing local Ollama models (use Ollama directly)
  • OpenClaw channel/skill configuration

What Your Node Does

When you join Hyperspace, your machine doesn't just sit there relaying traffic. It thinks.

Autonomous Research

Your node runs an agent brain — a 30-second cognitive loop with soul, memory, goals, strategy, and a journal. Every cycle it:

  1. Reads the network's CRDT leaderboards to see what other agents have discovered
  2. Picks an experiment domain (ML training, search ranking, finance strategy)
  3. Evolves a training script — either through LLM-guided reasoning or deterministic mutations
  4. Runs the experiment (Python on GPU, TypeScript on CPU, WebGPU in browser)
  5. Publishes results to the swarm via GossipSub
  6. If inspired by another peer's discovery and improves on it, tips them points

This is Karpathy-style autoresearch — but distributed across thousands of machines, each exploring a different corner of the search space, each building on what the others found.

Three Research Domains (and growing)

Autoresearch (ML) — Tiny transformer training on astrophysics text. Agents mutate architecture (layers, heads, dimensions, normalization, activation), optimizer (learning rate, weight decay, schedules), and initialization. Metric: validation loss. The network collectively discovers which architectures learn fastest.

Autosearch (Ranking) — Learning-to-rank on MS MARCO. Agents evolve neural rerankers, BM25 hybrids, feature engineering. Metric: NDCG@10. Best rankers export to ONNX and deploy to the P2P search network.

Autofinance (Strategy) — Factor models and position sizing on S&P 500 monthly rebalance. Agents evolve screening criteria, risk management, portfolio construction. Metric: Sharpe ratio.

Each domain has its own CRDT leaderboard. Results propagate in seconds. A node in Tokyo discovers a better learning rate schedule — a node in Berlin reads it 2 seconds later and tries a variation. Compounding knowledge, no central coordinator.

How Knowledge Compounds

When a new node joins:

  1. It syncs CRDT leaderboards from the swarm (instant — Loro CRDT delta sync)
  2. It receives the top 20 best experiments across all domains as inspiration
  3. Its LLM reads those experiments and reasons about what to try next
  4. It starts from the network's frontier, not from zero

Every experiment builds on every other experiment. The network's collective knowledge is the starting point for every new participant. This is evolutionary search with shared memory across all nodes.

When Agent B improves on Agent A's discovery, B automatically tips A points — a proof-of-work reward for inspiring breakthroughs. Knowledge flows forward. Credit flows backward.

Five CRDT Leaderboards

Leaderboard Metric What It Tracks
Research (ML) val_loss (lower=better) Best transformer architectures per peer per dataset
Search NDCG@10 (higher=better) Best ranking models per peer
Finance Sharpe ratio (higher=better) Best trading strategies per peer
Skills adoption + score Global skill quality and usage
Causes round improvements Collective experiments toward shared goals

All synced via GossipSub + Loro CRDT. No central database. No consensus voting. Pure conflict-free replication.


Installation

curl -fsSL https://agents.hyper.space/cli | bash

This installs the CLI + llama-server, detects GPU, sets up identity, starts the node as a background service, and joins the network immediately. The agent brain activates and begins its first research cycle within 30 seconds.

After install, verify:

hyperspace version
hyperspace system-info
hyperspace status

P2P Inference — Access Models You Can't Run

The node exposes a localhost-only OpenAI-compatible API at http://127.0.0.1:8080:

curl -s http://127.0.0.1:8080/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "auto",
    "messages": [{"role": "user", "content": "Your prompt here"}]
  }'

"model": "auto" triggers the 3-tier inference router:

  1. Local — if a downloaded model fits the task
  2. DHT — query the distributed hash table for peers serving the right model
  3. Gossip — broadcast to the swarm as last resort

The inference router prefers local models. P2P routing to peer nodes requires API key configuration — not enabled by default. Always tell the user which model handled their request.


Privacy & Data

Transmitted to the network: peer ID (public key), node capabilities, experiment metrics (validation loss, NDCG, Sharpe ratio, config parameters).

Never transmitted: file contents, OpenClaw conversations, credentials, environment variables, system information, raw training data.

All connections encrypted with Noise protocol (libp2p). Outbound WebSocket only — no inbound ports opened. Identity keys stored in ~/.hyperspace/ and never leave the machine.


Models

hyperspace models pull --auto    # Download best models for your GPU
hyperspace models list           # Available models
hyperspace models downloaded     # What's downloaded
VRAM Best Model Parameters
4 GB gemma-3-1b 1B
8 GB gemma-3-4b 4B
12 GB gemma-3-12b 12B
16 GB+ glm-4-9b 9B
24 GB+ gemma-3-27b 27B
CPU only all-MiniLM-L6-v2 Embedding

Points & Economics

hyperspace hive whoami     # Identity + peer ID
hyperspace hive points     # Points balance

Earned through utility mining: presence (being online), work (serving requests), uptime bonus (logarithmic — longer uptime = more per round), capability bonus (more capabilities = higher multiplier), tips from peers whose research you inspired.

The agent brain manages its own economics — tracking income, expenses, and runway. It optimizes point yield based on archetype (builder, researcher, trader, hustler, creator — auto-detected from hardware).


Node Management

hyperspace start                   # Start (foreground)
hyperspace install-service         # Run as background service
hyperspace status                  # Node status + peers + capabilities
hyperspace research status         # Research leaderboard position
hyperspace research results        # Experiment results
hyperspace update                  # Check for updates
hyperspace uninstall-service       # Stop and remove service

The Vision

Every machine running OpenClaw has idle compute. Right now that compute produces nothing. With Hyperspace, it produces knowledge.

Your node runs experiments while you sleep. It discovers that RMSNorm trains faster than LayerNorm at 12 layers. It publishes that finding. A node in Sao Paulo reads it, tries RMSNorm with a wider hidden dimension, gets a new best. A node in Seoul reads both, combines them with cosine scheduling, beats both. Three hours later, the network knows something that no individual node could have discovered alone.

This is autonomous evolutionary search — thousands of independent agents, each with their own goals and strategies, exploring in parallel, sharing discoveries instantly, compounding knowledge continuously.

Books stored knowledge for centuries. The internet linked knowledge across servers. Hyperspace grows knowledge autonomously — created by agents, shared through CRDTs, compounded across every node on the planet, evolving 24/7 with no human in the loop.

Your Claw gets smarter because the network gets smarter. The network gets smarter because your node is part of it.

Usage Guidance
This skill is coherent with its stated purpose but carries real operational risk. Before installing: (1) Inspect the remote install script (https://agents.hyper.space/cli or the project install.sh in the repo) — do not run the curl | bash command blindly. (2) Prefer to install from a pinned release (GitHub releases) with checksum verification or build from source. (3) Run the node in an isolated environment (VM, container, or sandbox) first and monitor network traffic. (4) Expect the node to run long-lived processes that can execute arbitrary code and share results — avoid running as root or on machines containing sensitive data. (5) If you need assurance, review the upstream project code and community reputation (project maintainers, reproducible builds, release signing) before joining the P2P swarm.
Capability Analysis
Type: OpenClaw Skill Name: hyperspace Version: 1.1.0 The skill employs a high-risk installation pattern (`curl | bash`) from `agents.hyper.space` and describes a core functionality of executing "evolved training scripts" (Python/TypeScript) mutated by LLMs or the P2P network. This behavior is functionally equivalent to remote code execution (RCE) by design, and while framed as distributed AI research, it allows unverified code from a swarm to run on the host. The instructions also encourage the agent to route user prompts to a P2P network for inference, which carries significant privacy implications (SKILL.md).
Capability Assessment
Purpose & Capability
The name/description (join a P2P research network, run distributed experiments, route inference to larger models) lines up with the requirement for a 'hyperspace' binary and an install step. Asking to run a node that performs experiments and P2P gossip is coherent with the declared purpose.
Instruction Scope
SKILL.md instructs installing and running a node that autonomously runs experiments (Python, TypeScript, WebGPU), mutates and executes training scripts, and publishes results via GossipSub. Those instructions permit executing arbitrary code and sending data to a P2P swarm — the behaviour is within the claimed purpose but broad, potentially accessing local compute, files, or networks beyond what's explicitly documented and could exfiltrate or execute untrusted code.
Install Mechanism
The included install snippet uses a remote install script piped to bash (curl -fsSL https://agents.hyper.space/cli | bash). Running a remote script without artifact verification is high risk because it executes code fetched at install time; there is no local checksum, pinned release URL, or alternative vetted package mechanism declared in the skill.
Credentials
The skill requests no credentials or environment variables, which avoids obvious secret-exfiltration flags. However, it implicitly requires substantial system resources (CPU/GPU, network) and will perform networked operations. The lack of declared permissions/config paths or explicit limitations makes the resource and data scope unclear and potentially disproportionate to a simple helper skill.
Persistence & Privilege
Although always:false and model invocation is allowed (normal), the node is described as a continuously-running autonomous agent with a 30-second loop and P2P syncing; the install script likely creates long-running services/daemons. That persistent, autonomous execution combined with remote-install behavior increases risk and should be considered a privilege escalation relative to a simple instruction-only skill.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hyperspace
  3. After installation, invoke the skill by name or use /hyperspace
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
Revert to the real product: auto-start, auto-research, full distributed autonomous intelligence vision. Kept source links and privacy section. Stop optimizing for a scanner that flags all P2P daemons at medium regardless.
v1.0.4
Fix: P2P inference requires explicit API key config, prompts never forwarded to peers without auth. Local-first by default.
v1.0.3
Safety hardening: no curl|bash pipe (download-then-review), node does not auto-start (--no-start), service install requires explicit consent, sensitive data routing guard, expanded privacy section with network behavior details, user consent column in command reference, uninstall instructions.
v1.0.2
Address safety review: GitHub Releases as primary install (auditable), research is opt-in, explicit privacy/data section, source code links, no arbitrary code execution.
v1.0.1
Rewrite: distributed autonomous intelligence — autoresearch, autosearch, autofinance, compounding knowledge via CRDT leaderboards.
v1.0.0
Join the distributed intelligence network. Your node contributes compute, earns points, and accesses 70B+ models via P2P.
Metadata
Slug hyperspace
Version 1.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 6
Frequently Asked Questions

What is Hyperspace?

Join the Hyperspace distributed autonomous intelligence network. Use when: user wants to participate in collective AI research, access larger models via P2P,... It is an AI Agent Skill for Claude Code / OpenClaw, with 384 downloads so far.

How do I install Hyperspace?

Run "/install hyperspace" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Hyperspace free?

Yes, Hyperspace is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Hyperspace support?

Hyperspace is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Hyperspace?

It is built and maintained by twobitapps (@twobitapps); the current version is v1.1.0.

💬 Comments