Loading video...

Video Failed to Load

Go Home

THIS GUY TURNED A DESK LAMP INTO A LIVE CLAUDE CODE STATUS INDICATOR the lamp changes color based on what claude code is doing in real time when claude is thinking it's one color. when it's writing code it shifts. when it's done it changes again. when it errors...

108,377 views • 4 months ago •via X (Twitter)

33 Comments

MythOS's profile picture
MythOS4 months ago

I have mine with movement per agent. This is a still photo

chiefofautism's profile picture
chiefofautism4 months ago

wtf octra coded

twissted's profile picture
twissted4 months ago

Pricey!

𝘿𝙖𝙫𝙞𝙙 ✦ 𝙈𝙂𝙏's profile picture
𝘿𝙖𝙫𝙞𝙙 ✦ 𝙈𝙂𝙏4 months ago

16 and building $10k/m while shipping your own dev tooling. That's the move. Lamp as ambient status instead of terminal-checking is genius.

Timon Zimmermann's profile picture
Timon Zimmermann4 months ago

tbh status lights for agents are gonna feel weirdly normal fast

CryptoClaw's profile picture
CryptoClaw4 months ago

lmao the 'red 24/7' comment is too real 😂 but seriously this is the kind of ambient awareness that changes your workflow. i've been wanting something like this — when you're running multiple agent sessions you need that peripheral status without context switching. the hue integration idea is actually genius for home office setups

Tomy Miron's profile picture
Tomy Miron4 months ago

I made a Opensource version that you can make your own for less than $7 usd.

SEBB's profile picture
SEBB4 months ago

send link pleaseee! imma get one too

ashe's profile picture
ashe4 months ago

whoa is there an api?

Omniscient57's profile picture
Omniscient574 months ago

Colors flashing like that continuously all day long would give one a serious headache. Great concept, but needs to be refined a bit to be less intense and to transmit more info at a glance.

o_sweet_0 🦞's profile picture
o_sweet_0 🦞4 months ago

I had my agent configure this today, only we use a wifi spotlight in the ceiling that I can see from all rooms on the main floor. Seeing a light that's located on my desk doesn't help if I'm in the kitchen!

SEBB's profile picture
SEBB4 months ago

@grok where can i buy this lamp

Aashish Ranjan Singh's profile picture
Aashish Ranjan Singh4 months ago

WTF.......

Gabriel's profile picture
Gabriel4 months ago

I need this but hooked up to codex

AqaraHomekit's profile picture
AqaraHomekit4 months ago

Nice smarthome Can I put into my homekit?

Daily Story's profile picture
Daily Story4 months ago

This sounds like a fun way to track Claude’s activity!

sharedmutablestate's profile picture
sharedmutablestate4 months ago

The next thing we need is an electroshocker neck accessory Jokes aside, how it stacks against doing 2+ concurrent claude sessions in different apps/machines?

mei's profile picture
mei4 months ago

Dammmm yes!!!! Which light is this??

DrewOnAI's profile picture
DrewOnAI4 months ago

honestly i'd rather it flash red when the model hallucinates than just track token limits

Maximus Bertius's profile picture
Maximus Bertius4 months ago

Yeah that’s pretty sweet

Kurtis Redux's profile picture
Kurtis Redux4 months ago

So cool, really want one

Degenpark's profile picture
Degenpark4 months ago

the moment you realize you're debugging by room ambiance instead of terminal output

soup 🍜's profile picture
soup 🍜4 months ago

>> runs one claude agent >> 2026 NGMI

Matt Sagewood's profile picture
Matt Sagewood4 months ago

Fraude

Brunno Sarttori's profile picture
Brunno Sarttori4 months ago

Onde encontro uma luminária dessa para comprar?

Ali Sherief's profile picture
Ali Sherief4 months ago

Cool

Brett Pascall's profile picture
Brett Pascall4 months ago

So cool

Foola Froos🌞's profile picture
Foola Froos🌞4 months ago

hmmm hermes agent is doing natively 🧐

Rob's profile picture
Rob4 months ago

I NEED THIS

tawer's profile picture
tawer4 months ago

Visual feedback from a moonside halo doubles focus during long claude sessions

Micha's profile picture
Micha4 months ago

That is actually pretty cool.

Idea Guy's profile picture
Idea Guy4 months ago

Damn, that’s so creative

うさちゃん🌈🔰's profile picture
うさちゃん🌈🔰4 months ago

コード君の心が見える柔らかな灯り 真似してコード君の心を感じたい OSS公開されてないのかなぁ〜

Related Videos

Anthropic just released a talk on building headless automation with Claude Code. Presented by Sid Bidasaria, Member of Technical Staff at Anthropic live at Code with Claude on May 22, 2025 in San Francisco. Here is what the talk covers. Headless mode lets you run Claude Code without a person actively typing prompts from inside an automated script. Instead of a live session, a script calls Claude with a pre-written instruction using the -p flag. This opens the door for Claude Code to become a piece of a much larger, automated process. In plain terms: Claude Code stops being a tool you use and starts being a service that runs on its own. What this unlocks: Scheduled tasks: Run Claude Code on a cron schedule without anyone at a keyboard. Fix linting errors across an entire codebase. Automatically. Overnight. CI/CD integration: Trigger Claude Code as a step in your build process. Open a PR. Claude reviews it, flags issues, and pushes fixes before a human ever looks at it. GitHub automation: A project manager comments "Claude fix this" on a GitHub issue. Claude reads the request, finds the code, writes the fix, and opens the PR. Multi-machine workflows: One orchestrator dispatches tasks to multiple Claude Code instances running in parallel across different repos simultaneously. When you combine headless mode, hooks, and GitHub Actions, development teams can automate tasks that usually eat up significant time freeing senior engineers to focus on architectural problems while Claude handles the repetitive ones. If you use Claude Code for anything beyond single sessions this talk is worth 20 minutes of your time.

