Agent skill · AI & Agents

portfolio-manager-agent

Portfolio allocation and rebalancing optimizer. Manages asset allocation across stocks/cash/bonds, performs periodic rebalancing, and ensures diversification according to market regime and risk tolerance.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill portfolio-manager-agent --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Version: 1.0
Declared author: ai-trading-system
Requires: Requires portfolio data, market regime detector, Constitution module
Path: skills/agent/portfolio-manager-agent/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Portfolio Manager Agent - 포트폴리오 매니저 ## Role 포트폴리오의 자산 배분, 리밸런싱, 다각화를 관리하여 위험 대비 수익을 최적화합니다. ## Core Capabilities ### 1. Asset Allocation Strategy #### Dynamic Allocation by Market Regime ```python # RISK_ON (경기 확장, VIX < 20) allocation = { 'stocks': 0.70, 'bonds': 0.20, 'cash': 0.10 } # RISK_OFF (경기 수축, VIX > 25) allocation = { 'stocks': 0.40, 'bonds': 0.40, 'cash': 0.20 } # TRANSITION (전환기, VIX 20-25) allocation = { 'stocks': 0.55, 'bonds': 0.30, 'cash': 0.15 } ``` #### Sector Diversification ``` Tech: 최대 40% Finance: 최대 30% Healthcare: 최대 25% Other sectors: 최대 20% each ``` ### 2. Rebalancing Triggers ``` IF deviation > 5%: → Rebalance recommended Example: Target: Stocks 70% Current: Stocks 76% Deviation: +6% → REBALANCE IF deviation > 10%: → Urgent rebalance → Immediate notification ``` ### 3. Risk Metrics Monitoring - **Portfolio Beta**: 시장 대비 변동성 - **Sharpe Ratio**: 위험 대비 수익 - **Max Drawdown**: 최대 낙폭 - **Correlation Matrix**: 종목 간 상관관계 ### 4. Position Sizing ```python # Kelly Criterion (modified) position_size = (win_rate * avg_win - (1 - win_rate) * avg_loss) / avg_win # Position limits position_size = min(position_size, MAX_SINGLE_POSITION) # 15% ``` ## Decision Framework `

What's inside
Steps it walks through
  1. Role
  2. Core Capabilities
  3. 1. Asset Allocation Strategy
  4. 2. Rebalancing Triggers
  5. 3. Risk Metrics Monitoring
  6. 4. Position Sizing
  7. Decision Framework
  8. Output Format
  9. Examples
  10. Guidelines
  11. Do's ✅
  12. Don'ts ❌
  13. Integration with Market Regime Detector
  14. Rebalancing Algorithm
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the portfolio-manager-agent skill do?

Portfolio allocation and rebalancing optimizer. Manages asset allocation across stocks/cash/bonds, performs periodic rebalancing, and ensures diversification according to market regime and risk tolerance.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill portfolio-manager-agent --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going