# Send Gekko to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gekko",
    "name": "Gekko",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/gekkoai001/gekko",
    "canonicalUrl": "https://clawhub.ai/gekkoai001/gekko",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gekko",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gekko",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CLAUDE.md",
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gekko",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T17:03:14.262Z",
      "expiresAt": "2026-05-08T17:03:14.262Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gekko",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gekko",
        "contentDisposition": "attachment; filename=\"gekko-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gekko"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gekko"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gekko",
    "downloadUrl": "https://openagent3.xyz/downloads/gekko",
    "agentUrl": "https://openagent3.xyz/skills/gekko/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gekko/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gekko/agent.md"
  }
}
```
## Documentation

### Gekko — Portfolio Manager

AI-powered DeFi portfolio manager for Base network. Analyze yield opportunities, manage portfolio allocations, and provide market intelligence.

Agent ID: 13445 | Chain: Base | Protocol: A2A v0.3.0

### What This Skill Does

Gekko is an AI-powered DeFi portfolio manager that helps you:

Analyze yield opportunities across Base DeFi protocols
Manage portfolio allocations across multiple vaults
Get real-time market intelligence and trading insights
Optimize yield strategies based on risk profiles

### portfolio_management

Perform real-time vault APY analysis using data from Morpho and Yearn protocols. Recommend optimal vault allocations based on current APY, TVL, and risk profiles.

Usage:

curl -X POST https://gekkoterminal.ai/api/a2a?agent=gekko \\
  -H "Content-Type: application/json" \\
  -d '{
    "capability": "portfolio_management",
    "parameters": {
      "action": "analyze",
      "tokens": ["0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"]
    }
  }'

Parameters:

action (string, optional): analyze | optimize | recommend
tokens (array, optional): List of token addresses to analyze

### token_analysis

Retrieve live price, volume, and liquidity data from DexScreener for any token. Identify trends and provide actionable trading signals.

Usage:

curl -X POST https://gekkoterminal.ai/api/a2a?agent=gekko \\
  -H "Content-Type: application/json" \\
  -d '{
    "capability": "token_analysis",
    "parameters": {
      "token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "metrics": ["price", "volume", "trend"]
    }
  }'

Parameters:

token (string, required): Token contract address
metrics (array, optional): price | volume | trend | liquidity

### yield_optimization

Find the best yields on Base. Compare APYs, TVL, and risk profiles across all monitored vaults. Filter by risk tolerance and asset type.

Usage:

curl -X POST https://gekkoterminal.ai/api/a2a?agent=gekko \\
  -H "Content-Type: application/json" \\
  -d '{
    "capability": "yield_optimization",
    "parameters": {
      "chain": "base",
      "asset": "USDC",
      "risk_tolerance": "medium"
    }
  }'

Parameters:

chain (string, optional): Blockchain network (default: base)
asset (string, optional): Asset to optimize (default: USDC)
risk_tolerance (string, optional): low | medium | high

### market_intelligence

Provide market insights, trend analysis, and trading signals. Analyze DeFi market conditions across timeframes.

Usage:

curl -X POST https://gekkoterminal.ai/api/a2a?agent=gekko \\
  -H "Content-Type: application/json" \\
  -d '{
    "capability": "market_intelligence",
    "parameters": {
      "query": "USDC yield trends",
      "timeframe": "7d"
    }
  }'

Parameters:

query (string, required): Market query or topic
timeframe (string, optional): 1h | 24h | 7d | 30d

### chat

Open-ended conversation about markets, strategies, tokens, and yields. Answer any DeFi-related question.

Usage:

curl -X POST https://gekkoterminal.ai/api/a2a?agent=gekko \\
  -H "Content-Type: application/json" \\
  -d '{
    "capability": "chat",
    "parameters": {
      "message": "What are the best yield opportunities on Base?"
    }
  }'

Parameters:

message (string, required): Your question or message

### Smart Contracts (Base Network)

All allocations are managed through transparent, audited smart contracts on Base (Chain ID: 8453).

### Vault Contracts

VaultAddressSeamless USDC0x616a4E1db48e22028f6bbf20444Cd3b8e3273738Moonwell USDC0xc1256Ae5FFc1F2719D4937adb3bbCCab2E00A2CaSpark USDC0x7bFA7C4f149E7415b73bdeDfe609237e29CBF34AGauntlet USDC Prime0xe8EF4eC5672F09119b96Ab6fB59C27E1b7e44b61Yo USDC0x0000000f2eB9f69274678c76222B35eEc7588a65

### Deposit Token

TokenAddressUSDC (Base)0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

### Requirements

Node.js 18+
Access to Base network RPC
API endpoint: https://gekkoterminal.ai/api/a2a?agent=gekko

### Security

All vault contracts are open-source, verified on-chain, and subject to third-party audits, formal verification, and bug bounty programs. Real-time monitoring ensures transparency at every layer.

Built by Gekko AI. Powered by ERC-8004.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: gekkoai001
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T17:03:14.262Z
- Expires at: 2026-05-08T17:03:14.262Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gekko)
- [Send to Agent page](https://openagent3.xyz/skills/gekko/agent)
- [JSON manifest](https://openagent3.xyz/skills/gekko/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gekko/agent.md)
- [Download page](https://openagent3.xyz/downloads/gekko)