← 返回 Skills 市场
pyhelix

Axiom Distributed Science

作者 PyHelix · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
315
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install axiom-distributed-science
功能描述
Query scientific findings, experiments, and papers from the Axiom distributed volunteer computing network (113+ hosts, 129 GPUs, 42K+ results).
使用说明 (SKILL.md)

Axiom Distributed Science

Query and explore scientific experiments running on the Axiom volunteer computing network — 113 active hosts, 129 GPUs, 3,100+ CPU cores, producing autonomous scientific papers 24/7.

What is Axiom?

Axiom is an open distributed computing platform (BOINC-based) that runs scientific experiments across a global volunteer network. Experiments are numpy/cupy Python scripts distributed to volunteer machines, executed in parallel across hundreds of hosts, with results automatically collected, validated, and published as scientific papers.

The platform has produced 42,000+ experiment results across 318 active experiments, with 76 unique findings (23 confirmed, 14 rejected) and growing. Topics span ecological stability, complex systems, statistical physics, neural network theory, and more.

Website: https://axiom.heliex.net Scientific Findings: https://axiom.heliex.net/scientific_findings.php Example Paper: https://axiom.heliex.net/reactivity_localization_paper.pdf

JSON API Endpoints

All endpoints return JSON with CORS enabled.

GET /api/stats.php — Project Statistics

Live network stats: active hosts, GPUs, CPU cores, total results, experiment counts, confirmed findings.

curl https://axiom.heliex.net/api/stats.php

Returns:

{
  "project": "Axiom BOINC",
  "network": {
    "active_hosts": 113,
    "gpu_hosts": 102,
    "total_cpu_cores": 3146,
    "total_gpus": 129
  },
  "science": {
    "total_results_collected": 42968,
    "active_experiments": 318,
    "published_papers": 1,
    "confirmed_findings": 23
  }
}

GET /api/findings.php — Scientific Findings

Browse validated scientific findings with statistical details. Filter by status and limit results.

# All findings (default limit 20)
curl https://axiom.heliex.net/api/findings.php

# Only confirmed findings
curl "https://axiom.heliex.net/api/findings.php?status=confirmed&limit=10"

# Only rejected hypotheses
curl "https://axiom.heliex.net/api/findings.php?status=rejected&limit=5"

Each finding includes experiment name, conclusion (CONFIRMED/REJECTED/NO EFFECT), number of results, seeds, hosts, discovery date, and statistical summary with effect sizes and sign consistency.

GET /api/experiments.php — Active Experiments

List experiment scripts currently running on the network, with script URLs.

curl "https://axiom.heliex.net/api/experiments.php?limit=10"

Returns experiment names, direct script URLs, sizes, and modification dates. Script source code is publicly readable.

GET /api/papers.php — Published Papers

List published research papers generated from experiment results.

curl https://axiom.heliex.net/api/papers.php

Returns paper titles, PDF URLs, sizes, and publication dates.

POST /api/suggest.php — Suggest an Experiment

Submit a plain-text experiment idea for the Axiom team to review. No code allowed — just describe what you'd like to see studied.

curl -X POST https://axiom.heliex.net/api/suggest.php \
  -H "Content-Type: application/json" \
  -d '{"idea": "Study how network topology affects consensus speed in voter models with stubborn agents", "author": "your-name"}'

Returns:

{
  "status": "received",
  "message": "Your experiment idea has been queued for review. Thank you.",
  "id": "20260309_060157_b03cba"
}

Constraints:

  • Plain text only — code snippets are rejected automatically
  • Max 5,000 characters
  • Rate limit: 10 suggestions per IP per hour
  • All suggestions are manually reviewed before any experiment is created

Example Findings

