Summary
- Problem: DeFi risk analysis is complex and fragmented — evaluating vault safety requires cross-referencing audit reports, on-chain data, oracle health, and protocol track records across multiple chains and protocols. Most users and AI agents lack the tooling to do this systematically.
- Solution: Philidor makes institutional-grade DeFi risk intelligence accessible through a simple CLI. It covers vault search, risk scoring (0–10 across three vectors), protocol comparison, portfolio analysis, and oracle monitoring.
- Who uses it: DeFi users evaluating yield opportunities, AI agents performing risk-adjusted vault recommendations, yield analysts comparing protocols, and portfolio managers monitoring exposure.
- How it works: Uses the npm CLI
@philidorlabs/cli which connects to the public Philidor API — no API key required. Covers Morpho, Yearn, Aave, Beefy, and Spark across Ethereum, Base, Arbitrum, Polygon, Optimism, and Gnosis.
Usage example
npm install -g @philidorlabs/cli
# Find the safest USDC vaults with >$1M TVL
philidor safest --asset USDC --min-tvl 1000000 --json
# Compare two vaults side-by-side
philidor compare --vault ethereum:0xVault1 --vault base:0xVault2 --json
# Get full risk breakdown
philidor risk-breakdown --network ethereum --address 0xVaultAddress --json
Changes
- Added
philidor/SKILL.md with frontmatter, use cases, capabilities, usage examples, agent workflows, and tips
- Added entry to README.md in the Data & Analysis section (alphabetically between deep-research and postgres)