This repository is a DEFI-focused skill pack for agentic assistants. Each skill is self-contained under skills/[skill-name]/.
| Skill | Purpose | scripts/ | references/ | assets/ |
|---|---|---|---|---|
defi-risk-evaluator |
Economic/financial risk analysis for DeFi protocols | No (placeholder only) | No | No |
defi-data-fetcher |
Source-attributed DeFi metric fetching and normalization | Yes | Yes | No |
defi-portfolio-tracker |
Cross-chain wallet exposure and debt/health monitoring | Yes | Yes | No |
defi-transaction-builder |
Unsigned transaction payload planning and validation | Yes | Yes | Yes |
defi-liquidation-monitor |
Position liquidation watchlists and stress tests | Yes | Yes | Yes |
defi-yield-strategy-designer |
Risk-aware strategy allocation and rebalance design | No | Yes | No |
defi-governance-impact-analyzer |
Governance proposal impact and vote recommendation analysis | No | Yes | No |
defi-bridge-route-planner |
Cross-chain route comparison by cost/time/risk | Yes | Yes | Yes |
| Skill | Typical external sources | Dependency level | Offline with user-supplied data |
|---|---|---|---|
defi-risk-evaluator |
Protocol docs, market metrics (funding/OI/liquidity), revenue/tokenomics dashboards | Low-Medium | Yes |
defi-data-fetcher |
Primary: protocol-native APIs/subgraphs and official analytics. Secondary: DeFiLlama and market data APIs. Validation/backfill: RPC reads. | High (live access required for fresh metrics) | Partial (can normalize, reconcile, and report only on user-provided snapshots/exports) |
defi-portfolio-tracker |
Portfolio indexers, explorer APIs, RPC endpoints, token price feeds | High | Partial (if positions and prices are provided) |
defi-transaction-builder |
Official contract addresses/ABIs, router quotes, chain gas context | Medium | Yes (if transaction params and ABIs are supplied) |
defi-liquidation-monitor |
Lending position snapshots from APIs/RPC (collateral, debt, thresholds) | Medium | Yes (if snapshots are provided) |
defi-yield-strategy-designer |
APY/volume/liquidity and emissions data from analytics providers | Low-Medium | Yes |
defi-governance-impact-analyzer |
Governance proposal text, baseline protocol parameters, treasury metrics | Medium | Yes (if proposal and baseline data are provided) |
defi-bridge-route-planner |
Primary: bridge aggregator and solver quotes. Secondary: direct bridge endpoints. Validation/backfill: route status + RPC gas context. | High (live quotes required for actionable routing) | Partial (cost/risk scoring only on provided quote snapshots) |
Use optional folders only when they improve repeatability or context efficiency:
scripts/: Add when deterministic transformations or repeated calculations are needed.references/: Add when the skill needs domain docs, formulas, or policy checklists.assets/: Add when reusable output templates improve consistency.
agent-skills/
├── README.md
├── LICENSE
└── skills/
└── [skill-name]/
├── SKILL.md # Required
├── scripts/ # Optional deterministic helpers
├── references/ # Optional context docs
└── assets/ # Optional output templates/files