investorclaw

investorclaw is a skill for Claude Code from argonautsystems/InvestorClaw. It costs 47 tokens per session (3,482 once invoked), scanned A, original, Apache-2.0.

A portfolio analysis tool for ZeroClaw, connected through a local MCP-HTTP service. It examines holdings, returns, risk measures, interest-rate data, bond duration, and possible rebalancing scenarios.

In plain words
What is it for?
Use it to inspect holdings and performance, compare them with market benchmarks, assess risk with Sharpe and Sortino ratios, examine bond sensitivity to interest rates, and test rebalancing scenarios.
Why use it?
It provides portfolio figures and market facts from one signed data source, reducing the risk of invented or inconsistent numbers.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: positional $N argument; mentions Claude Code.

Part of the investorclaw plugin — 7 skills, 2 commands shipped together

Good fit Use it to inspect holdings and performance, compare them with market benchmarks, assess risk with Sharpe and Sortino ratios, examine bond sensitivity to interest rates, and test rebalancing scenarios.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/argonautsystems/investorclaw/zeroclaw
Install

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.

Any agent
npx skills add argonautsystems/InvestorClaw --skill zeroclaw
Clone the repo
git clone --depth 1 https://github.com/argonautsystems/InvestorClaw

Made for: Claude Code.

Or install investorclaw, the plugin that ships this one along with the rest of its 7 skills, 2 commands.

Wrote 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.

agentmods badge for investorclaw

README.md
[![agentmods](https://agentmods.dev/badge/skills/argonautsystems/investorclaw/zeroclaw/github.svg)](https://agentmods.dev/skills/argonautsystems/investorclaw/zeroclaw)
Your own site
<a href="https://agentmods.dev/skills/argonautsystems/investorclaw/zeroclaw"><img src="https://agentmods.dev/badge/skills/argonautsystems/investorclaw/zeroclaw/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for investorclaw

Your own site · 80×15
<a href="https://agentmods.dev/skills/argonautsystems/investorclaw/zeroclaw"><img src="https://agentmods.dev/badge/skills/argonautsystems/investorclaw/zeroclaw.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,482 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.03482
Opus 5 $0.00023 $0.01741
Sonnet 5 $0.00009 $0.00696
Haiku 4.5 $0.00005 $0.00348

Measured 11d ago against content hash 71cb60deb26c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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 11d 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.

symlinks, no curl-pipe-shell patterns, no remote markdown links.
skill/agent-skills/zeroclaw/SKILL.md · 314 lines

How it starts

The opening of the file, as written. The whole thing — 314 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). symbols is 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 single NO_ALERT token and stop.
  • If the required tool errors or returns no data, emit a fixed marker such as OPS_FAIL market_snapshot unavailable and 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_window for the window, then portfolio_market_snapshot for 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.

Read the full file on GitHub · 314 lines

Files

What ships with it

3 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.

Changes

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.

  1. 11d ago First seen · 314 lines · 47 tokens per session scan A 71cb60deb26c

Subscribe to this mod's changes

investorclaw is a skill published in the GitHub repository argonautsystems/InvestorClaw (9 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 47 tokens to every session and 3,482 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

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…

cbrock84/headcount · 91 tokens

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…

cbrock84/headcount · 88 tokens

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…

cbrock84/headcount · 67 tokens

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…

cbrock84/headcount · 96 tokens

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…

cbrock84/headcount · 102 tokens

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…

cbrock84/headcount · 92 tokens