Loading video...

Video Failed to Load

Go Home

Most AI code review tools look at one repo at a time. But the bug usually isn't in the code that changed. It's in what that change quietly breaks three repos away. Qodo just shipped Cross Repo Review to solve this. I tested it on my own repos. Here's...

13,481 views • 1 month ago •via X (Twitter)

0 Comments

No comments available

Comments from the original post will appear here

Related Videos

An Anthropic engineer watched my screen from the next table at a cafe in SF. "Are you running Claude against live prediction markets right now" I told him yes. Then I showed him the stack. 214 trades. 74% win rate. +$9,437 in 19 days. Here's what actually happened: I gave Claude two repos and a simple job. First repo: A full market archive. Wallet behavior, entries, exits, and timing across the board. Second repo: Three commands. 500+ markets. No API key. Just a clean way to score the board fast. The system does not try to predict the world. It tries to find which wallets consistently exit better than the crowd, isolate the pattern, and only fire when the same structure shows up again. Main filter: captured value / expected value > 0.70 If a wallet wins often but leaks the move on exit, it gets ignored. If it captures most of the move and cuts losers fast, it becomes signal. Sizing uses Kelly: f* = (p*b - q) / b That is what stops the terminal from apeing into weak edges. Most of the time it does nothing. No edge - no position. Three trades from the run: > AMD Xilinx - entered 52c. Model said 59c. Closed +7c in 2h40m. > Artemis launch - entered 63c. Model said 85c. Closed +22c in 5h10m. > Derecho MW - entered 71c. Model said 87c. Closed +16c in 1h50m. When he saw the repo links and the live terminal, he stopped talking for a second. Then he said: "We tested something close to this internally." That was the whole joke. The data is public. The repos are public. The market is public. But most Polymarket traders still trade headlines, hold too long, and call it conviction. Polymarket does not reward the smartest story. It rewards the cleaner exit.

st1ne

171,666 views • 4 months ago

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.

Miles Deutscher

56,355 views • 27 days ago

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)

Harman

34,614 views • 17 days ago

An Anthropic engineer watched me trade from across the table at a WeWork in SF I had my laptop open. Four agents running. Green charts. Live trades scrolling. He was on a Zoom call. Muted himself. Walked over. "Are you running Claude against live prediction markets right now" I told him. Claude Code. Two repos. $25 a month. He pulled up a chair. "I helped build the model you're using. I've never seen anyone wire it to live trades like this" I showed him the dataset. 86 million trades. Every wallet. Every entry. Every exit. He stared at it. "We tested this internally. You give Claude a dataset and don't tell it what to look for. It finds the winning wallets. Then it finds WHY they win. Then it copies the pattern. We never shipped it because legal killed it" I told him I did exactly that. One weekend. Claude Code found the exit logic on its own. Top wallets exit before resolution 91% of the time. They capture 86% of expected value. Cut losers at 12%. Everyone else captures 58% and holds to 41%. "That's the exact finding from our internal eval. Except ours took a team of eight and four months" I showed him the scanner. Three commands. 500+ markets. No API key. Claude scores them all in 20 minutes. "You're using our model to beat markets we're not allowed to touch. On infra that costs less than my lunch" My setup: Claude API - $20/mo VPS - $5/mo poly_data - free polymarket-cli - free 214 trades. 74% win rate. +$9,400. 19 days. I showed him the full breakdown. Every repo. Every command. Every dollar. Copytrade here: He read it for five minutes. Then looked up. "If my manager sees this he's going to lose his mind. You just proved our model works in production and we've been sitting on it for a year" He DM'd me that night. "Take this down before someone at Anthropic finds it" Too late.

Lunar

224,021 views • 4 months ago