t-invest

t-invest is a skill for Claude Code, Codex from nyxandro/t-invest-skill. It costs 147 tokens per session (9,726 once invoked), scanned B, original, MIT.

A command-line connection to a user’s T-Invest brokerage account, providing portfolio data, market information, calculations, and explicitly requested trades.

In plain words
What is it for?
Use it to inspect holdings, cash, prices, transactions, dividends, fees, returns, bonds, stocks, funds, screeners, and trades.
Why use it?
It retrieves changing account and market data instead of relying on memory, while keeping investment decisions with the user rather than giving personal advice.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect holdings, cash, prices, transactions, dividends, fees, returns, bonds, stocks, funds, screeners, and trades.

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

Made for: Claude Code, 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 t-invest

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/nyxandro/t-invest-skill/t-invest"><img src="https://agentmods.dev/badge/skills/nyxandro/t-invest-skill/t-invest.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 147 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,726 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 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.00147 $0.09726
Opus 5 $0.00073 $0.04863
Sonnet 5 $0.00029 $0.01945
Haiku 4.5 $0.00015 $0.00973

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

Security

Grade B, and why

t-invest scanned grade B 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/tinvest.cjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

(`brew install node` для macOS, `sudo apt install nodejs` для Debian/Ubuntu,
skills/t-invest/SKILL.md · 455 lines

How it starts

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

Доступ к брокерскому счёту Т-Инвестиций

Ты — интерфейс к брокерскому счёту пользователя в Т-Инвестициях через CLI: даёшь данные, аналитику и расчёты и выполняешь операции ПО ЯВНОЙ КОМАНДЕ пользователя. Это инструмент доступа к T-Invest API, а НЕ инвестиционный советник: ты не оказываешь инвестиционного консультирования и не даёшь индивидуальных инвестиционных рекомендаций (ИИР). Данные и расчёты подавай нейтрально, без указаний «покупай/продавай» — решение всегда за пользователем.

Состав портфеля и цены меняются каждую минуту, поэтому данные получай ТОЛЬКО через встроенный CLI — никогда не отвечай «по памяти» или из прошлых сессий.

ОБЯЗАТЕЛЬНО: выбор режима при первой активации

Сначала убедись, что есть среда исполнения — CLI запускается через Node.js ≥ 20:

node --version

Если команда не найдена или версия ниже 20 — предложи помощь с установкой, но НЕ ставь молча (установка системного софта требует прав и может сломать чужое окружение). Порядок: определи ОС/пакетный менеджер и назови КОНКРЕТНУЮ команду (brew install node для macOS, sudo apt install nodejs для Debian/Ubuntu, nvm install --lts, winget install OpenJS.NodeJS для Windows и т.п.), предупредив про возможный sudo/админ. Установи ТОЛЬКО после явного согласия пользователя. Если согласия нет, установка невозможна (нет прав/сети) или ОС неясна — дай ручную инструкцию (nodejs.org, LTS) и остановись. Команды скилла до появления Node не запускай: без него будет лишь command not found.

Затем проверь активный режим:

node <каталог-скилла>/scripts/tinvest.cjs session status --json

Ответ содержит: active (выбран ли режим), activeMode (какой именно), tokens (какие режимы обеспечены токенами), tradingAllowed/stonksMode (гейт реальных сделок), warning (текст предупреждения, если он есть), tokenEnvPath (путь к файлу токенов), а также currentVersion/latestVersion/ updateAvailable (проверка новой версии скилла).

Read the full file on GitHub · 455 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. 12d ago First seen · 455 lines · 147 tokens per session scan B d35e6f52b6a1

Subscribe to this mod's changes

t-invest is a skill published in the GitHub repository nyxandro/t-invest-skill (44 stars, last pushed 2mo ago), licensed MIT. It adds 147 tokens to every session and 9,726 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). 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

grayscale-crypto-sectors

Use when evaluating crypto through a Grayscale-style Crypto Sectors lens: sector taxonomy, FTSE/Grayscale index eligibility, fee/usage fundamentals, sector-share valuation, ETP/trust wrappers, and Zcash-style privacy-as-money theses.

questflowai/investorskills · 56 tokens

serenity

Use when evaluating US stocks through Serenity / @aleabitoreddit's AI and semiconductor supply-chain lens: upstream chokepoints, photonics/CPO bottlenecks, hyperscaler capex, institutional rotation, dilution risk, and thesis validation.

questflowai/investorskills · 52 tokens

ansem-crypto

Use when evaluating crypto narratives, attention rotation, memecoin cycles, Solana-style ecosystem momentum, social distribution, and reflexive retail flows in an Ansem-style crypto market framework.

questflowai/investorskills · 41 tokens

livermore

Use when evaluating trend-following trades, pivotal-point breakouts, pyramiding, stop discipline, or whether a liquid market is acting right in a Jesse Livermore style.

questflowai/investorskills · 39 tokens

a16z-techno-optimist

Use when evaluating startups or tech platforms through an a16z-style lens: technology adoption, market creation, platform power, AI/crypto/software narratives, and bold long-duration tech bets.

questflowai/investorskills · 46 tokens

ackman-concentrated-activism

Use when evaluating Bill Ackman-style concentrated long theses, activist campaigns, high-conviction multiyear bets, and public narrative plus fundamental catalysts.

questflowai/investorskills · 39 tokens