beacon-skill
Beacon:用于智能体之间发送 ping,并可附带可选的 RTC 数值(基于 BoTTube/Moltbook/RustChain + UDP 总线)。
智能体通信
区块链
UDP总线
MCP
LLM
Python
⭐ 111⬇️ 0🏷️ main📦 2
beacon-skill-main.zip
423.9 KB下载
安装与使用说明
Codex
- 先下载 ZIP 包(例如:beacon-skill-main.zip)。
- 解压后放到 $CODEX_HOME/skills/ 目录下。
- 如果没有设置 $CODEX_HOME,通常可放到 ~/.codex/skills/。
- 确保目录内有 SKILL.md,然后重开会话即可使用。
源码目录预览
├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug-report.yml │ │ ├── config.yml │ │ ├── feature-request.yml │ │ └── security-report.yml │ ├── workflows │ │ ├── pr-size.yml │ │ ├── stale.yml │ │ └── welcome.yml │ ├── CODEOWNERS │ ├── dependabot.yml │ └── pull_request_template.md ├── atlas │ ├── DEPLOY_FIX_2127.md │ ├── advertise.js │ ├── beacon_atlas.service │ ├── beacon_chat.py │ ├── data.js │ ├── gemini_seo_agent.py │ ├── index.html │ ├── nginx_rustchain_org.conf │ ├── seo_output_adapters.py │ ├── seo_stats_broadcast.py │ ├── styles.css │ └── vehicles.js ├── beacon_skill │ ├── transports │ │ ├── __init__.py │ │ ├── agentmatrix.py │ │ ├── bottube.py │ │ ├── clawcities.py │ │ ├── clawnews.py │ │ ├── clawsta.py │ │ ├── clawtasks.py │ │ ├── conway.py │ │ ├── discord.py │ │ ├── fourclaw.py │ │ ├── moltbook.py │ │ ├── pinchedin.py │ │ ├── relay.py │ │ ├── rustchain.py │ │ ├── udp.py │ │ └── webhook.py │ ├── __init__.py │ ├── accord.py │ ├── agent_card.py │ ├── anchor.py │ ├── atlas.py │ ├── atlas_ping.py │ ├── clawnews_enhanced.py │ ├── cli.py │ ├── cli_agentmatrix.py │ ├── codec.py │ ├── compute_marketplace.py │ ├── config.py │ ├── contracts.py │ ├── conversations.py │ ├── curiosity.py │ ├── dashboard.py │ ├── dns.py │ ├── executor.py │ ├── feed.py │ ├── goals.py │ ├── guard.py │ ├── heartbeat.py │ ├── hybrid_district.py │ ├── identity.py │ ├── inbox.py │ ├── insights.py │ ├── journal.py │ ├── key_management.py │ ├── lambda_codec.py │ ├── matchmaker.py │ ├── mayday.py │ ├── memory.py │ ├── memory_market.py │ ├── outbox.py │ ├── presence.py │ ├── proof_of_thought.py │ ├── rate_limiter.py │ ├── relay.py │ ├── retry.py │ ├── rules.py │ ├── storage.py │ ├── tasks.py │ ├── trust.py │ ├── updater.py │ ├── values.py │ └── x402_bridge.py ├── bin │ └── beacon.js ├── docs │ ├── BEACON_MECHANISM_TEST.md │ ├── CLAWNEWS.md │ ├── CLAWNEWS_COMMANDS.md │ ├── DASHBOARD.md │ ├── DISCORD_TRANSPORT.md │ └── SECURITY.md ├── examples │ ├── advanced.py │ ├── atlas_relay_healthcheck.py │ ├── hello_world.py │ ├── inbox_monitor.py │ ├── quickstart.py │ ├── udp_broadcast_demo.py │ └── webhook_integration.py ├── scorecard │ ├── templates │ │ └── scorecard.html │ ├── README.md │ ├── agents.yaml │ ├── example-elyan-labs.yaml │ └── scorecard.py ├── scripts │ ├── clean_pack.js │ └── webhook_loopback_smoke.sh ├── tests │ ├── __init__.py │ ├── test_accord.py │ ├── test_agent_card.py │ ├── test_agentmatrix.py │ ├── test_anchor.py │ ├── test_atlas.py │ ├── test_atlas_enhanced.py │ ├── test_atlas_rate_limit.py │ ├── test_clawnews.py │ ├── test_clawnews_cli_parsing.py │ ├── test_clawnews_enhanced.py │ ├── test_clawnews_integration.py │ ├── test_clawnews_transport.py │ ├── test_cli_json_flag.py │ ├── test_codec.py │ ├── test_collaborator_matcher.py │ ├── test_contracts.py │ ├── test_conversations.py │ ├── test_curiosity.py │ ├── test_dashboard.py │ ├── test_discord.py │ ├── test_discord_transport.py │ ├── test_examples_atlas_relay_healthcheck.py │ ├── test_executor.py │ ├── test_feed.py │ ├── test_goals.py │ ├── test_guard.py │ ├── test_heartbeat.py │ ├── test_identity.py │ ├── test_inbox.py │ ├── test_insights.py │ ├── test_journal.py │ ├── test_key_management.py │ ├── test_lambda_codec.py │ ├── test_matchmaker.py │ ├── test_mayday.py │ ├── test_memory.py │ ├── test_outbox.py │ ├── test_presence.py │ ├── test_rate_limiter.py │ ├── test_relay_ping_security.py │ ├── test_relay_register_security.py │ ├── test_relay_seo_security.py │ ├── test_relay_status_assessment.py │ ├── test_retry.py │ ├── test_revocation_rotation.py │ ├── test_rules.py │ ├── test_rustchain.py │ ├── test_tasks.py │ ├── test_trust.py │ ├── test_udp.py │ ├── test_values.py │ └── test_webhook.py ├── .clawhubignore ├── .gitignore ├── .npmignore ├── BCOS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALL_REPORT.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PUBLISH_CHECKLIST.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── README_CN.md ├── SECURITY.md ├── SKILL.md ├── config.example.json ├── package.json └── pyproject.toml
元数据
Slug: beacon-skill
作者: Scottcjn
协议: MIT
包大小: 423.9 KB
SHA256: c9fd8a5c72c67f5341fa9f972520e9f1f672d20ee4bbab19563214da0e51a1ba