Back to Registry View Author Profile
Official Verified
sharesight
Manage Sharesight portfolios, holdings, and custom investments via the API
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/lextoumbourou/sharesight-skillOr
Sharesight Skill
Manage Sharesight portfolios, holdings, custom investments, prices, and coupon rates. Supports full CRUD operations.
Prerequisites
Set these environment variables:
SHARESIGHT_CLIENT_ID- Your Sharesight API client IDSHARESIGHT_CLIENT_SECRET- Your Sharesight API client secretSHARESIGHT_ALLOW_WRITES- Set totrueto enable create, update, and delete operations (disabled by default for safety)
Commands
Authentication
# Authenticate (required before first use)
sharesight auth login
# Check authentication status
sharesight auth status
# Clear saved token
sharesight auth clear
Portfolios
# List all portfolios
sharesight portfolios list
sharesight portfolios list --consolidated
# Get portfolio details
sharesight portfolios get <portfolio_id>
# List holdings in a portfolio
sharesight portfolios holdings <portfolio_id>
# Get performance report
sharesight portfolios performance <portfolio_id>
sharesight portfolios performance <portfolio_id> --start-date 2024-01-01 --end-date 2024-12-31
sharesight portfolios performance <portfolio_id> --grouping market --include-sales
# Get performance chart data
sharesight portfolios chart <portfolio_id>
sharesight portfolios chart <portfolio_id> --benchmark SPY.NYSE
Holdings
# List all holdings across portfolios
sharesight holdings list
# Get holding details
sharesight holdings get <holding_id>
sharesight holdings get <holding_id> --avg-price --cost-base
sharesight holdings get <holding_id> --values-over-time true
# Update holding DRP settings
sharesight holdings update <holding_id> --enable-drp true --drp-mode up
# drp-mode options: up, down, half, down_track
# Delete a holding
sharesight holdings delete <holding_id>
Custom Investments
# List custom investments
sharesight investments list
sharesight investments list --portfolio-id <portfolio_id>
# Get custom investment details
sharesight investments get <investment_id>
# Create a custom investment
sharesight investments create --code TEST --name "Test Investment" --country AU --type ORDINARY
# type options: ORDINARY, TERM_DEPOSIT, FIXED_INTEREST, PROPERTY, ORDINARY_UNLISTED, OTHER
# Update a custom investment
sharesight investments update <investment_id> --name "New Name"
# Delete a custom investment
sharesight investments delete <investment_id>
Prices (Custom Investment Prices)
# List prices for a custom investment
sharesight prices list <instrument_id>
sharesight prices list <instrument_id> --start-date 2024-01-01 --end-date 2024-12-31
# Create a price
sharesight prices create <instrument_id> --price 100.50 --date 2024-01-15
# Update a price
sharesight prices update <price_id> --price 101.00
# Delete a price
sharesight prices delete <price_id>
Coupon Rates (Fixed Interest)
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-lextoumbourou-sharesight-skill": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.