/** * Skill: portfolio — View multi-token portfolio with P&L and allocation. * * Shows: * - All token positions with current value and unrealized P&L * - Realized P&L from past sells * - Portfolio allocation percentages * - Concentration warnings * - Historical performance (if snapshots exist) * * Actions: view, history, record_trade * * The portfolio is populated automatically by handleSkillSideEffects * when the agent executes swaps. The agent can also manually record * trades via the record_trade action for OTC / external transfers. */ import type { SkillDefinition } from '../types.js'; export declare const portfolioSkill: SkillDefinition; //# sourceMappingURL=portfolio.d.ts.map