mycontext-cli 1.0.28 → 1.0.29
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 -72
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -354,78 +354,6 @@ mycontext model --test
|
|
|
354
354
|
- **Context Generation**: 5 minutes for full context
|
|
355
355
|
- **Agent Workflows**: 5 minutes per workflow step
|
|
356
356
|
|
|
357
|
-
## 🛠️ Development & Contributing
|
|
358
|
-
|
|
359
|
-
### Prerequisites
|
|
360
|
-
|
|
361
|
-
- **Node.js**: 18+ (20+ recommended)
|
|
362
|
-
- **pnpm**: Package manager
|
|
363
|
-
- **Git**: Version control
|
|
364
|
-
|
|
365
|
-
### Local Development
|
|
366
|
-
|
|
367
|
-
```bash
|
|
368
|
-
# Clone the monorepo
|
|
369
|
-
git clone https://github.com/farajabien/mycontext.git
|
|
370
|
-
cd mycontext
|
|
371
|
-
|
|
372
|
-
# Install dependencies
|
|
373
|
-
pnpm install
|
|
374
|
-
|
|
375
|
-
# Build all packages
|
|
376
|
-
pnpm build
|
|
377
|
-
|
|
378
|
-
# Run CLI in development mode
|
|
379
|
-
cd packages/cli
|
|
380
|
-
pnpm dev --help
|
|
381
|
-
```
|
|
382
|
-
|
|
383
|
-
### Project Structure
|
|
384
|
-
|
|
385
|
-
```
|
|
386
|
-
mycontext-monorepo/
|
|
387
|
-
├── packages/
|
|
388
|
-
│ ├── cli/ # Main CLI package
|
|
389
|
-
│ │ ├── src/
|
|
390
|
-
│ │ │ ├── commands/ # CLI command implementations
|
|
391
|
-
│ │ │ ├── agents/ # AI agent implementations
|
|
392
|
-
│ │ │ ├── utils/ # Utility functions
|
|
393
|
-
│ │ │ └── config/ # Configuration files
|
|
394
|
-
│ │ └── docs/ # CLI documentation
|
|
395
|
-
│ └── ui/ # Shared UI components
|
|
396
|
-
├── apps/
|
|
397
|
-
│ └── web/ # Web platform (Next.js)
|
|
398
|
-
└── docs/ # Monorepo documentation
|
|
399
|
-
```
|
|
400
|
-
|
|
401
|
-
### Testing
|
|
402
|
-
|
|
403
|
-
```bash
|
|
404
|
-
# Run all tests
|
|
405
|
-
pnpm test
|
|
406
|
-
|
|
407
|
-
# Run CLI tests specifically
|
|
408
|
-
cd packages/cli && pnpm test
|
|
409
|
-
|
|
410
|
-
# Run with coverage
|
|
411
|
-
pnpm test:coverage
|
|
412
|
-
```
|
|
413
|
-
|
|
414
|
-
### Contributing Guidelines
|
|
415
|
-
|
|
416
|
-
1. **Fork** the repository
|
|
417
|
-
2. **Create** a feature branch (`git checkout -b feature/amazing-feature`)
|
|
418
|
-
3. **Commit** your changes (`git commit -m 'Add amazing feature'`)
|
|
419
|
-
4. **Push** to the branch (`git push origin feature/amazing-feature`)
|
|
420
|
-
5. **Open** a Pull Request
|
|
421
|
-
|
|
422
|
-
### Code Standards
|
|
423
|
-
|
|
424
|
-
- **TypeScript**: Strict type checking enabled
|
|
425
|
-
- **ESLint**: Code quality and consistency
|
|
426
|
-
- **Prettier**: Automatic code formatting
|
|
427
|
-
- **Conventional Commits**: Structured commit messages
|
|
428
|
-
|
|
429
357
|
## 📞 Support & Community
|
|
430
358
|
|
|
431
359
|
### Getting Help
|