mycontext-cli 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -169
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -229,36 +229,6 @@ mycontext build-app --interactive
|
|
|
229
229
|
# Supports human intervention when needed
|
|
230
230
|
```
|
|
231
231
|
|
|
232
|
-
## 💰 Business Model & Pricing
|
|
233
|
-
|
|
234
|
-
### **Free Tier (Always Free)**
|
|
235
|
-
|
|
236
|
-
- ✅ Unlimited basic generation with Qwen3 Coder
|
|
237
|
-
- ✅ Core CLI features and commands
|
|
238
|
-
- ✅ Community support and documentation
|
|
239
|
-
- ✅ Local AI setup with Ollama
|
|
240
|
-
|
|
241
|
-
### **Pro Tier ($9/month)**
|
|
242
|
-
|
|
243
|
-
- ✅ Advanced AI generation with premium providers
|
|
244
|
-
- ✅ Priority support and faster response times
|
|
245
|
-
- ✅ Enhanced features and beta access
|
|
246
|
-
- ✅ Team collaboration tools
|
|
247
|
-
|
|
248
|
-
### **Enterprise Tier ($29/month)**
|
|
249
|
-
|
|
250
|
-
- ✅ Custom AI model training and fine-tuning
|
|
251
|
-
- ✅ White-label solutions and branding
|
|
252
|
-
- ✅ On-premise deployment options
|
|
253
|
-
- ✅ Dedicated enterprise support and SLAs
|
|
254
|
-
|
|
255
|
-
### **Bring Your Own Keys (BYOK)**
|
|
256
|
-
|
|
257
|
-
- ✅ Use your existing API provider accounts
|
|
258
|
-
- ✅ Pay only for your actual API usage
|
|
259
|
-
- ✅ Full control over costs and performance
|
|
260
|
-
- ✅ No rate limits or usage tracking
|
|
261
|
-
|
|
262
232
|
## 🤖 AI Provider Options
|
|
263
233
|
|
|
264
234
|
MyContext supports multiple AI providers with intelligent fallback:
|
|
@@ -388,142 +358,3 @@ cp .mycontext/brand/globals.css ./src/app/globals.css
|
|
|
388
358
|
Hello World
|
|
389
359
|
</div>
|
|
390
360
|
```
|
|
391
|
-
|
|
392
|
-
## Key Features
|
|
393
|
-
|
|
394
|
-
### 🤖 **Agent-Driven Development**
|
|
395
|
-
|
|
396
|
-
- **11 Specialized Agents**: Each agent handles specific development tasks
|
|
397
|
-
- **Intelligent Orchestration**: Agents work together seamlessly
|
|
398
|
-
- **Human-in-the-Loop**: Interactive prompts and confirmations
|
|
399
|
-
- **Quality Gates**: Built-in validation and retry mechanisms
|
|
400
|
-
|
|
401
|
-
### 🎯 **Context-Aware Generation**
|
|
402
|
-
|
|
403
|
-
- **Deep Project Understanding**: Analyzes existing codebase patterns
|
|
404
|
-
- **A/B/C/D Context Files**: Comprehensive project specification
|
|
405
|
-
- **Automatic Context Loading**: Commands use project context intelligently
|
|
406
|
-
- **Consistent Results**: Same context produces consistent outputs
|
|
407
|
-
|
|
408
|
-
### 🏗️ **Production-Ready Code**
|
|
409
|
-
|
|
410
|
-
- **TypeScript First**: Complete type system with 5 specialized files
|
|
411
|
-
- **Modern React**: Next.js 15, shadcn/ui, server components
|
|
412
|
-
- **Accessibility**: WCAG compliant components
|
|
413
|
-
- **Testing**: Comprehensive test suites included
|
|
414
|
-
- **Documentation**: Auto-generated component docs
|
|
415
|
-
|
|
416
|
-
### 🎨 **Complete Design System**
|
|
417
|
-
|
|
418
|
-
- **Brand Kit Generation**: Colors, typography, components
|
|
419
|
-
- **CSS Custom Properties**: Theme-able design tokens
|
|
420
|
-
- **Component Library**: Consistent, reusable components
|
|
421
|
-
- **Responsive Design**: Mobile-first approach
|
|
422
|
-
|
|
423
|
-
### 🔧 **Developer Experience**
|
|
424
|
-
|
|
425
|
-
- **Interactive CLI**: Guided workflows with progress indicators
|
|
426
|
-
- **Multiple AI Providers**: Choose your preferred AI service
|
|
427
|
-
- **Fallback Support**: Always works, even without API keys
|
|
428
|
-
- **Extensible Architecture**: Plugin system for custom agents
|
|
429
|
-
|
|
430
|
-
## 🛠️ Development & Contributing
|
|
431
|
-
|
|
432
|
-
### Prerequisites
|
|
433
|
-
|
|
434
|
-
- **Node.js**: 18+ (20+ recommended)
|
|
435
|
-
- **pnpm**: Package manager
|
|
436
|
-
- **Git**: Version control
|
|
437
|
-
|
|
438
|
-
### Local Development
|
|
439
|
-
|
|
440
|
-
```bash
|
|
441
|
-
# Clone the monorepo
|
|
442
|
-
git clone https://github.com/farajabien/mycontext.git
|
|
443
|
-
cd mycontext
|
|
444
|
-
|
|
445
|
-
# Install dependencies
|
|
446
|
-
pnpm install
|
|
447
|
-
|
|
448
|
-
# Build all packages
|
|
449
|
-
pnpm build
|
|
450
|
-
|
|
451
|
-
# Run CLI in development mode
|
|
452
|
-
cd packages/cli
|
|
453
|
-
pnpm dev --help
|
|
454
|
-
```
|
|
455
|
-
|
|
456
|
-
### Project Structure
|
|
457
|
-
|
|
458
|
-
```
|
|
459
|
-
mycontext-monorepo/
|
|
460
|
-
├── packages/
|
|
461
|
-
│ ├── cli/ # Main CLI package
|
|
462
|
-
│ │ ├── src/
|
|
463
|
-
│ │ │ ├── commands/ # CLI command implementations
|
|
464
|
-
│ │ │ ├── agents/ # AI agent implementations
|
|
465
|
-
│ │ │ ├── utils/ # Utility functions
|
|
466
|
-
│ │ │ └── config/ # Configuration files
|
|
467
|
-
│ │ └── docs/ # CLI documentation
|
|
468
|
-
│ └── ui/ # Shared UI components
|
|
469
|
-
├── apps/
|
|
470
|
-
│ └── web/ # Web platform (Next.js)
|
|
471
|
-
└── docs/ # Monorepo documentation
|
|
472
|
-
```
|
|
473
|
-
|
|
474
|
-
### Testing
|
|
475
|
-
|
|
476
|
-
```bash
|
|
477
|
-
# Run all tests
|
|
478
|
-
pnpm test
|
|
479
|
-
|
|
480
|
-
# Run CLI tests specifically
|
|
481
|
-
cd packages/cli && pnpm test
|
|
482
|
-
|
|
483
|
-
# Run with coverage
|
|
484
|
-
pnpm test:coverage
|
|
485
|
-
```
|
|
486
|
-
|
|
487
|
-
### Contributing Guidelines
|
|
488
|
-
|
|
489
|
-
1. **Fork** the repository
|
|
490
|
-
2. **Create** a feature branch (`git checkout -b feature/amazing-feature`)
|
|
491
|
-
3. **Commit** your changes (`git commit -m 'Add amazing feature'`)
|
|
492
|
-
4. **Push** to the branch (`git push origin feature/amazing-feature`)
|
|
493
|
-
5. **Open** a Pull Request
|
|
494
|
-
|
|
495
|
-
### Code Standards
|
|
496
|
-
|
|
497
|
-
- **TypeScript**: Strict type checking enabled
|
|
498
|
-
- **ESLint**: Code quality and consistency
|
|
499
|
-
- **Prettier**: Automatic code formatting
|
|
500
|
-
- **Conventional Commits**: Structured commit messages
|
|
501
|
-
|
|
502
|
-
## 📞 Support & Community
|
|
503
|
-
|
|
504
|
-
### Getting Help
|
|
505
|
-
|
|
506
|
-
- **📧 Email**: hello@fbien.com
|
|
507
|
-
- **🐛 Issues**: [GitHub Issues](https://github.com/farajabien/mycontext/issues)
|
|
508
|
-
- **💬 Discussions**: [GitHub Discussions](https://github.com/farajabien/mycontext/discussions)
|
|
509
|
-
- **📖 Documentation**: [docs.mycontext.fbien.com](https://docs.mycontext.fbien.com)
|
|
510
|
-
|
|
511
|
-
### Community
|
|
512
|
-
|
|
513
|
-
- **Share Components**: Contribute to the component library
|
|
514
|
-
- **Report Bugs**: Help improve stability and reliability
|
|
515
|
-
- **Feature Requests**: Suggest new capabilities and improvements
|
|
516
|
-
- **Beta Testing**: Get early access to new features
|
|
517
|
-
|
|
518
|
-
### Enterprise Support
|
|
519
|
-
|
|
520
|
-
- **Custom Deployments**: On-premise and private cloud options
|
|
521
|
-
- **White-label Solutions**: Custom branding and integration
|
|
522
|
-
- **Dedicated Support**: Priority response and SLAs
|
|
523
|
-
- **Training**: Team onboarding and best practices
|
|
524
|
-
|
|
525
|
-
---
|
|
526
|
-
|
|
527
|
-
**🚀 Ready to transform your development workflow with AI-powered agents?**
|
|
528
|
-
|
|
529
|
-
_Built with ❤️ by the MyContext team - Making AI work for developers, not against them._
|
package/package.json
CHANGED