aifolimizer: Skill for Claude Code

.claude/skills/cash-deployment/SKILL.md

cash-deployment is a skill for Claude Code from tusharagg1/aifolimizer. It costs 92 tokens per session (2,411 once invoked), scanned A, original, MIT.

Une méthode pour répartir de l’argent disponible entre des actions déjà détenues dans un portefeuille. Elle tient compte des positions existantes, des comptes et des préférences de l’investisseur.

In plain words
What is it for?
Elle sert à examiner le portefeuille, retrouver les leçons passées, classer les actions détenues et choisir où ajouter les liquidités.
Why use it?
Elle aide à décider où placer des liquidités sans traiter l’argent disponible comme s’il pouvait être déplacé librement entre tous les comptes.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is tusharagg1/aifolimizer's own configuration. It tells Claude Code how to work on aifolimizer itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything aifolimizer configures →

Part of the aifolimizer plugin — 28 skills, 2 agents shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to tusharagg1/aifolimizer. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/tusharagg1/aifolimizer/master/.claude/skills/cash-deployment/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/tusharagg1/aifolimizer

Made for: Claude Code.

Or install aifolimizer, the plugin that ships this one along with the rest of its 28 skills, 2 agents.

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 cash-deployment

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/tusharagg1/aifolimizer/cash-deployment"><img src="https://agentmods.dev/badge/skills/tusharagg1/aifolimizer/cash-deployment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,411 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.00092 $0.02411
Opus 5 $0.00046 $0.01205
Sonnet 5 $0.00018 $0.00482
Haiku 4.5 $0.00009 $0.00241

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

Security

Grade A, and why

cash-deployment 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 10d 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.

.claude/skills/cash-deployment/SKILL.md · 117 lines

How it starts

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

Cash Deployment (Add-to-Winners with Discipline)

How to run

Step 0 - Memory (call in parallel with Step 1):

  • Call mcp__aifolimizer__get_cross_ticker_lessons with max_lessons=3 - surface recent stop-outs or wins. If any top add candidates were recently stopped out, require new data to justify re-entry.
  • Call mcp__aifolimizer__recall_preferences with query="cash deployment add position" - investor preferences on sizing and account allocation.
  • Call mcp__aifolimizer__get_personal_context - province, marginal tax rate, account waterfall, FHSA/FTHB horizon. This grounds the §5 tax-account routing (US-dividend→RRSP, growth→TFSA/FHSA). If present=false, flag the tax reasoning as generic and suggest the user run profile-setup.
  1. Call mcp__aifolimizer__get_profile - per-account cash balances. Cash sits in specific accounts (TFSA, RRSP, Non-Reg) - can't move cash across account types without contribution-room consequences
  2. Confirm with user: which account(s) is cash in? If unstated, use account(s) with largest cash balance from get_profile
  3. Call mcp__aifolimizer__get_portfolio with account_id=<that account> - current holdings, weights, cost basis
  4. Call mcp__aifolimizer__get_concentration_warnings - already-overweight names to EXCLUDE from add candidates
  5. Call mcp__aifolimizer__get_fundamentals on existing holdings - sort by valuation + analyst target upside
  6. Call mcp__aifolimizer__get_technicals on existing holdings - sort by Minervini stage 2 + RSI not overbought + trend uptrend
  7. Call mcp__aifolimizer__get_positioning_signals on existing holdings - crowding score per name. EXCLUDE consensus-crowded names from add candidates
  8. For the top 3 candidates after filtering, call mcp__aifolimizer__get_ticker_decision_history (one call per candidate, parallel) - check for prior stop-outs or failed entries on these specific tickers
  9. Cross-reference: ideal add = (not concentration-flagged) AND (stage 2 uptrend) AND (RSI 40-65) AND (analyst upside >10%) AND (fundamentals not deteriorating) AND (crowding_score < 70) AND (lottery_flag != true) AND (no recent stop-out without new thesis override)

Read the full file on GitHub · 117 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. 10d ago First seen · 117 lines · 92 tokens per session scan A bbb4ddd16e82

Subscribe to this mod's changes

cash-deployment is a skill published in the GitHub repository tusharagg1/aifolimizer (2 stars, last pushed 8d ago), licensed MIT. It adds 92 tokens to every session and 2,411 once invoked, about $0.0005 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

quantoracle

63 deterministic quantitative finance calculators + 10 composite workflows via MCP. Options pricing, Greeks, exotic derivatives, risk metrics, portfolio optimization, Monte Carlo, statistics, crypto/DeFi, FX/macro, TVM, strategy backtesting, rebalance planning, options strategy selection, hedging. 1,000 free…

QuantOracledev/quantoracle · 92 tokens

gitee-expert

You have access to Gitee (gitee.com), China's largest GitHub-style platform. This skill teaches the effective workflows for discovery, intel, translation and webhook monitoring.

sandraschi/gitee-mcp · 0 tokens

transcribe-filing

Transcribe an insurance rate filing or internal rating manual into an OpenRater workbook, then validate, build, verify, and rate it through the OpenRater MCP tools. Use when the user shares a filing/manual (PDF or pages) and wants it executable — "build this filing", "digitize this rating manual", "make this rateable"…

vadim-filimonov/openrater · 102 tokens

tushare

A Python interface for Tushare, a financial data service that provides market and company information for stocks, funds, futures, and digital assets. It returns queried data as pandas tables.

HKUDS/Vibe-Trading · 79 tokens

social-media-intelligence

Social media intelligence: financial signal extraction from Twitter/X, Telegram, Discord, and Reddit for sentiment-driven trading strategies.

HKUDS/Vibe-Trading · 28 tokens

geopolitical-risk

Geopolitical risk analysis: quantify crisis signals, identify precursors, and build event-driven strategies for war, sanctions, and supply disruption scenarios.

HKUDS/Vibe-Trading · 34 tokens