CA

calculating-crypto-taxes

Processes crypto transaction history to calculate capital gains and generate tax reports using multiple cost basis methods.

Install

mkdir -p .claude/skills/calculating-crypto-taxes && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2055" && unzip -o skill.zip -d .claude/skills/calculating-crypto-taxes && rm skill.zip

Installs to .claude/skills/calculating-crypto-taxes

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Calculate cryptocurrency tax obligations with cost basis tracking, capital
74 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Prepare transaction data by exporting CSV from exchanges.
  • Run basic tax calculation using FIFO method.
  • Compare cost basis methods (FIFO, LIFO, HIFO) to understand tax implications.
  • Generate Form 8949 report as CSV.
  • Handle income events like staking, airdrops, and mining.
  • Consolidate multi-exchange data into a unified report.

How it works

The skill imports transaction history from CSVs, calculates capital gains using specified cost basis methods, and identifies taxable events.

Inputs & outputs

You give it
Transaction history CSV files, tax year, optional cost basis method
You get back
Reports with short-term and long-term capital gains/losses, Form 8949 compatible reports, income report

When to use calculating-crypto-taxes

  • Calculate crypto capital gains
  • Generate tax reports
  • Compare FIFO and HIFO cost basis
  • Track taxable crypto events

About this skill

Calculating Crypto Taxes

Overview

Calculate cryptocurrency tax obligations from transaction history. Supports FIFO, LIFO, and HIFO cost basis methods, identifies taxable events (trades, staking, airdrops), and generates Form 8949 compatible reports.

DISCLAIMER: This tool provides informational calculations only, not tax advice. Consult a qualified tax professional.

Prerequisites

  • Transaction history exported as CSV from your exchanges (Coinbase, Binance, Kraken, etc.)
  • Python 3.8+ installed
  • Understanding of your tax jurisdiction's crypto rules

Instructions

  1. Prepare transaction data by exporting CSV from each exchange:

    ExchangeExport Location
    CoinbaseReports > Tax documents > Transaction history CSV
    BinanceOrders > Trade History > Export
    KrakenHistory > Export
    GenericSee ${CLAUDE_SKILL_DIR}/references/exchange_formats.md for column mapping
  2. Run basic tax calculation using FIFO (IRS default):

    python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions your_trades.csv --year 2025  # 2025 = tax year
    
  3. Compare cost basis methods to understand tax implications:

    python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions trades.csv --compare-methods
    

    Methods: --method fifo (IRS default), --method lifo (Last In First Out), --method hifo (minimize gains)

  4. Generate Form 8949 report as CSV:

    python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions trades.csv --method fifo --year 2025 --output form_8949.csv --format csv  # 2025 = tax year
    
  5. Handle income events (staking, airdrops, mining, DeFi yield):

    python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions all_events.csv --income-report
    
  6. Consolidate multi-exchange data into a unified report:

    python ${CLAUDE_SKILL_DIR}/scripts/tax_calculator.py --transactions coinbase.csv binance.csv kraken.csv --year 2025  # 2025 = tax year
    

Output

Reports include short-term and long-term capital gains/losses broken down by transaction, with proceeds, cost basis, and gain/loss per disposal. Summary shows total proceeds, total cost basis, net capital gain, and short/long-term split. Income report lists staking, airdrop, and mining income with fair market values.

See ${CLAUDE_SKILL_DIR}/references/implementation.md for detailed output format examples.

Error Handling

ErrorCauseFix
Missing columnsCSV format mismatchVerify format matches exchange template
Unknown transaction typeUnrecognized event categoryReview and manually categorize
Insufficient lotsMissing buy transactionsCheck for missing imports or transfers

Examples

Basic FIFO tax calculation - Standard IRS-default method for a single exchange:

python tax_calculator.py --transactions trades.csv --year 2025  # 2025 = tax year

HIFO to minimize gains - Highest-cost lots disposed first to reduce taxable gain:

python tax_calculator.py --transactions trades.csv --method hifo --year 2025  # 2025 = tax year

JSON output for processing - Machine-readable export for tax software integration:

python tax_calculator.py --transactions trades.csv --format json --output tax_data.json

Verbose with lot details - See which specific lots were matched to each disposal:

python tax_calculator.py --transactions trades.csv --verbose --show-lots

Resources

Prerequisites

Transaction history exported as CSV from your exchangesPython 3.8+ installedUnderstanding of your tax jurisdiction's crypto rules

Limitations

  • Missing columns in CSV will cause format mismatch errors.
  • Unrecognized transaction types require manual categorization.
  • Missing buy transactions will lead to insufficient lots errors.

How it compares

This skill automates crypto tax calculations and report generation, supporting multiple cost basis methods, unlike manual spreadsheet tracking.

Compared to similar skills

calculating-crypto-taxes side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
calculating-crypto-taxes (this skill)527dReviewIntermediate
quant-analyst1032moNo flagsAdvanced
stock-analyzer712moReviewBeginner
pair-trade-screener111moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

quant-analyst

zenobi-us

Expert quantitative analyst specializing in financial modeling, algorithmic trading, and risk analytics. Masters statistical methods, derivatives pricing, and high-frequency trading with focus on mathematical rigor, performance optimization, and profitable strategy development.

103355

stock-analyzer

FrancyJGLisboa

Provides comprehensive technical analysis for stocks and ETFs using RSI, MACD, Bollinger Bands, and other indicators. Activates when user requests stock analysis, technical indicators, trading signals, or market data for specific ticker symbols.

71214

pair-trade-screener

tradermonty

Statistical arbitrage tool for identifying and analyzing pair trading opportunities. Detects cointegrated stock pairs within sectors, analyzes spread behavior, calculates z-scores, and provides entry/exit recommendations for market-neutral strategies. Use when user requests pair trading opportunities, statistical arbitrage screening, mean-reversion strategies, or market-neutral portfolio construction. Supports correlation analysis, cointegration testing, and spread backtesting.

1198

risk-metrics-calculation

wshobson

Calculate portfolio risk metrics including VaR, CVaR, Sharpe, Sortino, and drawdown analysis. Use when measuring portfolio risk, implementing risk limits, or building risk monitoring systems.

881

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

model-usage

openclaw

Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.

548

Search skills

Search the agent skills registry