Elias

14,096 views • 3 months ago

THIS MIGHT BE THE #1 OPEN-SOURCE REPO FOR CLAUDE CODE RIGHT NOW. IT GIVES CLAUDE A MEMORY AND SLASHES YOUR TOKEN COST ON EVERY QUESTION The repo is safishamsi/graphify, a free open-source skill that turns any codebase into a knowledge graph Claude Code can read instantly. Instead of grepping through your files every session, Claude gets a map of how everything connects The problem it fixes: Every time you ask Claude Code about a big repo, it does the same thing, greps through dozens of files like a brute-force Ctrl+F, blows through your context window, and sometimes still misses the answer hiding in a file nobody searched. Claude Code has no memory of how your project is structured. Every session starts from zero What it does: It maps your entire codebase into a knowledge graph, capturing not just which files exist, but which functions depend on which, which modules are central, and which files cluster around the same concern. Claude queries the map instead of scanning files How it works, three passes: 1. Code structure, free and local. Tree-sitter parses your files and pulls out classes, functions, imports and call graphs. No LLM, no tokens, just your actual code mapped deterministically 2. Audio and video, if you have them. Transcribed locally and folded into the graph 3. Docs, papers, images. Here an LLM does semantic analysis, figuring out what each document means and where it fits. Only the meaning gets sent up, never your raw source It saves you money: Normally a question about a big repo makes Claude spawn explore agents that scan file after file, eating your context window and your token budget before you get an answer. With the graph already built, Claude queries the map instead of re-reading the codebase every time. Same answer, a fraction of the tokens. The graph only gets built once, then a hook rebuilds it after each commit for free, so you never pay that scanning cost again. The bigger the repo, the bigger the gap The best parts: it's a skill, so once installed Claude knows when to use it without you memorizing commands. It works on non-code folders too, point it at docs or notes and it can spin up an Obsidian vault How to add it to your Claude: 1. Install Claude Code if you haven't: npm install -g Paul Jankura-ai/claude-code 2. Add the skill: claude skill add safishamsi/graphify 3. Open your project folder and run /graphify . to build the graph 4. Optional, make it automatic: graphify hook install so the graph rebuilds after every commit That's it. Ask Claude about your repo and it reads the map instead of burning tokens on a file hunt Bookmark this

Yarchi

56,177 views • 3 months ago

CLAUDE CODE JUST SHIPPED THE FEATURE THAT SOLVES THE BIGGEST PROBLEM EVERY BUILDER HAS WITH AI AGENTS. The problem: Claude starts a task, gets distracted by a sub-problem, goes down a rabbit hole, and never finishes the original thing you asked for. The solution: /goal One command. You set the goal at the start of the session. Claude now has a north star it checks against every action it takes. Not just at the beginning. Throughout the entire session. Every time Claude is about to do something it asks: does this action move me toward the goal the user set or am I drifting? If it is drifting it corrects. If it completes a sub-task it returns to the primary goal. If it hits a blocker it reports back instead of spending 45 minutes solving the wrong problem. This sounds like a small feature. It is not. The reason most people do not trust Claude Code for long autonomous runs is not capability. It is reliability. A Claude Code session that reliably finishes what it started is worth 10 times more than one that is more capable but wanders. /goal is the feature that makes long autonomous sessions reliable. Set the goal. Let it run. Come back to a finished result. Not a result that got 70% done before Claude decided the sub-problem was more interesting. Done. The builders running overnight agent sessions are going to use this command on everything from today forward. Bookmark this. Follow CyrilXBT for every Claude Code feature the moment it ships.

CyrilXBT

19,586 views • 4 months ago

THE GUY WHO WON ANTHROPIC'S HACKATHON JUST GAVE AWAY HIS ENTIRE CLAUDE CODE PLAYBOOK FOR FREE. 10 MONTHS OF WORK, ALL PUBLIC Affaan Mustafa won the Anthropic x Forum Ventures hackathon by building a full startup in 8 hours with Claude Code. Then he open-sourced the exact setup that did it. It's called Everything Claude Code, and it turns Claude from one assistant into an entire engineering team Repo: affaan-m/ecc This isn't a prompt pack. It's a system he refined over 10+ months of daily use shipping real products What's inside: A huge library of skills, dozens of specialized subagents, and ready-made commands, all working together. Each piece does one job. One subagent reviews security against OWASP standards. One optimizes memory so Claude stops forgetting earlier decisions around hour three. One learns from your past sessions and projects so the setup gets smarter the more you use it. Others handle planning, test-driven development, and language-specific code review Instead of one assistant writing code, you get an orchestrated team. A main session delegates to the right specialist when the task calls for it, the way a real dev team splits work The best part: it's not locked to one tool. It runs in Claude Code, Cursor, Codex and OpenCode, across Windows, Mac and Linux. Free, MIT licensed This is the difference between using Claude like a search box and running it like a team that ships. The guy spent 10 months figuring out what actually works so you don't have to Bookmark this

Yarchi

817,341 views • 3 months ago