TLDR
15 minutes to a fully working setup. You need: a Claude account (Pro recommended), VS Code with Cline installed, and optionally Claude Code CLI. Total monthly cost for active development: ~$40–80/month (API costs vary by usage).
Step 1: Claude Account
- Sign up at claude.ai
- Recommended: Claude Pro ($20/month) — gives you access to Opus and higher usage limits
- For API usage (Cline, Claude Code): set up billing at console.anthropic.com
Step 2: Create Your First Claude Project
- In Claude, click "Projects" in the sidebar
- Click "New Project"
- Name it after your project
- Add a project description (what you're building)
- Optionally add any reference files (designs, API docs)
This Project will persist across all conversations for this project. Everything discussed, all files added, all context — available in every new conversation.
Step 3: Install Cline
- Open VS Code
- Go to Extensions (Ctrl+Shift+X / Cmd+Shift+X)
- Search "Cline"
- Install the official Cline extension
- Click the Cline icon in the sidebar
- Enter your Anthropic API key when prompted
Configure Cline
Recommended settings:
- Model: claude-sonnet-4-5 (good balance of speed/cost for tasks)
- Enable extended thinking: Yes
- Auto-approve: Off (at least initially)
- Plan/Act mode: Use Plan mode first for every task Step 4: Install Claude Code (Optional)
npm install -g @anthropic-ai/claude-code
claude --version # verify installation
claude auth # authenticate with your API key Claude Code is terminal-native. Use it when you prefer CLI over VS Code, for quick fixes, or when you want tighter Git integration.
Step 5: Set Up Your First Project
Using the templates from the Templates page:
- Create your project directory and initialise Git
- Create a
Docs/folder - Drop in the template files: README.md, ARCHITECTURE.md, LEARNINGS.md, SPRINT_RULES.md, TASK_TEMPLATE.md
- Add
.clinerulesto the project root - Create a
Tasks/folder for sprint plans and task specs
Step 6: Your First Brainstorm
- Open your Claude Project
- Use the brainstorm prompt from the Prompts page
- Have the full conversation — multiple turns, don't rush
- Ask Claude to generate your foundation documents
- Copy the generated docs into your project files
- Review and refine (tighten quality rules, check schemas are real)
Step 7: Your First Task
- Open VS Code in your project directory
- Open a new Cline conversation
- Type: "Can we please plan task 1.1 from the sprint plan?"
- Review the plan Cline proposes
- Say "Looks good. Proceed."
- Approve terminal commands as they appear
- Verify the result, check the confidence score
- Close the conversation
- Repeat for task 1.2
Common Setup Issues
| Issue | Fix |
|---|---|
| Cline not responding | Check API key is valid and has credits |
| Claude Code auth failing | claude auth --reset and re-authenticate |
| Context not loading | Check .clinerules is in project root, not a subfolder |
| High token costs | Reduce what's in context — reference files by path, don't load full files unnecessarily |
Ongoing Cost Estimate
| Usage Level | Monthly Cost |
|---|---|
| Light (part-time project) | $15–30 |
| Medium (active development) | $40–80 |
| Heavy (full-time + team) | $100–200+ |
Claude Pro subscription ($20/month) is separate from API costs. Pro gives you access to claude.ai and Projects. API costs are pay-per-token for Cline and Claude Code usage.