Starter template repo for all your Claude Code needs โ pre-configured MCP servers, skills, sub-agents, commands, and hooks for AI-powered development workflows.
This is a template repository that gives you a ready-to-use Claude Code development environment. It ships with mcp servers, development-related skills, hooks, slash commands โ all configured and wired together.
Note
We focus on collaborative development. Most claude- and mcp-related settings are project-scoped (.claude/settings.json) so they can be shared across your team via git, rather than living in user-scoped ~/.claude.local.json.
Three servers, configured at user-level (~/.claude.json) to keep API keys out of the repo:
| Server | Purpose |
|---|---|
| Context7 | Up-to-date library documentation and code examples |
| Serena | Semantic code analysis via LSP โ symbol navigation, reference tracking, targeted reads |
| Pal | Multi-model AI integration โ chat, debugging, code review, planning, security audit |
Skills are specialized workflows Claude invokes during different development phases:
| Skill | When to use |
|---|---|
| analysis-process | Pre-implementation. Turns ideas/specs into design docs, implementation plans, and task lists. |
| implementation-process | Execute an implementation plan with batched steps and architect review checkpoints. |
| testing-process | After writing code. Guidelines for test coverage โ table-driven tests, mocking, integration, benchmarks. |
| documentation-process | Post-implementation. Updates ARCHITECTURE.md, TESTING.md, and records ADRs. |
| development-guidelines | During implementation. Enforces best practices like using latest deps and context7 for docs. |
| solid-code-review | Code review with a senior-engineer lens. Checks SOLID principles, security, code quality. Includes language-specific checklists for Go, Java, JS/TS, Kotlin, and Python. |
| cove | Chain-of-Verification prompting. Two modes: standard (prompt-based) and isolated (sub-agent). For high-stakes accuracy and fact-checking. |
- CoVe (
/project:cove/) โ 2 commands for Chain-of-Verification prompting (standard and isolated modes) - Migrate from Task Master (
/project:migrate-from-taskmaster) โ one-time migration from Task Master MCP to native markdown task tracking - Sync Workflow (
/project:sync-workflow [version]) โ update the template-sync workflow and script from upstream (latest,master, or a specific tag likev0.3.0)
- Bash validation (
PreToolUse) โ blocks bash commands that touch.env,.git/,node_modules,build/,dist/,venv/, and other sensitive paths
- Permission allowlist/denylist (
.claude/settings.json) โ auto-approves safe tools (context7, serena, pal code review) while blocking dangerous ones - Status line (
.claude/scripts/statusline_enhanced.sh) โ rich statusline with model, context %, git branch, session duration, thinking mode, and rate limits. Themes: setCLAUDE_STATUSLINE_THEMEtodarcula,nord, orcatppuccin, andCLAUDE_STATUSLINE_MODEtodark(default) orlightto match your terminal background - Serena config (
.serena/project.yml) โ language detection, gitignore integration, encoding settings
- template-cleanup workflow โ one-click GitHub Action to initialize a new repo from this template
- template-sync workflow โ pull upstream configuration updates into your project via PR
- Sync exclusions โ prevent specific files from being re-added during sync
- Test suite โ 72 tests across 3 suites covering the sync/cleanup infrastructure
- Context7 API key
- Gemini API key for Pal (or any other provider)
Note
MCP servers must be configured in ~/.claude.json (not in the repo) to keep API keys safe.
These configs are generic enough to reuse across all your projects.
Example mcpServers configuration
{
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "YOUR_CONTEXT7_API_KEY"
}
},
"serena": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server",
"--context",
"ide-assistant",
"--project",
"."
],
"env": {}
},
"pal": {
"command": "sh",
"args": [
"-c",
"$HOME/.local/bin/uvx --from git+https://github.com/BeehiveInnovations/pal-mcp-server.git pal-mcp-server"
],
"env": {
"PATH": "/usr/local/bin:/usr/bin:/bin:$HOME/.local/bin",
# see https://github.com/BeehiveInnovations/pal-mcp-server/blob/main/docs/configuration.md#model-configuration
"DEFAULT_MODEL": "auto",
# see https://github.com/BeehiveInnovations/pal-mcp-server/blob/main/docs/advanced-usage.md#thinking-modes
"DEFAULT_THINKING_MODE_THINKDEEP": "high",
"GEMINI_API_KEY": "YOUR_GEMINI_API_KEY",
# see https://github.com/BeehiveInnovations/pal-mcp-server/blob/main/docs/configuration.md#model-usage-restrictions
"GOOGLE_ALLOWED_MODELS": "gemini-3.1-pro-preview,gemini-3-flash-preview"
}
}
}See Pal configuration docs for model and thinking mode options.
Tip
If you're using my claude-in-docker images, consider replacing npx and uvx calls with direct tool invocations. The images come shipped with all of the above MCP tools pre-installed, and you will avoid downloading dependencies every time you launch claude cli.
"serena": {
"type": "stdio",
"command": "serena",
"args": [
"start-mcp-server",
"--context",
"ide-assistant",
"--project",
"."
],
"env": {}
},
"pal": {
"command": "pal-mcp-server",
"args": [],
"env": { ... }
}You also may want to look into your env settings for the given mcp server, especially the PATH variable, and make sure you're not adding anything custom that may not be avaiable in the image.
This may cause the mcp server to fail to connect.
-
Create a new project from this template using the Use this template button.
-
A scaffold repo will appear in your GitHub account.
-
Run the template-cleanup workflow from your new repo's Actions tab. Provide inputs:
Serena:
LANGUAGES(required) โ programming languages, comma-separated (e.g.,python,python,typescript). See supported languages.SERENA_INITIAL_PROMPTโ initial prompt given to the LLM on project activation
Tip
Take a look at serena project.yaml configuration file for more details.
-
Clone your new repo and cd into it
Run
claude /mcp, you should see the mcp servers configured and active:> /mcp โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ โ Manage MCP servers โ โ โ โ โฏ 1. context7 โ connected ยท Enter to view details โ โ 2. serena โ connected ยท Enter to view details โ โ 3. pal โ connected ยท Enter to view details โ โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏRun
claude "list your skills", you should see the skills from this repo present:> list your skills โ I have access to the following skills: Available Skills ... --- These skills provide specialized workflows for different stages of development. You can invoke any of them by asking me to use a specific skill (e.g., "use the analysis-process skill" or "help me document this feature"). -
Update the
README.mdwith your project description, then runchmod +x bootstrap.sh && ./bootstrap.shto finalize initialization. -
Profit
Repos created from this template can pull configuration updates via the Template Sync workflow.
.github/template-state.jsonmust exist (created automatically for new repos, or manually for older ones)- Allow actions to create pull-requests: repo Settings โ Actions

