Finding signal on Twitter is more difficult than it used to be. We curate the best tweets on topics like AI, startups, and product development every weekday so you can focus on what matters.
Page 1 • Showing 17 tweets
pill expand to split view - this keeps visual continuity unlocks direct canvas manipulation
NEW: four more lessons are now live on Replit Learn. It has everything you need to go from zero to vibe coder. Here's a preview of what makes an idea "buildable." Head over to http://learn.replit.com for the full lesson 🤘
GPT 5.3 Codex + Nix Home Manager is unreal - instant terraform for your Mac
When I started at Replit, I said " we're getting a YouTube plaque." Now, we have a YouTube plaque center of the universe Replit ⠕
First mobile app is now in TestFlight - it's a screenshot & mockup editor Coming soon to an iPhone near you
there's a new feature you'll never see - that's because it runs entirely in the background "compaction" or summarization now happens seamlessly and automatically on replit more building, less waiting
A deep dive on the Claude Agent SDK - everything you need to know about deployment 00:00 Intro 01:08 The agent loop 03:23 Core primitives 05:30 Tools vs MCP vs skills 07:08 Context windows 10:47 Building on Replit 15:17 Creating a Todoist agent 22:06 Debugging 28:23 Deployment
A deep dive on mobile apps with Replit 00:00 Intro 02:33 Mobile workspace 05:24 Native vs web 08:13 Architecture 09:58 Publishing 22:05 Tech stack breakdown 28:02 Debugging 39:35 Tips & tricks
what do you want to be the best at?
📝 Introducing Replit Animation You can now create animated videos directly in Replit, from just a prompt Replit Animation builds videos directly from code - under the hood, we're writing TypeScript with modern libraries to build animated scenes and allow you to export videos - directly to mp4 That means you'll be able to pull in existing design systems and tokens, typography styling, and agent skills to create any video imaginable. When you're done, video can be exported at your desired resolution and frame rate or hosted online at a unique URL. Video as code With video as code, code is the source of truth. If you have existing components that your team uses, design systems, or libraries, you can simply pull that code into Replit and build repeatable video on top. You may have noticed the our opening scene uses the Agent prompt box: I pulled the styling from our production systems and rebuilt the exact components in Replit for the animation. Code can be manipulated, tweaked, and copied - now video can be too. You could create a product marketing pipeline that generates weekly changelog videos or a feature release that pulls the latest styling from your brand guidelines. Video creation is now a pipeline - just like data or CI / CD. Getting started To get started, head to the prompt box mention "video" in your initial prompt - we'll toggle on to video mode for you... or select "animation" from the dropdown under "App" mode Creating amazing video The hardest part about prompting for video is "getting the language right." It's the same challenge with prompting for images - learning taste in photography & videography. I recommend experimenting and continually asking agent to help you learn different video terminology - J cuts vs. L cuts, Jump cuts, etc. Agent can do research to help you learn the lingo and what you want. I've also had success combining Replit Animation with Agent Skills (like video-motion-graphics) to refine camera control and output styles. Once you're getting good outputs, a next step is to create repeatable workflows and systems - we'll have guidance on how to do just this in the coming weeks. Until then, we're excited to see what you build :) http://x.com/i/article/20245916134320988…

When did opening a PR become easier than booking a haircut?
This guide will walk through running Claude Code on your phone in under 5 minutes and 500 words. To get started, you'll need: • An Anthropic subscription or API key • A Replit account It's easiest to start on your laptop. First, head to this template and click Remix Matt's Claude template You'll see a prompt that secrets are missing in the bottom right, click it and you'll be taken to the Secrets pane. Paste in `/home/runner/workspace/.claude-user` (no quotes) as the value for CLAUDE_CONFIG_DIR - don't forget to click "Add Secret" Now, click the plus icon next to the "Secrets" tab and search for "Shell" Search for the shell in tools Open the Shell and type in "claude" - voila! Claude Code is running Login with Anthropic - do not authorize at the clicked link, instead copy / paste the URL Follow the authorization prompts, when a new window is opened and you're prompted to authorize, do not - instead, go back to the terminal and there will be a URL. Copy / paste the URL, get the resulting code, and paste that in your terminal Now the fun part. Install the Replit mobile app on your phone. Open it up and sign in. You will see your app from before - select it. Click the "three rectangles" icon in the bottom right to open the tools Search for "Shell" - tap it! Now that you're logged in, we can open your phone! Tap the Shell selector in the top left - you'll see our "claude" command from before Open the shell on mobile Boom! Claude Code is running on your phone... You might notice it's sync with the version on your desktop! (more on that below) Claude on mobile! From here on out, you can simply open up the Shell in the app on your phone and type "claude" to run Claude Code. IMPORTANT: this app has your credentials in the `.claude-user` directory. It will be ignored by git, but you should not share this app with anyone or make it public without first deleting that directory What we just did: • We created a "sandbox:" every Replit app is it's own isolated environment, running in the cloud. You might also hear this called a container or a virtual environment. • Replit apps allow you to write and execute code, we normally do that with our own agent - Replit Agent. You can see it on the left hand side of the app. • Claude Code was already configured in this template, so you started the package in our Shell, which is just a terminal • Authorizing Claude wrote credentials to the `.claude-user` directory, which is necessary to persist through Replit environment restarts. • Opening Replit on your phone loaded the same virtual environment as the one running on your laptop. That's because the environment is running on a remote server in the cloud. • Replit can display the same environment in real time on multiple devices, what we call "multiplayer" - this is thanks to some amazing engineering by the team. • Now, you can control Claude from both your phone & your computer. The same is true of Replit Agent and any other project on Replit. You can follow the same process in any Replit app that has Claude Code installed, which may be done from the command line. You can also install Skills, plugins, MCP servers, and Hooks as you would normally. Happy building ✌️