openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > GM3 Alertworthy Feed

Read-only access to the GM3 Alertworthy feed, providing real-time token market data for analysis agents.

通信与消息

作者:alexattinger @bigbadman-lab

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.3

统计:⭐ 0 · 1.1k · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:gm3-alertworthy-feed

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill appears to do what it claims (read-only GET of a GM3 endpoint) but the runtime instructions require a GM3 API key while the skill metadata does not declare any required credentials — an inconsistency that should be resolved before trusting the skill.

目的

The name/description match the SKILL.md instructions: it is a read-only feed that returns token snapshots from a single GM3 API endpoint. There is no functionality unrelated to the stated purpose in the instructions.

说明范围

The SKILL.md instructs the agent to call a single GET endpoint and to include an Authorization: Bearer gm3_key_... header. Instructions are otherwise limited and do not ask the agent to read local files or other secrets. However the doc does not specify the exact env var name or mechanism the agent should use to access the API key (it only states the API key should be stored as a secret), leaving behavior ambiguous.

安装机制

No install spec and no code files are present; this is instruction-only, so nothing is written to disk or downloaded during install.

证书

The SKILL.md explicitly requires a GM3 Developer API key for Authorization, but the registry metadata lists no required env vars and no primary credential. That mismatch is disproportionate and ambiguous: the skill will need a secret at runtime but does not declare which environment variable or secret name it expects.

持久

The skill does not request persistent/always-on presence and does not modify system or other skill configuration. Autonomous invocation is allowed (platform default) but is not combined with other high privileges.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「GM3 Alertworthy Feed」。简介:Read-only access to the GM3 Alertworthy feed, providing real-time token market …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/bigbadman-lab/gm3-alertworthy-feed/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: gm3-alertworthy-feed
description: Read-only access to the GM3 Alertworthy feed, providing real-time token market data for analysis agents.
---

# GM3 Alertworthy Feed

--

## Overview
This skill provides read-only access to the GM3 Alertworthy feed.

It returns the current snapshot of alertworthy tokens, including valuation, flow, buyer distribution, and market structure signals. The skill is designed to be used by analysis agents that apply their own filtering and decision logic on top of the raw GM3 data.

This skill does not perform filtering, ranking, or trading actions.

---

## Endpoint
**GET**  
https://api.gm3.fun/functions/v1/gm3-api/v1/paid/alertworthy

---

## Authentication
This skill requires a GM3 Developer API key.

Requests must include the following header:

Authorization: Bearer gm3_key_...


The API key should be stored as a secret and never exposed in client-side code.

---

## Headers
Accept: application/json


---

## Inputs
This endpoint does not accept input parameters.

---

## Output
The response is a JSON object containing a `data` array of alertworthy token snapshots.

Each item may include fields such as:
- mint
- rank
- fdv_usd (current FDV)
- fdv_at_alert (FDV at first alert)
- net_sol_inflow
- buy_ratio
- buy_count / sell_count
- unique_buyers
- capital_efficiency
- market structure flags
- timestamps

The exact fields returned are subject to change as the GM3 platform evolves.

---

## Errors
- **401 Unauthorized** – Invalid or revoked API key, or entitlement expired
- **429 Too Many Requests** – Rate limited
- **500 / 503** – Temporary server error

---

## Notes
- This skill is intended for analysis-only use.
- Strategy logic, filtering, and decision-making should be implemented at the agent level.
- No trading or execution functionality is provided by this skill.