I built a custom TradingView indicator with Claude Code... & Fable 5. It's called the Storm Gauge and is built off a real quant trading strategy. I open-sourced the full code on GitHub. Free to install, free to fork, yours to improve. Here's how to install a quant indicator on your TradingView chart: What it actually is The Storm Gauge is a live implementation of the GARCH model, a Nobel Prize-winning volatility framework that real quant desks run daily. It forecasts how "violent" tomorrow's market could be by combining three inputs: an asset's baseline volatility, yesterday's shock, and where volatility was already sitting before that shock happened. It doesn't predict market direction. Instead, it measures risk, in real time, on your actual chart. How to install it Method 1. Plugin command Open the GitHub repo: Find the installation section, copy the command, and paste it into Claude Code. It runs the plugin install automatically. Method 2. Manual config Open garchmethod.md in the repo, copy the entire file, and paste it into Claude Code. It fetches the skill files directly and verifies the strategy for you. (you only need one method; I'm just showing both) Getting it onto your TradingView chart Inside the repo, there's a Pine Script folder. Open it, copy the entire file. Go into TradingView's Pine Editor, paste it in, hit Enter, and refresh. That's it. The Storm Gauge now runs live on your chart as a real number. Once it's installed, just talk to it: → "What's the volatility forecast on Bitcoin?" → "Explain what the current volatility forecast means on $BTC and how it should impact my position sizing" → "Help me size my S&P500 position according to current market volatility" Does it actually work? I backtested the same EMA cross strategy two ways across 15 years of BTC data. Same entries, same exits. → Fixed position sizing: $17,957 final equity → Storm Gauge (GARCH) sizing: $21,205 final equity Fewer drawdowns, less risk, better result. Full breakdown of the entire build process in my recent article - pinned on my profile.show more

Miles Deutscher
56,625 просмотров • 1 месяц назад
I used Claude Code to build and automate a... legitimate quant trading strategy. The framework I built is based on the GARCH model, and it's one of the most-used trading models by real quant desks. The crazy thing is, I just completely open-sourced the GitHub repo. It contains: a Pine Script indicator for TradingView that loads the quant strategy in real time, complete installation instructions, a reusable Claude Skill & more. This is probably the most-valuable thing I've shared on 𝕏 in 2026. →show more

Miles Deutscher
87,456 просмотров • 1 месяц назад
if you use claude code, this will save you... real money. the problem: every time you make an edit, your ai rereads the whole codebase to figure out what changed. tens of thousands of tokens, every turn, for context it already had. this repo fixes it. it’s called code review graph, and it just maps your entire codebase: every file, every function, every connection laid out so you can see the actual shape of your project how to set up (2 min): 1. pip install code-review-graph 2. code-review-graph install - auto-configures Claude Code, Cursor, Codex, Gemini CLI + more 3. code-review-graph build change one function, and it traces exactly what that touches... every caller, every dependent file, every test. your ai only reads what's affected, not the whole repo. and the savings are wild. a task that used to burn ~100,000 tokens (about a dollar) now runs closer to a penny.show more

Alvaro Cintas
75,323 просмотров • 1 месяц назад
Claude Mobile starts the idea... Ghostty finishes it I... basically use Claude Mobile as a notepad now. Whenever something comes to mind, I open the app, pick a repo, and ask Claude to start exploring. Then I just let it run while I go on with my day. Later I jump into Claude Desktop and I’m right back in the same session, with context, structure, and a clearer shape of the idea. I tweak a few things to set up the coding phase. Finally, one click to Ghostty (video), open a couple of worktrees, and start working on the PR. IMPORTANT: when you move to Ghostty, it must be the exact same repo you started on mobile, otherwise the --teleport command will failshow more

Daniel San
67,891 просмотров • 7 месяцев назад
SOMEONE JUST VIBECODED A PROGRAM THAT DOWNLOADS ANY WEBSITE... ON THE INTERNET every $35,000 agency site is now yours to rip clean for $0 fully open source, save it before it's gone you paste one url and it does the rest: → crawls the entire site → grabs every file: html, css, js, images, even the fonts → rewrites every link to run fully offline → packs it all into a downloadable zip runs entirely in the browser, nothing to install or sign up for point it at any site you admire and the whole front-end is yours: → clone it → archive it before it dies → crack open exactly how it was built the thing agencies gatekeep for five figures is now a 10-second download bookmark this oneshow more

Argona
126,379 просмотров • 2 месяцев назад
I still don't understand why everyone is not using... this yet. Thanks to it, a year ago I increased my income to 17,000 dollars a month Andrey Karpathy, co-founder of OpenAI, published a simple idea that got 16 million views: stop using AI to write code, use it to build a second brain You point Claude Code to a folder, drop any source in there (an article, transcript, PDF) and Claude reads it, links it, and saves it into a living wiki of everything you know. It compounds like interest: the more you feed it, the smarter it gets Here is the gist: Install Obsidian, create a vault, open it in Claude Code Paste the file with Karpathy's wiki idea and tell Claude to build it Claude creates three folders: raw for sources, wiki for its pages, CLAUDE which runs everything Drop any source into raw and say "ingest this" Ask questions across everything, forever Five minutes to set up, and you never start with an empty chat again The full step-by-step guide is in the article. Save to bookmarksshow more

Bober_smart
2,813,808 просмотров • 14 дней назад
How to build a viral Web3 app in an... afternoon using the ChainGPT AI skill for Claude Code. No coding experience required. I built Roast My Wallet. Paste any Ethereum wallet address, get a savage AI-generated roast of your trading history, a Degen Score out of 100, an on-chain report card, and three AI-generated NFT portraits. Here's exactly how it came together. Setup (3 minutes): 🔸Install Claude Code at 🔸Run /plugin install ChainGPT-org/chaingpt-claude-skill 🔸Get an API key at 🔸Type /chaingpt and describe what you want to build What the skill actually does: The ChainGPT skill doesn't just give you starter code. It knows the entire API. Every endpoint, every parameter, every credit cost, every error code. When I asked it to build the roast feature, it knew to call the LLM endpoint, how to stream the response back to the browser in real time, and how to handle errors automatically. I didn't look up a single thing. How it works under the hood: 1. Pulls real ETH balance and transaction count from the Ethereum blockchain 2. Feeds those numbers into ChainGPT's LLM and streams the roast back live 3. Calculates a Degen Score from your tx count vs balance ratio 4. Generates a report card with letter grades across Trading, Patience, Risk, Diamond Hands, and NGMI 5. Uses the roast text to generate three custom NFT portraits in parallel via VeloGen 6. Packages everything into a downloadable PNG card ready to post 7. Every feature came from describing what I wanted: 8. "Make the API key server-side." Done. 9. "Add an animated arc gauge for the degen score." Done. 10. "Generate NFT portraits using the roast text as context." Done. I never wrote a function or debugged an API response. I described outcomes. The ChainGPT skill handled the rest. If you can describe what you want to build, you can build it. Get your API key. Install the skill. /plugin install ChainGPT-org/chaingpt-claude-skill Anyone can build with ChainGPT AI!show more

ChainGPT
29,323 просмотров • 3 месяцев назад
Claude Code can now go find the right skill... itself, instead of you searching for one. it's called find-skills. a small package that plugs into Claude Code, and instead of you hunting for rest, you just describe the task and it searches the whole open skills ecosystem, finds the ones that fit, and installs them for you. > tell it what you're trying to do, in plain english > it scans the skills registry and maps your task to real skills > it pulls the right ones in and sets them up half the time you don't even know a skill exists for what you're doing. now you don't have to.show more

Alvaro Cintas
38,829 просмотров • 20 дней назад
I have a little robot that unlocks my door... from the inside (so I don't have to carry a key) The problem was it wouldn't calibrate on my door. It was designed for 90° turns, but my lock only needs 15° In the past, this would've been a showstopper But I asked AI if it could help... At first, it suggested I snoop on the bluetooth connection to figure out the protocol Then it realized that we could probably just decompile the app's SDK and read its source code. That worked! It told me to switch to my mac and run some python for it. Unfortunately, it couldn't run the scripts directly because Claude Code Desktop didn't have bluetooth permissions, but my shell did. Thinking about it now, I probably should've used Claude Code or Codex in the Terminal. Anyways, it took a while, lots of backs and forths, we had some misunderstandings, it was massively overcautious in the beginning, but we finally got the lock calibrated! Feels like magic! I threw the repo up on github in case anyone in the future (ie me) runs into a similar issue – hopefully it can save them some timeshow more

Steve Krouse
38,646 просмотров • 1 месяц назад
My Claude bot finished first night profit $2,314 I... built the script in 4 hours and it was worth it Average winrate 70% This is not clickbait it is a story about a 5 minute BTC script My strategy + Claude = all you need Wallet: Copytrade: Here is the full strategy: 5 Minute BTC and ETH Micro Arbitrage The system trades short 5 minute Bitcoin and Ethereum contracts In fast markets temporary mispricings appear when YES + NO drops below one dollar The bot scans in real time and captures the spread the moment it appears Speed over emotion When volatility spikes and manual traders hesitate the system reacts automatically Orders execute instantly without delay hesitation or emotional bias By the time most traders understand what happened the opportunity window is already gone Automation compounds the edge Instead of chasing large wins the strategy captures small spreads repeatedly High frequency execution allows the bot to run continuously stacking micro advantages into meaningful returns over time All that is left is refining the code deploying at scale and letting it runshow more

winkle.
171,392 просмотров • 5 месяцев назад
A lesson for every Polymarket bot developer: I built... a strategy that looked perfect on paper. Backtested it. Looked like a winner. Almost went live. Then i actually measured real costs. Strategy was dead before the first trade. And this is what bot building on Polymarket actually looks like. Here is what happened (and what you MUST know): Backtested mean reversion on crypto dips. SOL came back at +44% return and 70.5% win rate. Beautiful clean curve. Looked ready to ship. Then i measured real round-trip costs on SOL flash dips. Backtest assumed 0.45% in fees and slippage. Reality was 1.44%. Strategy stops working at 0.70%. Starting again. But the lesson was worth more than any profit the strategy could have made. Here is what i actually learned: Taking a dip with a market order means you eat the spread the dip just created. The volatility making your signal is the same volatility destroying your fill. You see the opportunity. You enter. You already lost. But resting a limit order below market and letting the dip come to you? You collect the maker rebate instead. Same thesis. Completely opposite execution. One bleeds money, one prints it. That one realization changed how i think about bot strategy entirely. 180 strategies tested to get there. 179 dead. That is not failure. That is how you find the 5 that actually work. Building a bot on Polymarket is not about finding a magic strategy. It is about eliminating every wrong answer until only the right one is left.show more

Oracle Boar
14,379 просмотров • 4 месяцев назад
New feature in Claude Code 2.1.14 just dropped! You... can now search and install plugins from the marketplaces installed in your current Claude Code session. This is huge if you’re building plugins on top of Claude Code’s marketplace layer (Skills, Agents, Hooks, etc). How it works: - Run /plugin - The official Claude marketplace is installed by default - Use the search bar to find the plugin you want - Select one or multiple plugins with space, then press i to install - Go to the Installed tab to browse and enable them With the exponential growth of Skills and Agent-based components running in the CLI, improving plugin discoverability is a big win. Pretty sure more marketplace-related features are comingshow more

Daniel San
40,994 просмотров • 7 месяцев назад
I genuinely don't understand why everyone isn't using this... yet Andrej Karpathy, a co-founder of OpenAI, posted a simple idea that hit 16 million views: stop using AI to write code, use it to build a second brain. You point Claude Code at a folder, drop in any source, an article, a transcript, a PDF, and Claude reads it, links it, and files it into a living wiki of everything you know. It compounds like interest, the more you feed it, the smarter it gets. Here's the whole thing: > Install Obsidian, create a vault, open it in Claude Code > Paste Karpathy's wiki idea file and tell Claude to build it > Claude makes three folders: raw for sources, wiki for its pages, a CLAUDE.md that runs it > Drop any source into raw and say "ingest this" > Ask questions across everything, forever Five minutes to set up, and you never start from a blank chat again. Full step-by-step guide with Claude and Obsidian, link below. Bookmark thisshow more

Ridark
6,981,577 просмотров • 2 месяцев назад
Claude Fable 5 orchestrating Grok 4.5 is now my... favorite real workflow. all you need is this free Claude Code plugin that makes Grok the default implementer. Fable writes the specs and reviews every diff, Grok 4.5 does the typing through the Grok CLI. - Grok handles the volume, Fable handles the judgment - Every diff gets cross-vendor review for free - Specs run as parallel agents when they're independent I've been testing it for a few days and the part that sold me is watching Fable refuse to write code. It sends specs down, judges what comes back, and that's it. setup: 1. claude plugin marketplace add DannyMac180/fable-advisor && claude plugin install fable-advisor 2. Install the Grok CLI from then grok login 3. /model fable It's open source, so you can read the agent files and tweak the routing however you want.show more

Alvaro Cintas
100,558 просмотров • 1 месяц назад
🚨 Anthropic just made Claude Code remote-controlled. Meet Channels.... You can now: → Connect a persistent local Claude session directly to a Discord or Telegram Bot → Message tasks to your bot on the go → Come back to finished code 🔥 Here’s how to set it up: 1️⃣ Create a bot (via Telegram’s BotFather or the Discord Dev Portal) and copy the token 2️⃣ Inside Claude, run /plugin install telegram@claude-plugins-official (or discord) 3️⃣ Configure the token and relaunch your session with the --channels flag 4️⃣ DM your new bot, grab the 6-character code, and pair it to your session! Message the bot to fetch files, read history, and execute code locally while you are on the go. The flexibility is unmatched. Time to spin up your bot 👀show more

Charly Wargnier
14,611 просмотров • 5 месяцев назад
On your open perpetual position can become an NFT... and live in your wallet. You open a position like normal than mint it. The program issues a token 2022 nft, that points to your exact position. Normally your open position lives inside the protocol. With Percolator Trade your able to wrap it into an NFT that sits in your own wallet. A real, ownable object instead of a line in a dashboard. Because it’s a token, it moves like one. Send the NFT to another wallet and the position goes with it. Whoever holds the NFT owns the trade. One NFT = one position If you burn it, your back to holding the position directly. That’s the composable part, a position use to be stuck inside one account. Because it’s a token, it can now be sold OTC or used by anything that speaks tokens. Why does it matter? Because the position is bound to the NFT, it can’t be drained out from under whoever holds it so there is no middleman that holds your position. The NFT does, and the NFT is yours. One important safety detail; transfers run through a token 2022 hook that checks the positions health first, so it can’t be handed off in a broken state & the NFT layer is a separate program so it can never touch the funds the core engine holds.show more

Percolator
12,359 просмотров • 2 месяцев назад
Today we're launching Goose Ads in Claude. This is... a skill /goose-ads that lets anyone make high-performing ad creatives directly in Claude, Claude Code, Cowork, or Codex. It finds the ads companies are already paying real money to run and remakes them for your brand. Accurate logo, messaging, and assets. One prompt. Here's how it works: 1. Install: npx gooseworks install --all 2. Run: /goose-ads create ads for my brand [your-website] 3. Pick the templates you like That's it. Winning ad creative in minutes, inside Claude. But this is just the start. We open-sourced 100+ growth skills that some of the fastest-growing startups run every day. Ads, content, competitor research, GTM, SEO, all of it. Comment Goose and I'll DM you all 100+. For freeshow more

Soham Mehta
258,581 просмотров • 2 месяцев назад
Today's real crypto news killed me in a video... game 💀 This is Crypto Crash. I built it this afternoon with the ChainGPT AI skill for Claude Code. It's a Chrome dino-style runner, but every system in it is plugged into a live source. The ground you run on is BTC's actual 24-hour price chart. Hills are the pumps. Valleys are the dumps. When the market is bearish, you literally run downhill toward the FUD. The sky and the world's color palette flip based on the market's emotional state, scored 0 to 100 by the ChainGPT LLM reading today's headlines. Anxious days look like an orange storm. Euphoric days look like a parade. The obstacles are goblins, ghouls, wolves and a flying bird. Each one carries a real bearish headline pulled live from the ChainGPT News API. When one hits you, the game-over screen tells you exactly which piece of FUD ended your run. Three ChainGPT capabilities, woven into a single experience: the LLM, the News API, and live price data. The skill stitched them together in a single afternoon. I just had the idea. Here's what's interesting beyond the game itself. Web3 products have always had access to live data. What's new is that AI can now turn that data into experiences, environments and feedback loops on demand, with one prompt. ✅ A trading dashboard that gets more aggressive when fear spikes. ✅ An NFT marketplace whose homepage matches today's mood. ✅A token site that visibly reacts when its chain is under attack. ✅A streamer overlay that changes with every breaking headline. The plumbing is done. The hard part now is deciding what you build on top of it. Open Claude Code. The skill is one install away. /plugin install ChainGPT-org/chaingpt-claude-skillshow more

ChainGPT
25,537 просмотров • 3 месяцев назад
EVERYONE'S TRYING TO SOLVE AI TEAM MEMORY WITH SERVERS,... VECTOR DATABASES, AND ORCHESTRATION PLATFORMS. THIS OPEN SOURCE TOOL DOES IT WITH ONE FOLDER IN YOUR REPO. Every dev on your team runs Claude Code. When one agent screws something up, the rest have no idea. They just repeat the mistake next week. It's called teamlore. When your agent gets corrected or breaks something, it writes a small lore file into a .lore/ folder. That file ships with your PR, gets reviewed like normal code, and after merge every teammate's agent automatically recalls it when they touch that part of the repo. No server. No datab No accounts. No SaaS bill. Just a folder in git. Which means code review catches bad lessons before they poison the team, git blame tells you when a rule was added and why, and the whole thing works offline. One command to install: npx teamlore init Companion command: npx teamlore scarmap. Turns your team's history of mistakes into a visual heat map of the codebase. Every red zone is a place your team has been burned before. Which means every red zone is a place your agents should slow down. Here's the wildest part. The teamlore repo's own .lore/ folder contains every mistake Claude made while building teamlore itself. Dogfooded end-to-end. You can literally open the folder and read the receipts. The author's public invitation: "Would love for someone to try and break it." Available on npm. Repo just launched. 100% open source. (link in the comments)show more

Harman
35,017 просмотров • 1 месяц назад
THAT PRETTY 3D QUANT CHART IS JUST A WEIGHTED... SUM OF SIGNALS. THEY'VE GATEKEPT IT FOR 40 YEARS That gorgeous formula on screen is doing one simple thing. It scores every stock in a universe on a blend of signals, then goes long the strongest and short the weakest. That is the entire quant game, hiding inside one Sigma. The signals even have names. Free cash flow yield and earnings yield for value, QMJ profitability and Piotroski F-score for quality, plus momentum, mean reversion and volatility. Minara ships 500+ of these factors and lets you blend them into that exact composite by typing one sentence. The PhD math is real. The wall in front of it is gone. I ran this exact cross-sectional composite on 30 stocks & posted every metric in the article. Check it ↓show more

sopersone
33,919 просмотров • 1 месяц назад