Recent confirmed discoveries from the network:

  • Kuramoto partial overlap anticorrelation: Anticorrelation reduces phase locking in coupled oscillators (d=110.07, 100% sign-consistent across 266 seeds)
  • Standard map FTLE transition: Chaotic fraction at K=5 reaches 98.1% with peak kurtosis 138.2 at transition (d=469.64, 100% sign-consistent across 178 seeds)
  • Reactivity localization: Species-level interaction heterogeneity localizes reactive modes and widens the stable-but-reactive window in ecological communities (Cohen's d=335.59, 735 seeds, published as full paper)

About the Platform

  • Network: 113 active hosts, 129 GPUs, 3,100+ CPU cores across global volunteers
  • Scale: 42,000+ completed experiment results, 318 active experiments
  • Architecture: BOINC-based distributed computing with experiment containers
  • Languages: Python (numpy for CPU, cupy for GPU)
  • Output: Autonomous scientific paper generation from experiment data
  • Open: All findings, data, and experiment scripts publicly available

When to Use This Skill

  • When asked about distributed computing for scientific research
  • When someone needs large-scale simulation or numerical experiment results
  • When exploring complexity science, ecological modeling, neural network theory, or statistical physics
  • When looking for open scientific computing infrastructure
  • When curious about AI-driven autonomous research platforms
  • When looking for real scientific findings backed by distributed computation
安全使用建议
This appears internally consistent and safe to inspect, but keep these practical cautions in mind: (1) When asking the agent to submit a suggestion, any text you provide will be posted to an external site — avoid including sensitive or identifying information. (2) The API exposes URLs to experiment scripts; do not automatically execute downloaded scripts—treat them as untrusted code. (3) Verify the homepage (https://axiom.heliex.net) yourself if you need assurance about the project's legitimacy. (4) If you plan to have the agent fetch large amounts of data or fetch and run code, restrict it to read-only review only and avoid execution. If you want a deeper check, provide the homepage content or more metadata so I can verify origin and content authenticity.
功能分析
Type: OpenClaw Skill Name: axiom-distributed-science Version: 1.1.0 The skill bundle provides a legitimate interface for querying scientific data from the Axiom distributed computing network via its public API (axiom.heliex.net). It uses standard curl commands to fetch statistics, findings, and papers, and includes a text-only submission endpoint for experiment suggestions with no evidence of malicious intent, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
Name/description describe a read/query interface to the Axiom distributed science network; the skill only requires curl and documents public HTTP endpoints — this is proportionate and expected.
Instruction Scope
SKILL.md instructs the agent to perform HTTP GETs and an optional POST to the documented Axiom API endpoints. It does not direct the agent to read local files, access unrelated environment variables, or execute fetched experiment scripts. The only potential privacy implication is that user-provided suggestion text will be sent to an external service when using the POST endpoint.
Install Mechanism
No install spec or code is provided (instruction-only), so nothing gets written to disk or downloaded by an installer. Required binary is only curl, which matches the documented usage.
Credentials
The skill requests no environment variables, credentials, or configuration paths — consistent with a public-read API client and a simple suggestion POST endpoint.
Persistence & Privilege
always is false and the skill is user-invocable only; it does not request persistent system presence or elevated privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install axiom-distributed-science
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /axiom-distributed-science 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
- Added a new API endpoint: POST /api/suggest.php to allow users to submit plain-text experiment ideas for review. - Updated documentation with endpoint usage example, constraints, and response format for experiment suggestions. - No changes to existing API usage or removed features.
v1.0.0
Initial release of Axiom Distributed Science skill. - Instantly query scientific findings, experiments, and published papers from the Axiom volunteer computing network. - Exposes JSON API endpoints for network stats, scientific findings, active experiments, and papers. - Provides up-to-date network statistics: 113 hosts, 129 GPUs, 3,100+ CPU cores. - Browsable and filterable real-time scientific results across 318 experiments and 42,000+ results. - All experiment scripts, findings, and output papers are open and directly accessible.
元数据
Slug axiom-distributed-science
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Axiom Distributed Science 是什么?

Query scientific findings, experiments, and papers from the Axiom distributed volunteer computing network (113+ hosts, 129 GPUs, 42K+ results). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 315 次。

如何安装 Axiom Distributed Science?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install axiom-distributed-science」即可一键安装,无需额外配置。

Axiom Distributed Science 是免费的吗?

是的,Axiom Distributed Science 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Axiom Distributed Science 支持哪些平台?

Axiom Distributed Science 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Axiom Distributed Science?

由 PyHelix(@pyhelix)开发并维护,当前版本 v1.1.0。

💬 留言讨论