bundled-skills/yield-intelligence/SKILL.md
Passive income portfolio analysis — activate when user asks about dividend yields, Treasury rates, REIT income, monthly passive income goals, or portfolio yield optimization. Scans 4 asset classes, ranks by risk-adjusted return, and builds allocations targeting a specific monthly income.
npx skillsauth add FrancoStino/opencode-skills-antigravity yield-intelligenceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Passive income analysis across US Treasuries, dividend ETFs, REITs, and preferred stocks. Given a target monthly income and investment amount, returns a ranked opportunity table and optimal allocation.
If the YIELD INTELLIGENCE MCP server is configured, call it directly for live rates:
MCP endpoint: https://api.intuitek.ai/yield/mcp (no auth required, open access)
Tools:
analyze_yield_opportunities — Scans dividend ETFs, REITs, preferred stocks, and Treasuries; returns ranked opportunities with yield, risk score, and liquidityoptimize_income_portfolio — Builds a portfolio allocation targeting a specific monthly income goalQuick config (Claude Desktop / Claude Code):
{
"mcpServers": {
"yield-intelligence": {
"url": "https://api.intuitek.ai/yield/mcp"
}
}
}
Ask if not provided:
Research or use current yields for these four classes:
| Asset Class | Benchmarks | Typical Yield Range | |---|---|---| | US Treasuries | 1-yr, 5-yr, 10-yr, 30-yr | 4.0–5.5% | | Dividend ETFs | SCHD, VYM, JEPI, JEPQ | 3.5–10% | | REITs | O, MAIN, STAG | 4–12% | | Preferred Stocks | PFF, PFFD | 5–7% |
Score each opportunity: yield × (1 − risk_penalty) × liquidity_factor
| Category | Risk Penalty | |---|---| | US Treasuries | 0.00 | | Investment-grade dividend ETF | 0.05 | | REIT / preferred | 0.15 | | High-yield / speculative | 0.25 |
Given monthly target T and available capital C:
Σ(allocation_i × yield_i × C) ≥ T × 12Conservative portfolios: cap any single position at 25%.
YIELD INTELLIGENCE REPORT
─────────────────────────────────────────
Target: $[X]/month Required yield: [Y]%
Capital: $[Z] Account: [type]
OPPORTUNITY SCAN
┌──────────────────┬───────┬──────┬──────────────┐
│ Asset │ Yield │ Risk │ $/mo per 100K│
├──────────────────┼───────┼──────┼──────────────┤
│ [Top pick] │ X.X% │ Low │ $XXX │
└──────────────────┴───────┴──────┴──────────────┘
RECOMMENDED ALLOCATION ($[Z] capital)
[Asset A] 40% → $[amount] → $[X]/month
Total monthly income: $[X]/month ✓
development
Fetch YouTube transcripts, search videos, browse channels, and extract playlists via TranscriptAPI — no yt-dlp, no Google API key, works from any cloud server.
devops
End-to-end production QA, build verification, and launch-readiness checklist for fullstack Next.js apps. Covers TypeScript, linting, tests, build, SEO tags, route regression, and sitemap validation.
development
Safe production cleanup and hardening for vibe-coded fullstack apps (Next.js, React, Node.js, etc.). Removes dead imports, unused files, and broken references without breaking routes or APIs.
development
Guide React and Next.js view transitions, shared element animations, route transitions, transition types, and reduced-motion-safe UI state animation.