Super Prompt v7.1.0 - Simplified Development Assistant for Cursor IDE
npm install @cdw0424/super-prompt  
Simplified Development Assistant for Cursor IDE
Super Prompt v7 is a complete rewrite focused on simplicity and Cursor IDE integration. It provides framework-specific best practices, professional development roles, and a lightweight Spec-Driven Development workflow.
- ๐ฏ Framework Selection: Choose your stack (Next.js, React, React Router v7, Vue, Python, Django, FastAPI)
- ๐ Simplified Architecture: No more MCP/Python dependencies
- ๐ Cursor Rules & Commands: Native .mdc rules and /commands
- ๐ฅ 10 Professional Roles: @architect, @frontend, @backend, and more
- โก SDD Micro-Cycle: Lightweight spec-driven development workflow
- ๐งน Clean Installation: Single command setup with no legacy baggage
``bashInstall globally
npm install -g @cdw0424/super-prompt
$3
When you run
super:init, you'll be prompted to select your project type:`
๐ฆ Select your project type: 1. Next.js + TypeScript (React framework)
2. React + TypeScript
3. React Router v7 + TypeScript
4. Vue.js + TypeScript
5. Python
6. Django (Python web framework)
7. FastAPI (Python API framework)
8. All Frameworks (install everything)
Enter your choice (1-8) [1]:
`$3
After initialization, your project will have:
`
your-project/
โโโ .cursor/
โ โโโ rules/
โ โ โโโ 01-codequality.mdc # Code quality guidelines
โ โ โโโ 10-clean-code.mdc # Clean code principles
โ โ โโโ 30-typescript.mdc # TypeScript best practices (if selected)
โ โ โโโ 40-react.mdc # React best practices (if selected)
โ โ โโโ roles/ # 10 professional roles
โ โ โโโ architect.mdc
โ โ โโโ backend.mdc
โ โ โโโ frontend.mdc
โ โ โโโ devops.mdc
โ โ โโโ double-check.mdc
โ โ โโโ performance.mdc
โ โ โโโ qa.mdc
โ โ โโโ refactor.mdc
โ โ โโโ security.mdc
โ โ โโโ troubleshooting.mdc
โ โโโ commands/
โ โโโ sdd-micro.md # Spec-Driven Development workflow
โโโ ...
`๐ Features
$3
These rules are automatically applied to all your code:
- Code Quality Guidelines - Best practices for clean, maintainable code
- Clean Code Principles - SOLID principles, DRY, SSOT compliance
- Framework-Specific Rules - Tailored to your selected framework
$3
Invoke specialized AI roles for different tasks:
| Role | Command | Description |
|------|---------|-------------|
| Architect |
@architect | System architecture design and technical decisions |
| Backend | @backend | Backend & API development, scalability, security |
| Frontend | @frontend | Frontend & UI/UX development, accessibility |
| DevOps | @devops | CI/CD, infrastructure, deployment automation |
| Double Check | @double-check | Risk audit, verification, confession-driven review |
| Performance | @performance | Performance optimization, profiling, benchmarking |
| QA | @qa | Quality assurance, testing strategy, test automation |
| Refactor | @refactor | Code refactoring, technical debt reduction |
| Security | @security | Security audit, threat modeling, vulnerability analysis |
| Troubleshooting | @troubleshooting | Debugging, root-cause analysis, incident response |$3
Execute specialized workflows:
-
/sdd-micro - Lightweight Spec-Driven Development workflow
- Clarify requirements
- Plan implementation
- Implement with confidence
- Verify completion๐ฏ Usage Examples
$3
`
/sdd-micro> What feature are you building?
Add rate limiting to API
> Why does this matter?
Prevent abuse and ensure fair usage
> How will you know it's done?
- 100 req/min limit enforced
- 429 status on exceed
- Rate limit headers in response
โ Created: docs/super-prompt/sdd/001-251010-add-rate-limiting/spec.md
โ Created: docs/super-prompt/sdd/001-251010-add-rate-limiting/plan.md
`$3
`
@architect How should I structure a microservices architecture?@frontend What's the best way to implement dark mode in React?
@security Can you review this authentication flow for vulnerabilities?
@performance How can I optimize this database query?
`$3
`
@double-check Review this PR for potential issues@qa What test cases should I add for this feature?
@refactor How can I improve this code's maintainability?
`๐ Upgrading from v6 to v7
v7 is a complete rewrite with breaking changes. Follow these steps for a clean upgrade:
$3
`bash
Uninstall old version
npm uninstall -g @cdw0424/super-promptRemove old global files (if they exist)
rm -rf ~/.super-prompt
rm -rf ~/.cursor/mcp.json # Only if you used v6 MCP features
`$3
`bash
cd your-projectRemove old Super Prompt files
rm -rf .super-prompt/
rm -rf .cursor/rules/-sdd-.mdc
rm -rf python-packages/
rm -rf personas/Remove old MCP configuration (if exists)
rm -f .cursor/mcp.json
`$3
`bash
Install new version
npm install -g @cdw0424/super-promptInitialize in your project
super-prompt super:init
`$3
Choose the framework that matches your project when prompted.
$3
| v6 | v7 |
|----|-----|
| MCP + Python architecture | Pure JavaScript/Node.js |
| 29+ personas | 10 focused roles |
| Complex SDD workflow | Lightweight SDD micro-cycle |
|
.md commands | .mdc rules + .md commands |
| Manual mode switching | Framework-based configuration |
| Global MCP server | Cursor-native integration |๐ ๏ธ Supported Frameworks
$3
- Next.js - React framework with server-side rendering
- React - React library with TypeScript
- React Router v7 - React Router v7 with file-based routing and data loading
- Vue.js - Vue.js framework with TypeScript
$3
- Python - Python development best practices
- Django - Django web framework
- FastAPI - FastAPI framework for APIs
$3
Select "All Frameworks" if you work with multiple stacks or want all rules available.
๐ Documentation
$3
The SDD (Spec-Driven Development) micro-cycle is a lightweight workflow inspired by GitHub's Spec-Kit:
1. Clarify (3-5 min) - Define what you're building and why
2. Plan (5-10 min) - Outline how you'll build it
3. Implement - Execute the plan with confidence
4. Verify - Ensure success criteria are met
Each feature gets its own folder:
`
docs/super-prompt/sdd/
โโโ 001-251010-add-rate-limiting/
โ โโโ spec.md
โ โโโ plan.md
โ โโโ notes.md
โโโ 002-251015-jwt-authentication/
โ โโโ spec.md
โ โโโ plan.md
โโโ ...
``Each role provides:
- Specialized expertise in their domain
- Evidence-based analysis with references
- Actionable recommendations with priorities
- Risk assessment and mitigation strategies
- Best practices from industry standards
Contributions are welcome! Please read our contributing guidelines before submitting PRs.
MIT License - see LICENSE for details.
- Issues: GitHub Issues
- Discussions: GitHub Discussions
Built with โค๏ธ for the Cursor IDE community.
---
Super Prompt v7 - Simplified Development Assistant for Cursor IDE