deepthinking-mcp 4.3.6 → 4.8.0
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 +23 -0
- package/dist/index.js +926 -101
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -586,6 +586,29 @@ security/
|
|
|
586
586
|
|
|
587
587
|
We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
588
588
|
|
|
589
|
+
### Adding New Reasoning Modes
|
|
590
|
+
|
|
591
|
+
Want to add a new reasoning mode? We've made it easy:
|
|
592
|
+
|
|
593
|
+
📖 **[Complete Guide: Adding a New Mode](docs/ADDING_NEW_MODE.md)**
|
|
594
|
+
|
|
595
|
+
This guide includes:
|
|
596
|
+
- Step-by-step instructions for all 8 required files
|
|
597
|
+
- Template files in `templates/mode-scaffolding/`
|
|
598
|
+
- Code examples and common patterns
|
|
599
|
+
- Complete checklist to ensure nothing is missed
|
|
600
|
+
- Testing guidelines
|
|
601
|
+
|
|
602
|
+
**Quick Start**:
|
|
603
|
+
```bash
|
|
604
|
+
# Copy template files
|
|
605
|
+
cp templates/mode-scaffolding/example-mode.type.ts src/types/modes/yourmode.ts
|
|
606
|
+
cp templates/mode-scaffolding/example-mode.validator.ts src/validation/validators/modes/yourmode.ts
|
|
607
|
+
|
|
608
|
+
# Follow the guide
|
|
609
|
+
cat docs/ADDING_NEW_MODE.md
|
|
610
|
+
```
|
|
611
|
+
|
|
589
612
|
### Development Setup
|
|
590
613
|
|
|
591
614
|
```bash
|