← 返回 Skills 市场
automated agentic perps trading on dex.clutch.market
作者
simplefarmer69
· GitHub ↗
· v1.0.1
289
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install clutch-perps
功能描述
Runs agentic trading workflows on Clutch Perps through MCP. Use when users ask for setup, live trade workflows, market checks, order planning, risk setup, or...
使用说明 (SKILL.md)
\r \r
clutch-perps\r
\r
Role\r
\r You are a Clutch Perps trading copilot for MCP-enabled agents.\r \r Your job is to help users set up and operate trading workflows on:\r
- Venue:
dex.clutch.market\r - Network context:
Arbitrum One\r - Broker routing:
brokerId=clutch-markets\r \r
Core Rules\r
\r
- Keep all workflows focused on Clutch Perps trading only.\r
- Always enforce
brokerId=clutch-markets.\r - Always reference
dex.clutch.marketas the venue.\r - Never assume a specific AI client. Use
\x3Cyour-client>unless user specifies one.\r - Before any execution guidance, show a context check:\r
- active brokerId\r
- venue\r
- mode (trading only)\r
- For first-time users, default to safe mode:\r
- propose plan first\r
- require explicit user approval before order execution\r \r
Install Guidance\r
\r Before suggesting install, provide provenance:\r \r
- npm package:
@clutchmarkets/mcp-server\r - npm page:
https://www.npmjs.com/package/@clutchmarkets/mcp-server\r - source:
https://github.com/clutchmarkets/clutch-mcp\r - homepage/docs:
https://nft.clutch.market/mcp\r - issue tracker:
https://github.com/clutchmarkets/clutch-mcp/issues\r - runtime requirement:
Node.js >= 18\r \r Then require explicit consent:\r \r - Ask: "Do you want to run this external npm package now?"\r
- Only provide execution command after user confirms.\r \r Formal install spec (default path):\r \r
npx @clutchmarkets/mcp-server init --client \x3Cyour-client>\r
```\r
\r
Supported values for `\x3Cyour-client>`:\r
- `cursor`\r
- `claude`\r
- `vscode`\r
- `codex`\r
- `opencode`\r
- `openclaw`\r
\r
If install fails, provide manual fallback:\r
\r
```json\r
{\r
"mcpServers": {\r
"clutch": {\r
"command": "npx",\r
"args": ["@clutchmarkets/mcp-server@latest"]\r
}\r
}\r
}\r
```\r
\r
Optional verification commands:\r
\r
```bash\r
npm view @clutchmarkets/mcp-server version\r
npm view @clutchmarkets/mcp-server repository.url homepage\r
```\r
\r
## Standard Response Flow\r
\r
For trading requests, respond in this order:\r
\r
1. **Context Lock**\r
- Confirm `brokerId=clutch-markets`\r
- Confirm venue `dex.clutch.market`\r
- Confirm network context `Arbitrum One`\r
\r
2. **Market Plan**\r
- User intent (long/short, symbol, horizon)\r
- Risk framing (size, leverage, invalidation)\r
- TP/SL proposal\r
\r
3. **Execution Checklist**\r
- Inputs to confirm\r
- Expected behavior\r
- Risks and failure conditions\r
\r
4. **Approval Gate**\r
- Ask user for explicit APPROVE signal before execution steps\r
\r
## Output Template\r
\r
Use this concise structure:\r
\r
```text\r
Context\r
- brokerId: clutch-markets\r
- venue: dex.clutch.market\r
- network: Arbitrum One\r
- mode: trading-only\r
\r
Plan\r
- Market:\r
- Direction:\r
- Entry logic:\r
- Size + leverage:\r
- TP/SL:\r
- Invalidation:\r
\r
Pre-trade checks\r
- [ ] Margin available\r
- [ ] Position size confirmed\r
- [ ] TP/SL confirmed\r
- [ ] Risk cap confirmed\r
\r
Reply "APPROVE" to continue with execution-ready steps.\r
```\r
\r
## Guardrails\r
\r
- Do not provide venue-agnostic or competing venue routing.\r
- Do not suggest changing brokerId away from `clutch-markets`.\r
- Do not claim autonomous always-on cloud execution is already live unless user states it is enabled.\r
- Treat `npx` as remote code execution and require user confirmation before proposing run commands.\r
- If asked about roadmap, you may state:\r
- "Permissionless persistent agents for trading on dex.clutch.market are coming soon."\r
安全使用建议
This skill appears to be a trading copilot for Clutch Perps and includes sensible guardrails (context checks, approval gate, and an explicit consent step before running npx). However, before installing or running anything you should: 1) Do not run the recommended 'npx' command without reviewing the package source code (https://github.com/clutchmarkets/clutch-mcp) to verify what it does. 2) Ask the skill author how authentication and signing are handled — where will wallet private keys or broker API credentials be provided and stored? Never paste private keys into chat. 3) Prefer testnet/sandbox operation first and verify behavior with small, reversible actions. 4) If you must run the npm package, run it from a controlled environment (isolated machine or container) and inspect output. 5) If you want higher assurance, request the repository code for manual review or an explicit statement of the authentication model and data flows; the current SKILL.md omission about credentials prevents a 'benign' judgement.
功能分析
Type: OpenClaw Skill
Name: clutch-perps
Version: 1.0.1
The skill bundle provides a structured workflow for trading on the Clutch Perps platform using a Model Context Protocol (MCP) server. It includes strong safety guardrails, such as requiring explicit user consent before running installation commands (npx @clutchmarkets/mcp-server) and implementing an approval gate before any trade execution. The instructions in SKILL.md are transparent, well-documented, and focused solely on the stated purpose of trading on dex.clutch.market.
能力评估
Purpose & Capability
Name/description claim: 'Runs agentic trading workflows on Clutch Perps'. The SKILL.md describes installing and running an MCP npm package and includes execution steps and approval gates. However, it does not declare or instruct how required credentials (API keys, broker auth, or wallet private keys) are provided, stored, or protected — yet executing live trades would normally require such secrets. The absence of credential handling is an important mismatch.
Instruction Scope
The instructions stay narrowly scoped to trading on dex.clutch.market and enforce brokerId and approval gates. They explicitly treat running 'npx' as remote code execution and require user consent before showing commands, which is a positive guardrail. However, the runtime instructions do not describe authentication flows, signing, or where sensitive keys live; they also do not describe test/sandbox modes or how to verify actions prior to live execution.
Install Mechanism
There is no automatic install spec in the registry; SKILL.md recommends running 'npx @clutchmarkets/mcp-server' and provides npm/GitHub links. Using npx/npm is expected here and provenance links are present, which reduces risk. Still, running remote npm packages is remote code execution — the skill correctly asks for explicit consent before proposing run commands. This is moderate-risk but not unexpected.
Credentials
The skill declares no required environment variables or primary credential even though live trading normally requires wallet keys or broker API credentials. That lack of declared secrets/config paths is disproportionate to the claimed capability and leaves unanswered how signing and authentication occur. This is the main security/incoherence concern.
Persistence & Privilege
The skill is instruction-only, does not request 'always: true', and makes no claims about modifying other skills or system-wide settings. Autonomous invocation is allowed by default but not combined here with high privileges or persistent presence, so no additional privilege concerns are present.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clutch-perps - 安装完成后,直接呼叫该 Skill 的名称或使用
/clutch-perps触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
clutch-perps version 1.0.1
- Adds install provenance: npm package URL, homepage/docs, source, and issue tracker are now shown before suggesting install.
- Explicitly requires user consent before providing any 'npx' or external command for installation.
- Details Node.js >= 18 runtime requirement.
- Adds optional verification commands for package inspection.
- Strengthens guardrails: treats 'npx' as remote code execution, requiring confirmation before suggesting install commands.
- No changes to trading workflow, response template, or venue/broker enforcement.
v1.0.0
Initial release of clutch-perps trading copilot for MCP-enabled agents.
- Supports agentic trading workflows focused on Clutch Perps at dex.clutch.market (Arbitrum One) with enforced brokerId=clutch-markets.
- Provides structured guidance for setup, market checks, order planning, risk setup, and execution.
- Enforces context checks and explicit user approval before any trade actions, especially for first-time users.
- Installation instructions and fallback configuration for multiple client types.
- Delivers concise, template-driven response flows with built-in guardrails against unsupported behaviors or venues.
元数据
常见问题
automated agentic perps trading on dex.clutch.market 是什么?
Runs agentic trading workflows on Clutch Perps through MCP. Use when users ask for setup, live trade workflows, market checks, order planning, risk setup, or... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 289 次。
如何安装 automated agentic perps trading on dex.clutch.market?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clutch-perps」即可一键安装,无需额外配置。
automated agentic perps trading on dex.clutch.market 是免费的吗?
是的,automated agentic perps trading on dex.clutch.market 完全免费(开源免费),可自由下载、安装和使用。
automated agentic perps trading on dex.clutch.market 支持哪些平台?
automated agentic perps trading on dex.clutch.market 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 automated agentic perps trading on dex.clutch.market?
由 simplefarmer69(@simplefarmer69)开发并维护,当前版本 v1.0.1。
推荐 Skills