by FlineDev
Claude Code context engineering & planning system for individual AI development workflows
# Add to your Claude Code skills
git clone https://github.com/FlineDev/ContextKit
The real problem: AI assistants are reactive, not proactive. You have to spoon-feed them every single step: "Now create the model", "Now add the service", "Don't forget tests", "Now wire up the UI". They wait for instructions instead of understanding the bigger picture and driving the process forward.
The frustration: You're managing the AI instead of collaborating with it. You spend your time figuring out what to ask for next, breaking down work into AI-digestible chunks, and constantly steering the conversation. It's like having a junior developer who needs step-by-step instructions for everything.
The solution: ContextKit gives AI the planning intelligence to understand your project, suggest the right technical approach, break down features systematically, and guide you through proven development phases. The AI becomes a proactive partner that knows what comes next and why.
And you stay in control: ContextKit enables AI autonomy at the right moments while keeping you in strategic control. You review and approve the spec, tech decisions, and implementation plan at key checkpoints. The AI then executes with specialized quality agents (accessibility, localization, code cleanup) working autonomously within your approved framework.
The key insight: By helping AI understand your intent clearly upfront, it can work longer and more effectively without constant corrections. You spend time on strategic decisions, not fixing misunderstood implementations.
curl -fsSL https://raw.githubusercontent.com/FlineDev/ContextKit/main/install.sh | bash
Navigate to your project directory and run:
# Start Claude Code
claude
# Initialize ContextKit (auto-detects your project type)
/ctxk:proj:init
For major features (multi-file changes, new architecture, research needed):
# Full systematic workflow with detailed planning
/ctxk:plan:1-spec # Business requirements
/ctxk:plan:2-research-tech # Technical architecture
/ctxk:plan:3-steps # Implementation breakdown
/ctxk:impl:start-working # Start development
For smaller tasks (bug fixes, improvements, refactoring):
# Quic...