技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.0
统计:⭐ 0 · 406 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:openseti-skill
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill mostly does what a distributed SETI client would do, but there are inconsistencies (hard-coded coordinator URL and API key, no authoritative homepage/source) that create risk — you should verify the coordinator and run in a confined environment before trusting it with network access or your wallet address.
目的
The code and SKILL.md align with a distributed SETI scanner: it fetches work from a coordinator, processes data locally, and posts results. However, the coordinator default URL (https://claw99.app/coordinator) and a hard-coded API key are embedded in the script while the SKILL.md claims data comes from the Breakthrough Listen archive — there is no homepage or authoritative source linking the coordinator to Breakthrough Listen. That mismatch is…
说明范围
Runtime instructions are limited and concrete (register wallet, run scan, continuous mode). The script only reads/writes a config file in ~/.openseti and performs network calls to the coordinator; it does not request arbitrary local files or secrets in the SKILL.md. It stores only the wallet address (not a private key) in config, which matches the documented register flow.
安装机制
This is an instruction-only skill with bundled Python script(s); there is no installer that downloads arbitrary binaries or writes to unexpected system locations. Dependencies are standard Python packages (numpy, scipy, requests) as documented.
证书
No required env vars are declared, but the script uses optional OpenSETI_COORDINATOR and OpenSETI_API_KEY environment variables and contains a hard-coded coordinator URL and API key. Embedding an API key and default coordinator domain without providing an authoritative source is disproportionate and requires trust in that remote service. The skill asks to register a Solana wallet address (public address only) — it does not ask for private keys…
持久
The script writes only to a per-user config directory (~/.openseti) to save the wallet address. The skill is not always-enabled and does not request elevated privileges or attempt to modify other skills or system-wide configs.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「OpenSETI」。简介:Distributed SETI scanner - contribute compute power to analyze real radio teles…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/synergysize/openseti-skill/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: openseti
description: Distributed SETI scanner - contribute compute power to analyze real radio telescope data from Breakthrough Listen. Earn tokens when your analysis discovers anomalies. Use when setting up distributed alien signal detection, running SETI scans, or contributing to the OpenSETI network.
---
# OpenSETI Distributed Scanner
Contribute your compute power to scan real Breakthrough Listen radio telescope data for signs of extraterrestrial intelligence. This is a SETI@home-style distributed computing project with token rewards.
## Quick Start
1. Register your Solana wallet:
```bash
python scripts/openseti.py register <your-wallet-address>
```
2. Run a scan:
```bash
python scripts/openseti.py scan
```
3. Run continuous scanning (background):
```bash
python scripts/openseti.py scan --continuous
```
## How It Works
1. Your machine requests a work unit from the OpenSETI network
2. Work units contain real radio telescope data chunks (~1MB each)
3. Your machine analyzes the data using FFT and signal processing
4. Results are submitted back to the network
5. If an anomaly is detected, you earn tokens
## Analysis Criteria
The scanner looks for signals that match ETI signatures:
- **Narrowband signals** (< 10 Hz bandwidth) - Natural sources are broadband
- **Doppler drift** - Frequency shift indicating non-terrestrial origin
- **High SNR** - Strong signals above noise floor
- **Hydrogen line proximity** - 1420.405 MHz is the "water hole"
- **Non-RFI patterns** - Doesn't match known Earth interference
## Reward Structure
| Classification | Score | Tokens |
|---------------|-------|--------|
| NATURAL | 0.0 - 0.15 | 0 |
| WEAK_SIGNAL | 0.15 - 0.4 | 0 |
| INVESTIGATING | 0.4 - 0.7 | 2,500 |
| ANOMALY_FLAGGED | 0.7+ | 5,000 |
Tokens are tracked on-chain and distributed when the token launches.
## Commands
- `openseti register <wallet>` - Register your Solana wallet
- `openseti scan` - Run one scan cycle
- `openseti scan --continuous` - Run continuous scanning
- `openseti stats` - Show your contribution stats
- `openseti leaderboard` - Show top contributors
## Requirements
- Python 3.8+
- NumPy and SciPy (`pip install numpy scipy requests`)
## Data Source
All data comes from the Breakthrough Listen Open Data Archive:
https://breakthroughinitiatives.org/opendatasearch
Observations from the Green Bank Telescope and Parkes Observatory.