Show HN: Sculptor – A UI for Claude Code(imbue.com)
169 points by thejash 3 days ago | 83 comments
- dalejh 3 days agoCongrats on the launch Imbue team!
I used Sculptor to build most of https://lingolog.app/ (featured in this post).
It was a blast - I was cooking dinner and blasting out features, coming back to see what Sculptor had cooked up for me in the meantime. I also painted the landing page in procreate while Sculptor was whirring away.
Of course, this meant that my time shifted from producing code to reviewing code. I found the diffs, Sculptor's internal to-do list, and summaries all helpful to this end.
n.b. I'm not affiliated with the team, but I've worked with some Imbue team members many years ago which led to being a beta tester.
[-] - jMyles 3 days agoSo... are we all just working on various ways of using Claude Code in docker with git worktrees? Is that like, the whole world's project this month? :-)[-]
- nvader 3 days agoSeems like an important project to unlock a whole amount of productivity.
Although, Sculptor does not use work trees, but that is an implementation detail.
- manojlds 3 days agoIt's the new TODO app. Anthropic are just going to build one or acquire one of these soon and the rest will be dead.
- bfogelman 3 days agohaha honestly a little bit ya. One key thing we've learned from working on this is that lowering the barrier to working in parallel is key. Making it easy to merge, context switching, etc are all important as you try to parallelize things. I'm pretty excited about "pairing mode" for this reason as it mirrors an agents branch locally so you can make your own edits quickly and test changes.
We've also shipped "suggestions" under beta (think CI pipelines for your parallel agents) which might feel a little different. The idea is to use LLMs and your regular coding tools (pytest, pyre, ...) to verify that the code produced by the agents is actually correct.
- redhale 3 days agoThis looks awesome!
I really hope there is planned support for other coding agents too, in particular OpenCode which seems to have relatively close feature parity coupled with wide model compatibility and open source.
[-]- thejash 3 days agoDefinitely! I'm very excited to get in support both for other coding agents, and for as many language models (and providers) as we can.
Eventually what we want is for the whole thing to be open -- Sculptor, the coding agent, the underlying language model, etc.
- myflash13 3 days agoIt's not clear to me what a "container" and "pairing" is in this context. What if my application is not dockerized? Can Claude Code execute tests by itself in the context of the container when not paired? This requires all the dependencies, database, etc. - do they all share the same database? Running full containerized applications with many versions of Postgres at the same time sounds very heavy for a dev laptop. But if you don't isolate the database across parallel agents that means you have to worry about database conflicts, which sounds nasty.
In general I'm not even sure if the extra cognitive overload of agent multiplexing would save me time in the long run. I think I still prefer to work on one task at a time for the sake of quality and thoroughness.
However the feature I was most looking forward to is a mobile integration to check the agent status while away from keyboard, from my phone.
[-]- thejash 3 days agoReplying to each piece:
> What if my application is not dockerized?
Then claude runs in a container created from our default image, and any code it executes will run in that container as well.
> Can Claude Code execute tests by itself in the context of the container when not paired?
Yup! It can do whatever you tell it. The "pairing" is purely optional -- it's just there in case you want to directly edit the agent's code from your IDE.
> Do they all share the same database?
We support custom docker containers, so you should be able to configure it however you want (eg, to have separate databases, or to share a database, depending on what you want)
> Running full containerized applications with many versions of Postgres at the same time sounds very heavy for a dev laptop
Yeah -- it's not quite as bad if you run a single containerized Postgres and they each connect to a different database within that instance, but it's still a good point.
One of the features on our roadmap (that I'm very excited about) is the ability to use fully remote containers (which definitely gets rid of this "heaviness", though it can get a bit expensive if you're not careful)
> the feature I was most looking forward to is a mobile integration to check the agent status while away from keyboard, from my phone.
That's definitely on the roadmap!
- penlu 3 days agoin this context, the container contains the running claude instance, and pairing synchronizes its worktree with your local worktree.
under sculptor, claude code CAN execute tests by itself when not paired. that will also work for non-dockerized applications.
sharing a postgres across containers may require a bit of manual tweaking, but we support the devcontainer spec, so if you can configure e.g. your network appropriately that way, you can use a shared database as you like!
regarding multiplexing: the cognitive overhead is real. we are investigating mechanisms for reducing it. more on that later.
regarding mobile integration: we also want that! more on that later.
- stpedgwdgfhgdd 3 days agoYou can use git worktree to work in parallel in multiple terminal tabs. It does give a higher cognitive load.
- kveykva 3 days agoEven design wise this looks virtually identical to https://terragonlabs.com/[-]
- itchytoo 3 days agoImbue team member here. The biggest difference between Sculptor and Terragon is the collaboration model. With Terragon, the agent outputs PRs. This works well for simple tasks that agents can one-shot, but is a bit clunky to use for more complex tasks that require closer human-agent collaboration imo. On the other hand, Sculptor is designed for local collaboration. Our agents run in containers too, but we let you (bidirectionally) sync to the containers, which lets you stream in the agent's uncommitted changes, and collaborate in real time. So basically, it feels like you are using Claude Code locally, but you get the safety and parallelism of running Claude in containers. I find this much more usable for real world engineering tasks!
- rsyring 3 days ago> Sculptor is free while we're in beta.
Ok, and then what? Honest question.
[-]- thejash 3 days agoOur current plan is to make the source code available and make it free for personal use, but we're not quite ready to open-source it.
Someday we'll probably have paid plans and business / enterprise licenses available as well, but our focus right now is on making it really useful for people.
To me, the whole point of our company is to make these kinds of systems more open, understandable, and modifiable, so at least as long as I'm here, that's what we'll be doing :)
[-]- giancarlostoro 3 days agoIf Anthropic doesn't buy you guys out before then. This looks a little too nice, I could see them trying to acquihire your efforts.
- BatteryMountain 3 days agoIts not free though. You pay for it by supplying your email address.
- lrobinovitch 3 days agoBeen fortunate to get to try out Sculptor in pre-release - it's great. Like claude code with task parallelism and history built in, all with a clean UI.
- mentalgear 3 days agoBased on vibekit (open source) ?
"VibeKit is a safety layer for your coding agent. Run Claude Code, Gemini, Codex — or any coding agent — in a clean, isolated sandbox with sensitive data redaction and observability baked in."
[-]- thejash 3 days agoNope, not based on vibekit, but it looks like a cool project!
Our approach is a bit more custom and deeply integrated with the coding agents (ex: we understand when the turn has finished and can snapshot the docker container, allowing rollbacks, etc)
We do also have a terminal though, so if you really wanted, I suppose you could run any text-based agent in there (although I've never tried that). Maybe we'll add better support for that as a feature someday :)
- cma 3 days agoIt might be possible to ask claude to write a claude code hook to take a docker snapshot after each finished answer with vibekit to avoid deeply integrating with another third party.
- bfogelman 3 days agonope but vibekit looks interesting -- will take a look
- bfogelman 3 days agoMember of the team here, happy to answer questions. Took a lot of ups, downs and work to get here but excited to finally get this out. Even more excited to share other features we've been cooking behind the scenes. Give it a try and let us know what you think, we're hungry for feedback.[-]
- cgarvis 3 days agoAre you doing got worktrees in the backend?[-]
- penlu 3 days agono sir. only the fullest featured repositories for our free-range* claudes
* containerized, but meets free range standards
- bfogelman 3 days agoright now we're using docker -- we're planning to support modal (https://modal.com/) for remote sandboxes and a "local" mode that might use something like worktrees
- kspacewalk2 3 days agoHow soon is Sculptor for Mac (Intel) coming? Excited to try it, but still hanging on to my last x86 MBP.[-]
- bfogelman 3 days agoHopefully in the next couple of days! You can join the discord and we'll post an announcement when its ready https://discord.gg/GvK8MsCVgk
- deaux 3 days agoThis looks really good! Would immediately use it if it worked with Opencode. Qwen, GLM and Kimi are so fast and good nowadays that for many tasks they're the quicker option, while being much cheaper at the same time. Claude Code runs into limits below the $200 tier, and GPT-5 while great and cheaper can be really slow.[-]
- SOLAR_FIELDS 3 days agoYea generally I find GPT 5 does better at reasoning but holy moly even in medium mode the thing can take minutes to come back with a response
- meowface 3 days agoLooks good. Does the app have a dark theme option?[-]
- lauren-ipsum 3 days agosure does :)
- sawyerjhood 3 days agoWow this looks just like https://terragonlabs.com[-]
- bfogelman 3 days agoSee this comment for some differences: https://news.ycombinator.com/item?id=45428185
- NewsaHackO 3 days agoYes, but look at Imbue's Investors/Advisors. They obviously have big money behind them.
- thadd3us 3 days agoReally proud to be a part of this team! And really excited for the future of Sculptor -- it has quickly become my favorite agentic coding tool because of the way it lets you safely and locally execute untrusted LLM code in an agentic loop, using a containerized environment that you control![-]
- davifdek 3 days ago[dead]
- nvader 3 days agoIncidentally, a research preview of Sculptor is what I used to build my voice practice app, Vocal Mirror: https://danverbraganza.com/tools/vocal-mirror
- warthog 3 days agoWasn't imbue training models for coding having raised a huge fund? Is this a pivot?[-]
- thejash 3 days agoSince our launch 2 years ago, we've focused more on the "agents that code" part of our vision (so that everyone can make software) rather than the "training models from scratch" part (because there were so many good open source models released since then)
This is from our fundraising post 2 years ago:
> Our goal remains the same: to build practical AI agents that can accomplish larger goals and safely work for us in the real world. To do this, we train foundation models optimized for reasoning. Today, we apply our models to develop agents that we can find useful internally, starting with agents that code. Ultimately, we hope to release systems that enable anyone to build robust, custom AI agents that put the productive power of AI at everyone’s fingertips.
- https://imbue.com/company/introducing-imbue/
We have trained a bunch of our own models since then, and are excited to say more about that in the future (but it's not the focus of this release)
[-]- warthog 2 days agowhat is the difference of this to conductor
- cchance 3 days agoSilly question but what about GPT? it feels like with the experimental api that most of the clients added for interacting the the cli clients it should be possible for something like this to run for gpt, claude, or gemini no?[-]
- bfogelman 3 days agoin the works! we want it to be possible to always have the best models and agents available
- mangonomnom 3 days agogot to try this a bit and really liked the UI! It felt very transparent and understandable even for someone without a coding background[-]
- thejash 3 days agoThanks!
Please feel free to join discord if you run into any bugs or have any issues at all, we're happy to help: https://discord.gg/sBAVvHPUTE
Suggestions welcome too!
- handfuloflight 3 days agoHow does it compare with https://conductor.build/?[-]
- kanjun 3 days agoGreat question! Agents in Sculptor run in containers vs. locally on your machine, so they can all execute code simultaneously (and won't destroy your machine).
Containers also unlock a cool agent-switching workflow, Pairing Mode: https://loom.com/share/1b02a925be42431da1721597687f7065
Ultimately, our roadmaps are pretty different — we're focused ways to help you easily verify agent code, so that over time you can trust it more and work at a higher level.
Towards this, today we have a beta feature, Suggestions, that catches issues/bugs/times when Claude lies to you, as you're working. That'll get built out a lot over the next few months.
[-]- handfuloflight 3 days agoExcellent, I'll be giving it a go this week! All the best.[-]
- kanjun 3 days agoSo happy to hear this! We'd love to hear what you think — feel free to ping me on X. We're also very active on Discord: https://discord.com/invite/sBAVvHPUTE
- abefetterman 3 days agoLooks very cool, congrats on the launch!
- micimize 3 days agoExciting stuff! A big step towards an accelerated AI-assisted SWE approach that avoids the trap of turning engineers into AI slop janitors
- kelsolaar 2 days agoHow does this compare to Vibe Kanban?
- sushimaki 2 days agoHello, discord invite is down :(
- ajanuary 3 days agoUnfortunately the page repeatedly crashed and reloads on my iPhone 13 mini until it gives up.[-]
- kanjun 3 days agoThat's super strange — would you mind trying again on a different device? We can't repro. Appreciate your trying!
- HellsMaddy 3 days agoI'm also unable to load it in chrome on linux (wayland backend). Seems like some sort of GPU issue.[-]
- MitziMoto 3 days agoSame. Chrome on Manjaro with Wayland, just crashes.[-]
- penlu 3 days agomore info on setup, if you can: are you using a non-intel GPU for rendering?[-]
- HellsMaddy 3 days agonvidia GPU for me with hardware acceleration enabled (required some command-line flags passed to chrome to get it working on wayland):
google-chrome-stable --enable-gpu --ozone-platform=wayland --enable-features=UseOzonePlatform,WaylandLinuxDrmSyncobj
- bfogelman 3 days agohmm not ideal -- will try and take a look and see whats going wrong
- 55555 3 days agoJust adding that on my iPhone 13 Pro it works fine.
- davifdek 3 days ago[dead]
- 6Az4Mj4D 3 days agoIs there any high level "How does it work" document?[-]
- thejash 2 days agoWe have some docs here: https://github.com/imbue-ai/sculptor
If you have any specific questions that aren't covered there, please let us know in Discord!
- timothygao 3 days agoThis is super cool!
- byyoung3 2 days agodoes it support ssh where claude is running on the remote machine?
- millanjp 3 days agoThis is awesome, I love how it lets claude code "go rogue" safely inside a container. I don't like how agents can screw with my filesystem so this isolation is good
- purplecats 3 days agothis is incredible! can you make this interface usable from a web browser (such as chrome) rather than an app?[-]
- thejash 2 days agoIt actually originally worked that way, and you can still mostly kinda use it that way (except that, because of CSRF protection, it's obnoxious -- run the program once to figure out the command line that the backend python process is started with, eg, via `ps -Fe` on linux, then shut down the app, then run that process. As long as you don't set the `ELECTRON_APP_SECRET` env var, CSRF will be disabled. Use `netstat -pant | grep -i listen` to figure out what port it is listening on)
Obviously not the most user friendly or usable, but we found that people often got pretty confused when this was a browser tab instead of a standalone app (it's easy to lose the tab, etc)
[-]- bni 10 hours agosculptor_backend seems to consume a lot of CPU and memory when just idling. Would you consider switching from Electron to Tauri so it uses the native WebView of the OS?
- vdm 3 days ago
- kate_dirky 3 days agoCongrats on the launch! Looks awesome
- kuroko 3 days agoCongrats, looks good! Lacks an option to configure anthropic base url though, hope you will add something to configure env variables[-]
- thejash 3 days agoI haven't tried it, but it might work if you set the env var yourself (I think you can create a `.env` file in `~/.sculptor/.env` and it will be injected into the environment for the agent)
I'd give it a good 20% chance of working if you set the right environment variables in there :) Feel free to experiment in the "Terminal" tab as well, you can call claude directly from there to confirm if it works.
- bfogelman 3 days agoooh this is a great idea -- thanks for sharing!
- kate_dirky 3 days agoCongrats! Looks awesome
- pmarreck 3 days agoCool, now do it for Codex and gemini-cli[-]
- danielmewes 3 days agoIt's on our roadmap!
Any particular features you'd be looking for when we add support for those models/agents?
- hpoirot 3 days ago[dead]
- faraway9911 3 days ago[dead]