alphagbm-smart-money

Aggregate user-supplied disclosed buy and sell transactions by source and asset.

4.0k|314|Updated Apr 6, 2026
One-click install
npx skills add https://github.com/AlphaGBM/skills --skill alphagbm-smart-money-alphagbm
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: alphagbm-smart-money
Source: https://github.com/AlphaGBM/skills/tree/main/skills/stocks/alphagbm-smart-money
Command: npx skills add https://github.com/AlphaGBM/skills --skill alphagbm-smart-money-alphagbm

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Manually summarizing disclosed insider or institutional transactions across sources is error-prone, and it is easy to confuse holdings snapshots with actual trades or to silently copy trades without understanding direction, net flow, and disclosure lag. ## Core Features & Use Cases - Transaction Aggregation: Reads a local JSON array of disclosed transactions (date, side, source, value) and aggregates buys, sells, and net flow by asset and source via the AlphaGBM API. - Strict Input Validation: The bundled Python runner rejects malformed files, wrong field names (e.g. disclosedAt or action), non-positive amounts, and mixed assumptions before any charged request is made. - Safe Access Controls: Requires explicit --confirm-usage approval before consuming account allowance, keeps the API key in the environment only, and fails closed when the backend is unsupported. - Use Case: You collect public 13D/G or insider disclosure records for NVDA into a JSON file and ask the AI to summarize direction, net flow, sources, and limitations without inferring undisclosed positions. ## Quick Start Ask the AI to use AlphaGBM smart money tracking to summarize your disclosed transactions JSON file by asset and source, showing buys, sells, net flow, and limits, approving allowance use first.

Frequently Asked Questions about alphagbm-smart-money

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I track smart money transactions with AlphaGBM?▼

Prepare a local JSON array of disclosed transactions with date, side, source, and value fields, then run the bundled Python runner with the smart-money command, your ticker, and --confirm-usage after approving allowance use. The workflow aggregates buys, sells, and net flow by source.

What format does the disclosed transactions file need?▼

The file must be a non-empty JSON array where each entry has date in YYYY-MM-DD, side as buy or sell, a non-empty source string, and a positive finite numeric value in one currency. Field names like disclosedAt or action are rejected.

Does smart money tracking execute or copy trades automatically?▼

No. The workflow only aggregates disclosed records by side and source; it does not decide who is smart, infer undisclosed positions, place trades, or copy any trade. A positive net flow is not a forecast or buy recommendation.

Can I mix currencies or share counts in one request?▼

No. All entries in one request must use the same currency and represent traded amounts in currency units, not share counts or holdings values. Split different currencies into separate requests and state the currency in the final explanation.

Why does the runner fail before sending the API request?▼

The runner validates inputs locally and fails closed on malformed JSON, invalid dates, missing sources, non-positive amounts, or missing --confirm-usage approval. Invalid local inputs never trigger a paid request, and unsupported servers return an error instead of fabricated results.