适用于代理的 CornerStone MCP x402 技能。用于股票预测、回溯测试、银行链接和代理/借款人评分的工具。具有 x402 流程(Aptos + Base)的付款保护 MCP 工具(run_prediction、run_backtest、link_bank_account、get_agent_reputation_score、get_borrower_score、通过电子邮件变体)。技能
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install autonomous-agent或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install autonomous-agent⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/autonomous-agent/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: autonomous-agent description: CornerStone MCP x402 skill for agents. Tools for stock predictions, backtests, bank linking, and agent/borrower scores. Payment-protected MCP tools (run_prediction, run_backtest, link_bank_account, get_agent_reputation_score, get_borrower_score, by-email variants) with x402 flow (Aptos + Base). Skill handles 402 → pay → retry. Wallet attestation for onboarding. For marketplaces where agents download and use skills autonomously. metadata: {"clawdbot":{"emoji":"📈","homepage":"https://github.com/FinTechTonic/autonomous-agent","requires":{"bins":["node","npm"]}}} ---
This skill gives you (the agent) a set of tools to: create and manage Aptos and EVM wallets, check balances, and call x402-paid MCP tools (stock prediction, backtest, bank linking, agent/borrower scores). Payment is automatic — when a paid tool returns 402, the skill signs, verifies, settles, and retries transparently. You just call the tool; the result comes back.
---
Follow this sequence on first use, then skip to the tool you need:
get_wallet_addresses (no args).create_aptos_wallet then create_evm_wallet.credit_aptos_wallet (Aptos faucet) and fund_evm_wallet (EVM faucet instructions).https://arnstein.ch/flow.html.balance_aptos (must have USDC for predictions/backtests) and/or balance_evm (must have ETH for bank linking).run_prediction, run_backtest, link_bank_account, or score tools.> Important: Paid tools will fail with a wallet/whitelist error if the address has not been funded and whitelisted. Always verify wallets and balances first.
---
get_wallet_addresses{ aptos: [{ address, network }], evm: [{ address, network }] } — may be empty arrays.create_aptos_wallet{ force?: boolean, network?: "testnet" | "mainnet" } — defaults: force=false, network=testnet.{ success, address, network, message } or { success: false, message, addresses } if wallet exists and force=false.get_wallet_addresses returns empty aptos array, or user requests a new wallet.success: false and wallet already exists, either use the existing wallet or retry with force: true to add another.create_evm_wallet{ force?: boolean, network?: "testnet" | "mainnet" } — defaults: force=false, network=testnet.{ success, address, network, message } or { success: false, message, addresses }.create_aptos_wallet.credit_aptos_wallet{ amount_octas?: number } — default 100,000,000 (= 1 APT).{ success: true, address } (programmatic faucet funded).{ success: true, address, faucet_url } (instructions only; no programmatic faucet).create_aptos_wallet first).fund_evm_wallet{ success: true, address, faucet_url, message } (manual funding instructions).create_evm_wallet first).balance_aptos{ address, balances: { usdc, apt } } or { error }.run_prediction, run_backtest, or score tools to confirm sufficient USDC.balance_evm{ chain?: string } — default "base". Supported: base, baseSepolia, ethereum, polygon, arbitrum, optimism.{ address, chain, balance, symbol } or { error }.link_bank_account to confirm sufficient ETH on Base Sepolia.chain: "baseSepolia".> All paid tools accept both Aptos and EVM payment. The skill picks the best option or follows PREFERRED_PAYMENT_ORDER. You never see 402 errors — just call the tool and get the result or an error message.
run_prediction{ symbol: string, horizon?: number } — symbol is a stock ticker (e.g. "AAPL"), horizon is days (default 30).{ error }.run_prediction({ symbol: "AAPL", horizon: 30 })run_backtest{ symbol: string, startDate?: string, endDate?: string, strategy?: string } — dates in "YYYY-MM-DD", strategy defaults to "chronos".{ error }.run_backtest({ symbol: "TSLA", startDate: "2024-01-01", endDate: "2024-12-31", strategy: "chronos" })link_bank_account{ link_token } or account ID for Plaid bank linking, or { error }.get_agent_reputation_score{ agent_address?: string, payer_wallet?: string } — both optional; uses the configured wallet if omitted.{ reputation_score: number } (e.g. 100) or 403 if not allowlisted, or { error }.payer_wallet).get_borrower_score{ agent_address?: string, payer_wallet?: string } — same pattern.{ score: number } (100 base; higher with bank linked) or { error }.get_agent_reputation_score_by_email{ email: string, payer_wallet?: string } — resolves email to allowlisted agent.{ reputation_score: number } or { error }.SCORE_BY_EMAIL_ENABLED must be set on the server. Higher fee.get_borrower_score_by_email{ email: string, payer_wallet?: string } — same pattern.{ score: number } or { error }.SCORE_BY_EMAIL_ENABLED must be set on the server. Higher fee.---
get_wallet_addresses
→ aptos empty? → create_aptos_wallet → credit_aptos_wallet → tell user to whitelist
→ aptos exists? → balance_aptos
→ has USDC? → run_prediction({ symbol: "X", horizon: 30 })
→ no USDC? → tell user to fund USDC, provide address
get_wallet_addresses
→ evm empty? → create_evm_wallet → fund_evm_wallet → tell user to whitelist
→ evm exists? → balance_evm({ chain: "baseSepolia" })
→ has ETH? → link_bank_account
→ no ETH? → fund_evm_wallet (returns faucet URL)
get_wallet_addresses
→ has aptos or evm? → get_agent_reputation_score + get_borrower_score
→ neither? → create wallets first, whitelist, then query
---
...
安装 自主代理技能 后,可以对 AI 说这些话来触发它
Help me get started with Autonomous Agent Skills
Explains what Autonomous Agent Skills does, walks through the setup, and runs a quick demo based on your current project
Use Autonomous Agent Skills to cornerStone MCP x402 skill for agents
Invokes Autonomous Agent Skills with the right parameters and returns the result directly in the conversation
What can I do with Autonomous Agent Skills in my finance & investment workflow?
Lists the top use cases for Autonomous Agent Skills, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/autonomous-agent/ 目录(个人级,所有项目可用),或 .claude/skills/autonomous-agent/(项目级)。重启 AI 客户端后,用 /autonomous-agent 主动调用,或让 AI 根据上下文自动发现并使用。
自主代理技能 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
自主代理技能 可免费安装使用。请查阅仓库了解许可证信息。
适用于代理的 CornerStone MCP x402 技能。用于股票预测、回溯测试、银行链接和代理/借款人评分的工具。具有 x402 流程(Aptos + Base)的付款保护 MCP 工具(run_prediction、run_backtest、link_bank_account、get_agent_reputation_score、get_borrower_score、通过电子邮件变体)。技能
自主代理技能 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Autonomous Agent Skills
Identifies repetitive steps in your workflow and sets up Autonomous Agent Skills to handle them automatically