Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add argonautsystems/InvestorClaw --skill skillgit clone --depth 1 https://github.com/argonautsystems/InvestorClawWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/argonautsystems/investorclaw/skill)<a href="https://agentmods.dev/skills/argonautsystems/investorclaw/skill"><img src="https://agentmods.dev/badge/skills/argonautsystems/investorclaw/skill.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00053 | $0.10716 |
| Opus 5 | $0.00026 | $0.05358 |
| Sonnet 5 | $0.00011 | $0.02143 |
| Haiku 4.5 | $0.00005 | $0.01072 |
Grade A, and why
investorclaw scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -sS http://127.0.0.1:18090/api/portfolio/initialize/status How it starts
The opening of the file, as written. The whole thing — 875 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Authoritative operating contract
These rules govern any agent using this skill. Examples elsewhere in this file are reference only and never override them.
Data integrity — InvestorClaw is the only source of truth
- Every price, percent, dollar figure, or market fact an agent states MUST come from an InvestorClaw tool result returned in the SAME turn. InvestorClaw returns HMAC-signed envelopes; that signed data is the only source of truth.
- Never invent, estimate, guess, or use the model's own training knowledge for any number. If a tool did not return it this turn, do not state it — say "InvestorClaw returned no data for that".
- Tool prose with no concrete numbers = no data; never convert it into a figure.
Current tool surface (underscore namespace)
investorclaw__portfolio_market_snapshot(symbols?, benchmarks?)— real-time prices + day-change% for holdings and benchmarks (SPX/NDX/DJI/VIX, BTC/ETH).symbolsis a COMMA-SEPARATED STRING (e.g. "NVDA,AAPL"), not a list. No args = holdings + benchmarks. Use this (not portfolio_ask) for any "price of X" and to read the portfolio against the market.investorclaw__portfolio_performance_window(period=...)— return / P&L / movers over a window. period: 1d, 1w, 1mo, 1y, 5y, 10y, 20y, max, or natural phrases ("today", "last week", "last year", "entire history").investorclaw__portfolio_ask(question=...)— analysis / explanation.
Older investorclaw.* dot-namespace examples below are stale; the underscore
forms above are the current tool names.
Autonomous / always-on monitoring agents
For unattended agents (scheduled monitors and alerters — e.g. a MarketWatch agent), in addition to the contract above:
- Drive each run from a tool call first; never answer a market question from
memory. A scheduled "poll" means call
portfolio_market_snapshot. - Threshold scan: call
portfolio_market_snapshot, then emit ONE terse line only when a holding or benchmark breaches the configured move (e.g. ±3% a holding, ±10% VIX); otherwise emit a singleNO_ALERTtoken and stop. - If the required tool errors or returns no data, emit a fixed marker such as
OPS_FAIL market_snapshot unavailableand stop — never fabricate a reassuring number to fill the gap. - No clarifying questions in unattended mode; map intent and act.
- Periodic / EOD reports: pull
portfolio_performance_windowfor the window, thenportfolio_market_snapshotfor index closes; report numbers verbatim. - Always read holdings in the context of the benchmarks in the same snapshot.
- Delivery is push, terse, numbers-first. Educational, not personalized advice.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .clawhub/origin.json 144 B
- agent-skills/claude-code/INSTALL.md 3.8 KB
- agent-skills/claude-code/manifest-template.json 3.5 KB
- agent-skills/claude-code/SKILL.md 10 KB
- agent-skills/claude-desktop/config-snippet.json 1.3 KB
- agent-skills/claude-desktop/INSTALL.md 6.6 KB
- agent-skills/claude-desktop/SKILL.md 8.0 KB
- agent-skills/hermes/config-snippet.yaml 880 B
- agent-skills/hermes/DESCRIPTION.md 3.6 KB
- agent-skills/hermes/INSTALL.md 5.1 KB
- agent-skills/hermes/SKILL.md 11 KB
- agent-skills/openclaw/config-snippet.json5 1.0 KB
- agent-skills/openclaw/INSTALL.md 6.5 KB
- agent-skills/openclaw/SKILL.md 8.9 KB
- agent-skills/zeroclaw/config-snippet.toml 656 B
- agent-skills/zeroclaw/INSTALL.md 5.4 KB
- agent-skills/zeroclaw/SKILL.md 13 KB
- agent-skills/zeroclaw/SKILL.toml 1.8 KB
- assets/investorclaw-logo.svg 1.4 KB
- bridge/frozendict_shim/__init__.py 2.0 KB runs code
- bridge/investorclaw_bridge/__init__.py 629 B runs code
- bridge/investorclaw_bridge/bundle_schema.py 10 KB runs code
- bridge/investorclaw_bridge/bundle.py 21 KB runs code
- bridge/investorclaw_bridge/dashboard.py 67 KB runs code
- bridge/investorclaw_bridge/key_resolver.py 4.9 KB runs code
- bridge/investorclaw_bridge/mcp_server.py 1.1 KB runs code
- bridge/investorclaw_bridge/mcp/__init__.py 1.5 KB runs code
- bridge/investorclaw_bridge/mcp/_runtime.py 7.1 KB runs code
- bridge/investorclaw_bridge/mcp/tools/__init__.py 2.3 KB runs code
- bridge/investorclaw_bridge/mcp/tools/keys.py 8.9 KB runs code
- bridge/investorclaw_bridge/mcp/tools/portfolio.py 16 KB runs code
- bridge/investorclaw_bridge/mcp/tools/responses.py 14 KB runs code
- bridge/investorclaw_bridge/mcp/transport.py 14 KB runs code
- bridge/investorclaw_bridge/mnemos_client.py 4.7 KB runs code
- bridge/investorclaw_bridge/serve.py 15 KB runs code
- bridge/investorclaw_bridge/setup_api.py 15 KB runs code
- bridge/patches/lazy_matplotlib_optimize.py 2.1 KB runs code
- bridge/pyproject.toml 1.2 KB
- CAPABILITIES.md 22 KB
- CHANGELOG.md 17 KB
- CODE_OF_CONDUCT.md 4.8 KB
- compose.yml 3.8 KB
- CONTRIBUTING.md 3.1 KB
- dashboard/index.html 3.6 KB
- DISCLAIMER.md 2.6 KB
- docs/COBOL_TESTING.md 25 KB
- docs/EOD_REPORT.md 4.7 KB
- docs/GETTING_STARTED_MASSIVE.md 6.3 KB
- docs/GLOSSARY.md 9.0 KB
- docs/INSTALL_MODELS.md 13 KB
- docs/MCP_TOOLS_REFERENCE.md 12 KB
- docs/PHILOSOPHY.md 4.8 KB
- docs/references/contract-input.md 1.7 KB
- docs/references/contract-output.md 5.1 KB
- docs/references/presentation-nl-query-routing.md 13 KB
- docs/references/presentation-rules.md 3.0 KB
- docs/references/runtime-gemma4-consult.md 1.5 KB
- docs/references/schema-holdings-fields.md 2.1 KB
- docs/STONKMODE_ARCHITECTURE.md 10 KB
- docs/STONKMODE_AVATAR_LEGEND.md 2.0 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 875 lines · 53 tokens per session scan E 3067d5474eea
investorclaw is a skill published in the GitHub repository argonautsystems/InvestorClaw (9 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 53 tokens to every session and 10,716 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
chief-financial-officer
Owns the financial position: planning, budgeting, forecasting, unit economics, cash, and the numbers the business is run and reported on. Use this to build or challenge a budget, model a decision's financial consequence, assess unit economics or runway, evaluate an investment or spend request, set financial controls…
fundraising-and-investor-relations
Raises capital and manages the relationship afterward — deciding how much and why, understanding what dilution and preferences actually cost, running a process with real competitive tension, preparing for diligence before it starts, and reporting to investors and a board in a way that keeps support when results are…
internal-controls-and-audit
Designs and tests controls over financial reporting — segregation of duties, approval limits, evidence, and preparing for audit. Use this to design controls for a process, prepare for an external audit, respond to an audit finding, set approval thresholds, or assess where a small team's segregation of duties is…
sales-compensation-and-territory
Designs quotas, territories and commission plans that produce the behavior the business needs — sizing territories against real potential, setting quotas people can hit often enough to believe in, choosing what to pay on, handling accelerators, draws, clawbacks and disputes, and changing a plan without destroying…
capital-structure-and-covenants
Decides how the business is financed and what that financing then requires of it — debt versus equity, weighted average cost of capital as a hurdle rate, how much leverage cash flow can carry, and the financial, affirmative and negative covenants, definitions, test dates and cure rights that come attached. Use this to…
cost-accounting
Establishes what something actually costs — fixed, variable and mixed cost behavior, absorption versus variable costing, job-order, process and activity-based methods, breakeven and operating leverage, and price/volume/mix decomposition. Use this to set a price floor, explain why revenue or margin moved, decide make…