chart-markup

chart-markup is a skill for Claude Code from INo-xious/stockbit-mcp. It costs 46 tokens per session (600 once invoked), scanned A, original, MIT.

A chart annotation tool for Stockbit, an online investing and market-chart platform. It opens the user's signed-in chart and can add levels, trend lines, indicators, and other markings to the saved layout.

In plain words
What is it for?
Use it to inspect a symbol, mark specific dates or price levels, add supported studies, or save an analyzed chart layout in Stockbit.
Why use it?
It avoids manually drawing and configuring the same chart annotations in the browser. It can also derive support, resistance, and trend lines from price bars.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the stockbit plugin — 9 skills, 2 MCP servers shipped together

Good fit Use it to inspect a symbol, mark specific dates or price levels, add supported studies, or save an analyzed chart layout in Stockbit.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ino-xious/stockbit-mcp/chart-markup
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 INo-xious/stockbit-mcp --skill chart-markup
Clone the repo
git clone --depth 1 https://github.com/INo-xious/stockbit-mcp

Made for: Claude Code.

Or install stockbit, the plugin that ships this one along with the rest of its 9 skills, 2 MCP servers.

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 chart-markup

README.md
[![agentmods](https://agentmods.dev/badge/skills/ino-xious/stockbit-mcp/chart-markup/github.svg)](https://agentmods.dev/skills/ino-xious/stockbit-mcp/chart-markup)
Your own site
<a href="https://agentmods.dev/skills/ino-xious/stockbit-mcp/chart-markup"><img src="https://agentmods.dev/badge/skills/ino-xious/stockbit-mcp/chart-markup/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 chart-markup

Your own site · 80×15
<a href="https://agentmods.dev/skills/ino-xious/stockbit-mcp/chart-markup"><img src="https://agentmods.dev/badge/skills/ino-xious/stockbit-mcp/chart-markup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 600 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 35
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00046 $0.00600
Opus 5 $0.00023 $0.00300
Sonnet 5 $0.00009 $0.00120
Haiku 4.5 $0.00005 $0.00060

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

Security

Grade A, and why

chart-markup scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/chart-markup/SKILL.md · 41 lines

How it starts

The opening of the file, as written. The whole thing — 41 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Chart markup

This drives the browser the user is already signed into, over the Chrome DevTools Protocol, on Stockbit's own chart page. It is the one place this server touches a UI, and everything it draws lands in the user's real saved layout.

The sequence

  1. chartbit_open symbol=… — put the chart in front of them. resolution and chart_type set the timeframe and style. Do this first; everything below acts on the open chart.
  2. chartbit_analyze symbol=… — derive support, resistance and trend lines from the bars. min_touches controls how much evidence a level needs; lookback how far back to look. With draw=true it draws what it found in one step, and replace=true clears the previous set instead of stacking on it.
  3. chartbit_draw symbol=… annotations=… anchor_date=… for anything specific. Times are epoch seconds, and anchor_date is what the annotation coordinates are relative to. Getting this wrong puts a line in 1970, which is visible but not useful.
  4. chartbit_study symbol=… study=… for indicators. The studies are a closed list — the tool description names them. A study Stockbit does not have cannot be added by asking twice.
  5. chartbit_screenshot symbol=… to see the result, and chartbit_save symbol=… to keep it.

Rules

  • Saving is explicit. Stockbit autosaves on its own schedule, which is not yours: if the user wants the markup to survive, call chartbit_save. Say that you did.
  • replace versus stacking. Running chartbit_analyze three times without replace=true leaves three sets of lines on the user's real chart. Prefer replace=true unless they asked to add to what is there.
  • This is their chart. Do not clear a layout you did not draw without asking. There is no undo.
  • Check the drawing landed. Take the screenshot. The CDP call can succeed while the chart rejects the annotation.
  • A blank white page means signed out. Stockbit's chart renders nothing at all when there is no session — no login prompt, nothing. If the screenshot is blank, that is what happened, and the fix is a login in that browser, not a retry.

Read the full file on GitHub · 41 lines

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. 9d ago First seen · 41 lines · 46 tokens per session scan A a9ca16a25a84

Subscribe to this mod's changes

chart-markup is a skill published in the GitHub repository INo-xious/stockbit-mcp (29 stars, last pushed today), licensed MIT. It adds 46 tokens to every session and 600 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

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…

cbrock84/headcount · 88 tokens

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

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

financial-statement-analysis

Reads a set of financial statements and establishes what changed and why — fluctuation analysis against prior period and against budget, profitability, liquidity, solvency and efficiency ratios, benchmarking, and the non-GAAP measures presented alongside them. Use this to interpret results, review a counterparty's or…

cbrock84/headcount · 93 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

payroll-operations

Runs the pay cycle so it is right, on time, and provable — the calendar and cutoffs, what feeds pay from the HRIS and time systems, gross-to-net and the deductions in it, multi-jurisdiction registration and tax filing, off-cycle payments and corrections, and the reconciliation to the general ledger. Use this to design…

cbrock84/headcount · 104 tokens