@anckr/vibeops-cli v0.0.4
VibeOps CLI
](https://badge.fury.io/js/@anckr/vibeops-cli)
Formerly task-master-ai. A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.
An intelligent task management system designed specifically for modern AI-assisted development workflows. VibeOps CLI leverages artificial intelligence to break down complex projects into manageable, well-structured tasks while maintaining clear dependency relationships and comprehensive progress tracking.
š Quick Start
For Cursor MCP Integration (Recommended)
Add this to your .cursor/mcp.json
:
{
"mcpServers": {
"vibeops-cli": {
"command": "npx",
"args": ["-y", "--package=@anckr/vibeops-cli", "vibeops-mcp"],
"env": {
"ANTHROPIC_API_KEY": "your-anthropic-api-key-here",
"PERPLEXITY_API_KEY": "your-perplexity-api-key-here"
}
}
}
}
Alternative MCP Configuration
If you have the package installed locally or globally:
{
"mcpServers": {
"vibeops-cli": {
"command": "npx",
"args": ["-y", "--package=@anckr/vibeops-cli", "@anckr/vibeops-cli"],
"env": {
"ANTHROPIC_API_KEY": "your-anthropic-api-key-here",
"PERPLEXITY_API_KEY": "your-perplexity-api-key-here"
}
}
}
}
Enable in Cursor
Open Cursor Settings (Ctrl+Shift+J) ā” Click on MCP tab on the left ā” Enable vibeops-cli with the toggle
š¦ Installation Options
Global Installation
npm install -g @anckr/vibeops-cli
Local Project Installation
npm install @anckr/vibeops-cli
Requirements
Taskmaster utilizes AI across several commands, and those require a separate API key. You can use a variety of models from different AI providers provided you add your API keys. For example, if you want to use Claude 3.7, you'll need an Anthropic API key.
You can define 3 types of models to be used: the main model, the research model, and the fallback model (in case either the main or research fail). Whatever model you use, its provider API key must be present in either mcp.json or .env.
At least one (1) of the following is required:
- Anthropic API key (Claude API)
- OpenAI API key
- Google Gemini API key
- Perplexity API key (for research model)
- xAI API Key (for research or main model)
- OpenRouter API Key (for research or main model)
Using the research model is optional but highly recommended. You will need at least ONE API key. Adding all API keys enables you to seamlessly switch between model providers at will.
Documentation
For more detailed information, check out the documentation in the docs
directory:
- Configuration Guide - Set up environment variables and customize Task Master
- Tutorial - Step-by-step guide to getting started with Task Master
- Command Reference - Complete list of all available commands
- Task Structure - Understanding the task format and features
- Example Interactions - Common Cursor AI interaction examples
- Migration Guide - Guide to migrating to the new project structure
Troubleshooting
If task-master init
doesn't respond:
Try running it with Node directly:
node node_modules/claude-task-master/scripts/init.js
Or clone the repository and run:
git clone https://github.com/eyaltoledano/claude-task-master.git
cd claude-task-master
node scripts/init.js
Contributors
Star History
Licensing
Task Master is licensed under the MIT License with Commons Clause. This means you can:
ā Allowed:
- Use Task Master for any purpose (personal, commercial, academic)
- Modify the code
- Distribute copies
- Create and sell products built using Task Master
ā Not Allowed:
- Sell Task Master itself
- Offer Task Master as a hosted service
- Create competing products based on Task Master
See the LICENSE file for the complete license text and licensing details for more information.