TL;DR: Make GitHub Copilot, Claude, or ChatGPT write better code by giving them context. Stop getting garbage code suggestions that don't match your project. This lightweight tool supercharges your AI coding assistant by 90% with zero setup pain.
We've all been there:
- GitHub Copilot suggests code that breaks your existing architecture
- Claude keeps forgetting what your project is actually about
- ChatGPT invents components you already built
- Your AI assistant has no idea what your database schema looks like
- You're tired of repeating project context in EVERY. SINGLE. PROMPT.
AI Taskmaster Lite gives your AI coding assistant the context it needs by:
- Maintaining key project documents (PRD, tasks, schema, architecture)
- Auto-instructing AI to check these files BEFORE writing code
- Forcing AI to update documentation as your project evolves
- Zero setup, works with ANY project
- GitHub Copilot
- OpenAI ChatGPT (4o, GPT-4)
- Anthropic Claude
- Any AI coding assistant in VS Code
# Install globally
npm install -g ai-taskmaster-lite
# Initialize in your project
npx taskmaster-setup
# OR install locally in your project
npm install --save-dev ai-taskmaster-lite
# Then run setup
npx taskmaster-setupgit clone https://github.com/yourusername/ai-taskmaster-lite.git .taskmaster
cd .taskmaster && chmod +x setup.sh && ./setup.shThat's it! Now use snippets /tm or /tmfix in your AI chat.
VIDEO
AI Taskmaster checking context before suggesting code changes
- Type
/tmin your AI chat followed by your request - AI automatically checks your documentation files
- Documentation updates with changes from your request
- Get context-aware code that fits your architecture
- No more bad suggestions!
/tm Add a function to enlarge profile pics when clicked
The AI will:
- Check your PRD, tasks, architecture, and schema files
- Update documentation with the new feature
- Write code that integrates with your existing systems
Got errors? Type /tmfix followed by your error message.
The AI will:
- Check your project context
- Identify the likely cause
- Suggest 3 solutions with pros/cons
- Let you choose the best approach
/tmfix TypeError: Cannot read property 'profile' of undefined
- project-prd.md: Product Requirements Document
- tasks.md: Task tracking with checkboxes
- schema.md: Database schema documentation
- architecture.md: System architecture overview
You can also use AI Taskmaster Lite programmatically in your Node.js applications:
const taskmaster = require('ai-taskmaster-lite');
// Initialize Taskmaster in a project
await taskmaster.initializeTaskmaster();
// Read a Taskmaster file
const prd = await taskmaster.readTaskmasterFile('project-prd.md');
// Write or update a Taskmaster file
await taskmaster.writeTaskmasterFile('tasks.md', updatedTasks);
// Get all Taskmaster context as an object
const context = await taskmaster.getTaskmasterContext();I'm just a shitty self-taught developer who got tired of fixing AI-generated code that breaks my projects. This is my attempt to fix it, but I need your help!
- 🌟 Star the repo if you find it useful
- 🐛 Report issues when you find them
- 🔧 Submit PRs to improve the tool
- 💡 Share ideas for making it even better
When you're in the flow state (aka "vibe coding"), the last thing you want is to debug bad AI suggestions. AI Taskmaster keeps your AI assistant informed about your project so you can stay in the zone.
Code faster | Fix GitHub Copilot | Fix Claude | Fix AI agent coding mistakes | GitHub Copilot Claude | GitHub Copilot OpenAI | ChatGPT | ChatGPT 4o | Taskmaster | Vibe coding | Stop bad AI code | AI coding assistant | VS Code AI | Prompt engineering | AI context | Project management
MIT License - Use it, improve it, share it!