Fresh-machine setup · 30 min
The AI Coding Stack 2026, What to Install on a Fresh Developer Machine
Opinionated, complete setup for a 2026 fresh-machine AI coding stack. One tool per role, editor, terminal agent, autocomplete, MCP servers, skill catalog, daily routine, plus the 10 skills to install on day one.
A new machine in 2026 is an opportunity to stop carrying twelve years of editor configs and start with a stack that actually works. Below is the opinionated, complete setup. One tool per role. Thirty minutes from a fresh laptop to working AI-assisted coding with autocomplete, an autonomous agent, a daily routine, and ten skills ready to use.
The stack is opinionated on purpose. You can substitute any component, and the rest still works, that's the open-standards win in 2026. But picking quickly and getting back to coding beats spending the afternoon reading subreddit threads.
The stack, at a glance
Cursor
Editor + autocomplete
$20/mo Pro, daily driver
Claude Code
Terminal agent
Sub-agents + scheduled tasks
skills-hub
Skill catalog
One CLI for all 9 tools
Three reasons this combination wins in 2026:
- Cursor handles the editor, best inline autocomplete + mature Composer for in-IDE agent work.
- Claude Code handles autonomy, sub-agents, scheduled tasks, longer-running multi-file work. Use it from a second terminal alongside Cursor.
- skills-hub.ai provides the skill catalog, 4,900+ ready-to-install SKILL.md files. One CLI installs into whichever tool you're targeting.
Editor + AI agent
Cursor as the editor. Install from cursor.com. On first launch, import your VS Code settings (one click) so your extensions and keybindings come over.
Claude Code as the autonomous agent. Install via the Anthropic CLI; sign in with Claude Pro ($20/mo) or Max ($100, $200/mo) depending on how heavy your usage gets. Open it in a second terminal pane alongside Cursor.
# macOS
curl -fsSL https://claude.com/install.sh | sh
# then sign in (opens browser for Claude account auth)
claude loginConfigure both tools' rules. In Cursor, add a .cursorrules at the project root for ambient project context. In Claude Code, add a CLAUDE.md at the project root. They're the same idea, project conventions, forbidden patterns, tech stack notes, and you can mirror most content between them.
Inline autocomplete, Cursor handles it
On this stack, Cursor's built-in tab completion is the autocomplete. You don't need Copilot or Codeium installed separately (unless you want a redundant source, which a small minority do). Cursor's completion latency and quality in 2026 match Copilot's; you save the $10/mo + the conflict of two inline-completion engines fighting over the cursor.
MCP servers + skills
The skills-hub MCP server is the single thing to add to both Cursor and Claude Code. It exposes the entire 4,900+ skill catalog as MCP prompts, slash commands inside chat, callable from either tool.
claude mcp add skills-hub -- npx @skills-hub-ai/mcp{
"mcpServers": {
"skills-hub": {
"command": "npx",
"args": ["@skills-hub-ai/mcp"]
}
}
}Want zero-install? Use the remote endpoint https://api.skills-hub.ai/mcp as the URL instead, no local process, same capabilities.
The 10 skills to install on day one
These ten are the pay-back-in-the-first-hour skills. Install all of them; the marginal cost is zero (npx, no global state) and you'll use at least seven within the first week.
npx @skills-hub-ai/cli install \
code-review \
unit-test \
secure \
docker \
github-actions \
readme \
api-docs \
bugfix \
refactor-safe \
ship-itcode-review, correctness + security + missing tests. Run it before every PR.unit-test, auto-detects your test framework + emits idiomatic edge cases.secure, full-stack security posture + 0-100 score + fix code.docker, production-grade multi-stage Dockerfile for any stack.github-actions, CI/CD workflows tuned to your stack.readme/api-docs, generate the docs you keep meaning to write.bugfix/refactor-safe, reproduce-then-fix and test-net refactoring.ship-it, composition skill: chains implement → test → review → ship into one pipeline.
Scheduled tasks + daily routines
Once you have Claude Code installed, you have access to /loop, cron-style background runs. Add one schedule on day one: nightly security audit.
schedules:
- name: nightly-security
cron: "0 3 * * *" # 3 AM daily
skill: secure
pin: "latest"
on_finding: open_issue
notify: slack:#security
timeout_minutes: 30That's the single highest-ROI schedule. Add dependency-update on weekdays at 7 AM later, once you trust the workflow.
The 30-minute recipe
Total install + setup time on a fresh machine, in order:
- 0-5 min: Install Cursor + Claude Code. Sign into both. Open project.
- 5-10 min: Add .cursorrules + CLAUDE.md with your project's stack + conventions. Generate via
npx @skills-hub-ai/cli install initif you don't want to write them by hand. - 10-15 min: Add the skills-hub MCP server to both tools (commands above).
- 15-20 min: Install the day-one ten skills with the single CLI command above.
- 20-25 min: Add the nightly-security
/loopschedule. - 25-30 min: Subscribe to the skills-hub weekly newsletter so you stay current as new skills + tool releases land.
4,900+
Skills ready to install
One open standard. One CLI. Works in Cursor + Claude Code on this stack, and in every other major AI tool if you switch.
When to deviate
Three real reasons to pick a different stack:
- GitHub Enterprise team. Swap Cursor + Claude Code for GitHub Copilot ($10/mo individual, $19/user Business, $39/user Enterprise). You lose autonomous agent depth; you gain native PR review and one bill from GitHub. See /copilot-skills.
- AWS-bound + spec-driven team. Pick AWS Kiro for the IDE. Use Bedrock for the model. Spec-driven development is native there. See /kiro-skills.
- Open-source-only / pay-per-token. Cline + Codex CLI + Aider, all Apache 2.0, all BYO key. You skip the subscription and pay per token. Best for budget-sensitive devs who want maximum transparency. See /cline-skills.
Whatever stack you pick, the skills-hub catalog works in it. That portability is the actual point of the SKILL.md standard. Install once, switch tools without rewriting your workflows.
Related: The state of AI coding in 2026, the 60-second tool quiz, the top 50 skills ranked, awesome Claude Code.
Written by
Skills-Hub Team
Opinionated 2026 setup
Skills-Hub is the open registry for AI coding skills, 4,900+ SKILL.md files synced daily from Anthropic, Google, Microsoft, and 100+ official sources. Free + MIT.