» npm install @anthropic-ai/claude-code
Videos
Following the amazing response to my original post (450+ of you started using it!), I'm excited to share version 2.0 with significant improvements.
The Problem We're Solving
As your codebase grows, Claude Code starts to struggle - it forgets your patterns, loses track of architecture, and keeps suggesting outdated library methods. This kit solves that by creating an intelligent context management system that keeps Claude Code informed and reliable at scale.
Key Features
1. Multi-Agent Orchestration
Commands like /full-context spawn specialized agents that work in parallel, each focusing on different aspects (security, performance, architecture) while sharing your project context.
2. Automatic Context Management
No more copy-pasting context! The 3-tier documentation system auto-loads the right docs based on task complexity. Simple tasks get foundation docs, complex features load all relevant tiers.
3. External AI Integration
Context7: Real-time library documentation (no more hallucinated APIs!)
Gemini Assistant MCP: Architecture consultation and design validation
4. Smart Hooks (New 🎉)
Security scanner blocks sensitive data in MCP requests
Context injector ensures all sub-agents & Gemini Assistant MCP know your project
Optional audio notifications when tasks complete
Example Workflow
# Analyze and plan a complex feature /full-context "implement real-time collaboration with WebSockets" # Multi-perspective code review /code-review "review WebSocket implementation" # Keep docs in sync /update-docs "document collaboration feature"
Quick Installation (30 seconds)
Just run this in your terminal:
curl -fsSL https://raw.githubusercontent.com/peterkrueck/Claude-Code-Development-Kit/main/install.sh | bash
The installer will:
Download the framework
Guide you through interactive setup (choose which components you want)
Configure everything automatically
Provide links for optional MCP server installations
GitHub: https://github.com/peterkrueck/Claude-Code-Development-Kit
How It Works
The kit creates a structured documentation system that Claude Code automatically uses:
your-project/
├── .claude/
│ ├── commands/ # AI orchestration templates
│ ├── hooks/ # Security and automation hooks
│ │ ├── config/ # Hook configuration files
│ │ ├── sounds/ # Notification audio files
│ │ ├── gemini-context-injector.sh
│ │ ├── mcp-security-scan.sh
│ │ ├── notify.sh
│ │ └── subagent-context-injector.sh
│ └── settings.json # Claude Code configuration
├── docs/
│ ├── ai-context/ # Foundation documentation (Tier 1)
│ │ ├── docs-overview.md # Documentation routing map
│ │ ├── project-structure.md # Technology stack and file tree
│ │ ├── system-integration.md # Cross-component patterns
│ │ ├── deployment-infrastructure.md # Infrastructure context
│ │ └── handoff.md # Session continuity
│ ├── open-issues/ # Issue tracking templates
│ ├── specs/ # Feature specifications
│ └── README.md # Documentation system guide
├── CLAUDE.md # Master AI context (Tier 1)
├── backend/
│ └── CONTEXT.md # Backend context (Tier 2) - create this
└── backend/src/api/
└── CONTEXT.md # API context (Tier 3) - create thisWhat's New in v2.0 🎉
Enhanced Hooks System: Customizable automation at every Claude Code lifecycle point
One-Click Installer: No more manual setup - just one curl command
Subagent Context Injection: All spawned agents automatically receive your project context
MCP Assistant Rules: Define project-specific coding standards for external AI consultations
Community Feedback Welcome!
This is an evolving framework based on real-world AI development challenges. I'd love to hear:
What features would help your workflow?
How are you structuring context for large projects?
Any integration ideas with other tools?
Feel free share your experience!
Links:
GitHub Repository
Original Reddit Post
LinkedIn (for questions/feedback)
Claude Code CLI 2.0.74 changelog:
• Added LSP (Language Server Protocol) tool for code intelligence features like go-to-definition, find references and hover documentation.
• Added /terminal-setup support for Kitty, Alacritty, Zed and Warp terminals.
• Added ctrl+t shortcut in /theme to toggle syntax highlighting on/off.
• Added syntax highlighting info to theme picker.
• Added guidance for macOS users when Alt shortcuts fail due to terminal configuration.
• Fixed skill allowed-tools not being applied to tools invoked by the skill.
• Fixed Opus 4.5 tip incorrectly showing when user was already using Opus.
• Fixed a potential crash when syntax highlighting isn't initialized correctly.
• Fixed visual bug in /plugins discover where list selection indicator showed while search box was focused.
• Fixed macOS keyboard shortcuts to display 'opt' instead of 'alt'
• Improved /context command visualization with grouped skills and agents by source, slash commands and sorted token count.
• [Windows] Fixed issue with improper rendering.
• [VSCode] Added gift tag pictogram for year-end promotion message.
Source: Anthropics(Claude Code) GitHub
🔗: https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md
Claude Code 2.0.74 prompt changes:
• Pre-commit hook failure rule simplified: fix + new commit : Claude’s git commit guidance for pre-commit hook failures is simplified. The prior detailed decision tree (reject vs auto-format → possible amend) is removed; now Claude should fix the issue and create a NEW commit, deferring to amend rules.
• ExitPlanMode no longer documents swarm launch params: Claude’s ExitPlanMode tool schema drops the explicit launchSwarm/teammateCount fields. The parameters are no longer documented in the JSON schema (properties becomes {}), signaling Claude shouldn’t rely on or advertise swarm launch knobs when exiting plan mode.
• New LSP tool added for code intelligence queries: Claude gains an LSP tool for code intelligence: go-to-definition, find-references, hover docs/types, document/workspace symbols, go-to-implementation, and call hierarchy (prepare/incoming/outgoing). Requires filePath + 1-based line/character.
Sources/Links:
1st Prompt/Image 1: https://github.com/marckrenn/cc-mvp-prompts/compare/v2.0.73...v2.0.74#diff-b0a16d13c25d701124251a8943c92de0ff67deacae73de1e83107722f5e5d7f1L341-R341
2nd Prompt/Image 2: https://github.com/marckrenn/cc-mvp-prompts/compare/v2.0.73...v2.0.74#diff-b0a16d13c25d701124251a8943c92de0ff67deacae73de1e83107722f5e5d7f1L600-R600
3rd Prompt/Image 3: https://github.com/marckrenn/cc-mvp-prompts/compare/v2.0.73...v2.0.74#diff-b0a16d13c25d701124251a8943c92de0ff67deacae73de1e83107722f5e5d7f1R742-R805
Hey everyone,
Since Claude Code has been around for a while now and many of us are already familiar with Claude Sonnet 3.7, I wanted to share a quick step-by-step guide for those who haven’t had time to explore it yet.
This guide sums up everything you need to know about Claude Code, including:
How to install and set it up
The benefits and when to use it
A demo of its capabilities in action
Some Claude Code essential commands
I think Claude Code is a better alternative to coding assistants like Cursor and Bolt, especially for developers who want an AI that really understands the entire codebase instead of just suggesting lines.
https://medium.com/p/how-to-install-and-use-claude-code-the-new-agentic-coding-tool-d03fd7f677bc?source=social.tw