
From AI Chat to Claude Code in 3 Seconds
The Problem You know the flow. You brainstorm with AI chat. You land on a plan. You get a nice CLAUDE.md generated. Then you: Download CLAUDE.md Open terminal Create a project folder Move CLAUDE.md into it git init Open your editor Start Claude Code Type "Start implementation" That's a lot of steps. I wanted it in 3. What I Built github.com/m4suisui/kickstart Usage # Install curl -fsSL https://raw.githubusercontent.com/m4suisui/kickstart/main/install | bash # With CLAUDE.md contents in your clipboard: kickstart <project-name> What It Does Creates ~/bin , places the executable, adds it to PATH Reads your clipboard and creates the project folder with CLAUDE.md git init Resolves the Claude Code path and generates tasks.json Opens your editor, which reads tasks.json and runs claude "Start implementation" Working directory and editor are configurable via .kickstartrc (defaults to ~/projects and VS Code). 3 Actions Copy CLAUDE.md contents to clipboard Open terminal Run kickstart <project-nam
Continue reading on Dev.to
Opens in a new tab