- Go to Actions โ Template Sync โ Run workflow
- Choose a version:
latest(default),master, or a specific tag (e.g.,v1.2.3) - Optionally enable dry_run to preview changes without creating a PR
- Review and merge the created PR
- Merge to apply updates
Updated: .claude/ (commands, skills, agents, scripts, settings), .serena/, and the sync infrastructure itself
Preserved: Project-specific values (name, language, prompts), user-scoped files (local settings), gitignored files
If you've removed template files you don't need, prevent sync from re-adding them:
Edit .github/template-state.json and add a sync_exclusions array:
{
"schema_version": "1",
"upstream_repo": "serpro69/claude-starter-kit",
"template_version": "v0.2.0",
"synced_at": "2025-01-27T10:00:00Z",
+ "sync_exclusions": [
+ ".claude/commands/cove/*",
+ ".claude/skills/cove/*"
+ ],
"variables": { "..." : "..." }
}Pattern syntax:
- Patterns use glob syntax where
*matches any characters including directory separators - Patterns are matched against project-relative paths (e.g.,
.claude/commands/cove/cove.md) - Common patterns:
.claude/commands/cove/*(entire directory),.serena/project.yml(single file)
Behavior:
- Excluded files are NOT added if they exist upstream but not locally
- Excluded files are NOT updated if they exist in both places
- Excluded files are NOT flagged as deleted if they exist locally but not upstream
- Excluded files appear as "Excluded" in the sync report for transparency
Task Master MCP was removed in favor of native markdown-based task tracking integrated into the analysis-process and implementation-process skills.
The easiest way to migrate is to run the migration command in Claude Code:
/project:migrate-from-taskmaster
It will port pending tasks, clean up TM files, update configs, and walk you through each step with confirmation prompts.
Manual migration steps
If you prefer to migrate manually, follow these steps after syncing:
-
Port any pending tasks to the new format: create
/docs/wip/[feature]/tasks.mdfiles following the example task file. Completed tasks don't need porting. -
Remove Task Master files and config:
rm -rf .taskmaster rm -rf .claude/commands/tm rm -f .claude/TM_COMMANDS_GUIDE.md rm -f .claude/agents/task-orchestrator.md rm -f .claude/agents/task-executor.md rm -f .claude/agents/task-checker.md
-
Remove Task Master from
~/.claude.json: delete thetask-master-aientry from yourmcpServersconfig. -
Remove TM variables from
.github/template-state.json: deleteTM_CUSTOM_SYSTEM_PROMPT,TM_APPEND_SYSTEM_PROMPT, andTM_PERMISSION_MODEfrom thevariablesobject. -
Remove TM references from
CLAUDE.md: delete the "Task Master Integration" and "Task Master AI Instructions" sections (including the@./.taskmaster/CLAUDE.mdimport). -
Update the template-sync workflow (why?): the old workflow contains taskmaster-specific sync logic that will break future syncs. Run
/project:sync-workflow latestor manually replace both files:VERSION="v0.3.0" # or use latest tag curl -fsSL "https://raw.githubusercontent.com/serpro69/claude-starter-kit/${VERSION}/.github/workflows/template-sync.yml" \ -o .github/workflows/template-sync.yml curl -fsSL "https://raw.githubusercontent.com/serpro69/claude-starter-kit/${VERSION}/.github/scripts/template-sync.sh" \ -o .github/scripts/template-sync.sh chmod +x .github/scripts/template-sync.sh
Task tracking now lives in simple markdown files (/docs/wip/[feature]/tasks.md) created by the analysis-process skill and consumed by implementation-process. No external MCP server required.
If your repo was created before the sync feature (or even if your repo wasn't created from this template at all), create .github/template-state.json:
{
"schema_version": "1",
"upstream_repo": "serpro69/claude-starter-kit",
"template_version": "v1.0.0",
"synced_at": "1970-01-01T00:00:00Z",
"variables": {
"PROJECT_NAME": "my-cool-project",
"LANGUAGES": "go",
"CC_MODEL": "default",
"SERENA_INITIAL_PROMPT": ""
}
}Then copy .github/workflows/template-sync.yml and .github/scripts/template-sync.sh from the template repository.
The following tweaks are not mandatory, but will more often than not improve your experience with CC
Tip
The following config parameters can be easily configured via claude /config command.
The config file can also be modified manually and is usually found at ~/.claude.json
Recommended /config settings
This is my current config, you may want to tweak it to your needs. I can't recommend enough disabling auto-compact feature and controlling the context window manually. I've seen many a time claude starting to compact conversations in the middle of a task, which produces very poor results for the remaining work it does after compacting.
> /config
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Configure Claude Code preferences
Auto-compact false
Show tips true
Reduce motion false
Thinking mode true
Prompt suggestions true
Rewind code (checkpoints) true
Verbose output false
Terminal progress bar true
Default permission mode Default
Respect .gitignore in file picker true
Auto-update channel latest
Theme Dark mode
Notifications Auto
Output style default
Language Default (English)
Editor mode vim
Show code diff footer true
Show PR status footer true
Model opus
Auto-connect to IDE (external terminal) false
Claude in Chrome enabled by default false
Tests across 3 suites covere the template sync/cleanup infrastructure:
# Run all test suites
for test in test/test-*.sh; do $test; done
# Run individual suites
./test/test-manifest-jq.sh # jq JSON pattern tests
./test/test-template-sync.sh # template-sync.sh function tests
./test/test-template-cleanup.sh # generate_manifest() tests| Test Suite | Coverage |
|---|---|
| test-manifest-jq.sh | JSON generation, special character handling, round-trip validation |
| test-template-sync.sh | CLI parsing, manifest validation, substitutions, file comparison |
| test-template-cleanup.sh | Manifest generation, variable capture, git tag/SHA detection |
.claude/
โโโ commands/
โ โโโ cove/ # 2 CoVe verification commands
โโโ hooks/ # Bash validation hook config
โโโ scripts/ # statusline.sh, validate-bash.sh
โโโ skills/ # 7 development workflow skills
โโโ settings.json # Shared permission config
.serena/
โโโ project.yml # Serena LSP configuration
.github/
โโโ scripts/ # template-cleanup.sh, template-sync.sh, bootstrap.sh
โโโ workflows/ # template-cleanup, template-sync
โโโ template-state.json # Sync manifest and variables
test/
โโโ helpers.sh # Shared test utilities and assertions
โโโ test-*.sh # 3 test suites
โโโ fixtures/ # Test manifests and templates
Examples of actual Claude Code workflows executed using this template's configs, skills, and tools: examples/
Feel free to open new PRs/issues. Any contributions you make are greatly appreciated.
Copyright ยฉ 2025 - present, serpro69
Distributed under the MIT License.
See LICENSE.md file for more information.