portfolio

Manage investment portfolios. Use when adding positions, analyzing allocation, calculating returns, or generating rebalance advice.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "portfolio" with this command: npx skills add bytesagain1/portfolio

Portfolio

Investment portfolio manager. Add and remove holdings, list positions, analyze allocation weights, generate rebalance suggestions against target weights, and calculate performance returns over configurable time periods. All data is stored locally in JSON files — no external API calls required.

Commands

CommandDescriptionFlags
add <ticker> <qty> <price>Buy shares — adds to holdings and records a buy transaction--date YYYY-MM-DD (defaults to today)
remove <ticker>Sell shares — removes from holdings and records a sell transaction--quantity N (partial sell; omit to sell all)
listDisplay all current holdings in a formatted table--format table|json|csv
analyzeAnalyze portfolio allocation with value and weight percentages--by ticker|sector --format table|json
rebalanceGenerate buy/sell suggestions to reach target allocation weights--target TICKER:PCT,... --threshold PCT (default 5)
performanceCalculate portfolio returns (invested, sold, current value, gain/loss)--period 1d|1w|1m|3m|1y|all --format table|json
helpShow the built-in help message with all command examples

Data Storage

All data is stored locally in ~/.portfolio/:

  • holdings.json — Array of current positions, each with ticker, quantity, avg_price, and date_added
  • transactions.json — Array of all buy/sell transactions with type, ticker, quantity, price, and date

Both files are auto-created as empty JSON arrays ([]) on first use. The add command automatically merges duplicate tickers by recalculating the weighted average price.

Requirements

  • bash (4.0+)
  • python3 (standard library only — json, os, sys, datetime)
  • No external APIs, no pip packages, no network access needed

When to Use

  1. Tracking purchases — When you buy stocks, ETFs, or crypto and want to record ticker, quantity, and price with automatic cost-basis averaging
  2. Reviewing holdings — When you need a quick snapshot of your current portfolio in table, JSON, or CSV format
  3. Allocation analysis — When you want to see how your portfolio is weighted across assets, with percentage breakdowns and visual bars
  4. Rebalancing — When you need buy/sell recommendations to reach target allocation weights (e.g., AAPL:40,GOOG:30,BTC:30), with configurable drift thresholds
  5. Performance tracking — When you want to calculate total invested, total sold, current value, and gain/loss percentage over a specific time period (1 day to all-time)

Examples

# Add 100 shares of AAPL at $150.50, purchased on Jan 15, 2024
bash scripts/script.sh add AAPL 100 150.50 --date 2024-01-15

# Add 0.5 BTC at $42,000 (today's date auto-applied)
bash scripts/script.sh add BTC 0.5 42000

# Sell 50 shares of AAPL (partial sell)
bash scripts/script.sh remove AAPL --quantity 50

# Remove entire GOOG position
bash scripts/script.sh remove GOOG

# List holdings as a formatted table
bash scripts/script.sh list

# List holdings as JSON for programmatic use
bash scripts/script.sh list --format json

# List holdings as CSV for spreadsheet import
bash scripts/script.sh list --format csv

# Analyze allocation by ticker with visual weight bars
bash scripts/script.sh analyze --format table

# Get allocation as JSON
bash scripts/script.sh analyze --format json

# Generate rebalance suggestions with custom targets and 3% threshold
bash scripts/script.sh rebalance --target AAPL:40,GOOG:30,BTC:30 --threshold 3

# Equal-weight rebalance (no --target defaults to equal weight across all holdings)
bash scripts/script.sh rebalance

# Check performance over the last month
bash scripts/script.sh performance --period 1m

# All-time performance as JSON
bash scripts/script.sh performance --period all --format json

How It Works

The script uses embedded Python (standard library only) for JSON manipulation and calculations. Bash handles argument parsing and dispatches to the appropriate Python block. When you add a position that already exists, the script recalculates the weighted average price automatically. The rebalance command compares current allocation percentages against your targets and flags any drift exceeding the threshold, recommending dollar amounts to buy or sell. The performance command filters transactions by date range and computes total invested, total sold, current portfolio value, and the resulting gain/loss.

Output

All commands print to stdout. Use --format json for machine-readable output where supported. Redirect with standard shell operators:

bash scripts/script.sh list --format csv > portfolio.csv
bash scripts/script.sh performance --format json | jq .

Powered by BytesAgain | bytesagain.com | hello@bytesagain.com

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Asset Allocation

Professional investment advisory skill. Use when user asks about investing, wealth management, asset allocation, fund/etf selection, retirement planning, or...

Registry SourceRecently Updated
9861Profile unavailable
General

RiskOfficer

Portfolio risk management and analytics. Use when user asks to calculate VaR, run Monte Carlo, stress test, optimize with Risk Parity / Calmar / Black-Litter...

Registry SourceRecently Updated
2.8K3Profile unavailable
Research

A股多智能体投研-15 AI 分析师

A股多智能体 AI 投研分析工具 — 15 名 AI 分析师协作完成技术分析、基本面分析、 市场情绪研判、资金流向追踪(北向资金/主力资金)、宏观经济分析及博弈论推演, 输出结构化买卖建议与风险评估。支持沪深 A 股股票代码和中文名称。 Multi-agent AI stock analysis for Chin...

Registry SourceRecently Updated
8111Profile unavailable
Web3

Polaris

Access verified, real-time news briefs, on-demand intelligence reports, trending topics, and search from 160+ sources across 18 categories with bias and conf...

Registry SourceRecently Updated
3120Profile unavailable