tossinvest-trading

tossinvest-trading is a skill for Codex from cha2hyun/tossinvest-mcp. It costs 55 tokens per session (996 once invoked), scanned A, original, MIT.

A guarded workflow for placing, changing, or cancelling Toss Securities stock orders. It supports regular market or limit orders, where a limit order sets a maximum buying or minimum selling price.

In plain words
What is it for?
Use it for explicitly approved stock buys, sells, modifications, or cancellations that meet the required symbol, side, order type, and quantity or amount details.
Why use it?
It prevents an assistant from guessing trade intent, writing before approval, exceeding limits, or repeating an uncertain order request.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it for explicitly approved stock buys, sells, modifications, or cancellations that meet the required symbol, side, order type, and quantity or amount details.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cha2hyun/tossinvest-mcp/tossinvest-trading
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 cha2hyun/tossinvest-mcp --skill tossinvest-trading
Clone the repo
git clone --depth 1 https://github.com/cha2hyun/tossinvest-mcp

Made for: Codex.

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 tossinvest-trading

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/cha2hyun/tossinvest-mcp/tossinvest-trading"><img src="https://agentmods.dev/badge/skills/cha2hyun/tossinvest-mcp/tossinvest-trading.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 996 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.
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.00055 $0.00996
Opus 5 $0.00028 $0.00498
Sonnet 5 $0.00011 $0.00199
Haiku 4.5 $0.00006 $0.00100

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

Security

Grade A, and why

tossinvest-trading 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 12d 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/tossinvest-trading/SKILL.md · 100 lines

How it starts

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

TossInvest Trading

Use this workflow only for an explicit user-requested order action. Hermes may prefix tool names with mcp_tossinvest_; names below omit that prefix.

Non-negotiable rules

  1. Never infer an order from research, analysis, portfolio discussion, or a price target.
  2. Never request, read, transmit, log, or store the human approval token or its hash.
  3. Never split an order to evade configured limits or the KRW 100 million hard block.
  4. Never call a write tool before a matching preview has been approved outside MCP.
  5. Never call a write tool more than once for the same preview.
  6. Never automatically retry any create, modify, or cancel request.
  7. If the result is order-state-unknown, inspect order history before any further write.
  8. Treat a missing trading tool as trading disabled; do not seek another route around it.
  9. Conditional-order creation, modification, and cancellation are unsupported; never substitute a regular-order write tool or another route.

Establish exact intent

For a new order, require:

  • side: BUY or SELL
  • symbol
  • order type: LIMIT or MARKET
  • exactly one of whole-share quantity or supported USD order_amount
  • price for a limit order
  • time in force when it differs from DAY

For a modification, require the existing order ID and every proposed replacement field.

For a cancellation, require the existing order ID and an explicit request to cancel it. Do not require creation-only fields such as side or amount.

If any required intent is ambiguous, ask the user before calling a preview tool.

Create

  1. Confirm symbol identity and currency when ambiguous.
  2. Check stock warnings and the relevant market calendar.
  3. Check buying power for a buy or sellable quantity for a sell.
  4. Call preview_order exactly once with the user's stated intent.
  5. Present symbol, side, order type, quantity or amount, limit price when present, currency, estimated value, estimated KRW value, warnings, expiry, and approval_url.
  6. Explain that market-order execution price may move and that a new preview is required after expiry or material changes.
  7. Ask the user to open approval_url and approve the exact preview with the separate credential.
  8. Only after the user reports that external approval is complete, call place_order once with the preview ID.
  9. Report the returned order ID, detailed status, execution data, timestamp, and any warning.

Read the full file on GitHub · 100 lines

Files

What ships with it

1 file 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. 12d ago First seen · 100 lines · 55 tokens per session scan A 1e5637ff6deb

Subscribe to this mod's changes

tossinvest-trading is a skill published in the GitHub repository cha2hyun/tossinvest-mcp (1 stars, last pushed 3d ago), licensed MIT. It adds 55 tokens to every session and 996 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

finance-news-analysis

Analyze current financial news for sentiment, market or sector impact, affected instruments, uncertainty, and risk scenarios without giving trade advice.

Rylaispirit/rylai-codex-hermes-skills · 29 tokens

finance-skills

Route finance requests to capabilities available in the active runtime and report missing market data, tools, credentials, or verification explicitly.

Rylaispirit/rylai-codex-hermes-skills · 28 tokens

trip-planner

Plan a trip step by step: an itinerary plus a running budget that converts every currency into your preferred one, printed as two tables after each change — and a final summary with the budget broken down by category, the average spend per day, and checks for accommodation gaps and missing daily food/misc estimates.

gerodp/hermes-productivity-skills · 65 tokens

document-exports

Generate and TEST downloadable document exports (PDF/CSV) from a Node/Express backend — pdfkit streaming, CSV BOM, cents formatting, and the supertest/pdfkit pitfalls that silently break tests.

pedroiff0/awesome-skills · 44 tokens

money-path-safety

Use when the user wants to: pay/buy/subscribe, receive or spend a bonus/promo code/referral, check a balance or limit, get a refund, or when any logic for deducting/crediting/quotas changes — even if the request does not name money explicitly («give me more minutes», «why was I charged twice», «enter a promo code»).…

oleg494/coding-kit · 139 tokens

portfolio-github-pages

Build and deploy a personal/academic PORTFOLIO as a single-page STATIC site (no build step) to GitHub Pages via the gh CLI. Use when the user asks for a portfolio, landing page, "pagina de portfólio", professional site, or "site estatico pro GitHub Pages", especially with a theme (astronomy/space is a known good…

pedroiff0/awesome-skills · 140 tokens