@xelth/eck-snapshot 5.0.0 → 5.0.2
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.
Potentially problematic release.
This version of @xelth/eck-snapshot might be problematic. Click here for more details.
- package/README.md +19 -6
- package/package.json +1 -1
- package/setup.json +24 -7
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
# eckSnapshot (v5.0.
|
|
2
|
+
# eckSnapshot (v5.0.2)
|
|
3
3
|
|
|
4
4
|
A lightweight, platform-independent CLI for creating focused, AI-ready project snapshots.
|
|
5
5
|
|
|
@@ -7,11 +7,6 @@ A lightweight, platform-independent CLI for creating focused, AI-ready project s
|
|
|
7
7
|
|
|
8
8
|
This tool is built for a modern workflow where you act as the architect, guiding the overall strategy, while AI agents handle the detailed implementation.
|
|
9
9
|
|
|
10
|
-
## 🤖 Hybrid AI Support (MiniMax Integration)
|
|
11
|
-
|
|
12
|
-
This project supports a **Supervisor-Worker** mode to save tokens and costs.
|
|
13
|
-
👉 **[Read the Integration Guide](./MINIMAX_INTEGRATION.md)** to enable this feature.
|
|
14
|
-
|
|
15
10
|
## The Core Workflow
|
|
16
11
|
|
|
17
12
|
`eckSnapshot` is designed to support a two-part AI workflow for maximum efficiency and quality:
|
|
@@ -242,6 +237,24 @@ This generates `.eck/snapshots/update_<timestamp>.md`.
|
|
|
242
237
|
|
|
243
238
|
For a full list of commands and options, run `eck-snapshot --help`.
|
|
244
239
|
|
|
240
|
+
## 🤖 MiniMax M2.1 Integration
|
|
241
|
+
|
|
242
|
+
eckSnapshot supports **two ways** to integrate with MiniMax M2.1, a cost-effective AI model with a huge context window:
|
|
243
|
+
|
|
244
|
+
### Method 1: Supervisor-Worker Mode (Hybrid)
|
|
245
|
+
Claude Code acts as the Supervisor, delegating heavy tasks to MiniMax via MCP. Best for interactive development.
|
|
246
|
+
- **Setup:** [Hybrid Mode Guide](./MINIMAX_INTEGRATION.md#method-1-supervisor-worker-mode-hybrid-architecture)
|
|
247
|
+
- **Cost:** Moderate (Claude + MiniMax)
|
|
248
|
+
- **Complexity:** Requires MCP setup
|
|
249
|
+
|
|
250
|
+
### Method 2: Standalone Mode
|
|
251
|
+
Use MiniMax directly as your primary AI assistant. Best for batch processing and bulk refactoring.
|
|
252
|
+
- **Setup:** [Standalone Guide](./MINIMAX_INTEGRATION.md#method-2-standalone-mode-direct-minimax-usage)
|
|
253
|
+
- **Cost:** Low (MiniMax only)
|
|
254
|
+
- **Complexity:** Simple shell alias
|
|
255
|
+
|
|
256
|
+
👉 **[Read the Full Integration Guide](./MINIMAX_INTEGRATION.md)** for detailed setup instructions and comparison.
|
|
257
|
+
|
|
245
258
|
## Experimental Features
|
|
246
259
|
|
|
247
260
|
⚠️ **juniorArchitect**: This feature is currently under development and not yet functional. It's intended to provide automated architectural analysis and suggestions. Contributions to complete this feature are welcome!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xelth/eck-snapshot",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"description": "A powerful CLI tool to create and restore single-file text snapshots of Git repositories and directories. Optimized for AI context and LLM workflows.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
package/setup.json
CHANGED
|
@@ -569,8 +569,8 @@
|
|
|
569
569
|
"executionAgents": {
|
|
570
570
|
"local_dev": {
|
|
571
571
|
"active": true,
|
|
572
|
-
"name": "Local Development Agent (
|
|
573
|
-
"description": "
|
|
572
|
+
"name": "Local Development Agent (Sonnet 4.5)",
|
|
573
|
+
"description": "Primary interactive agent running on Claude Sonnet 4.5. Acts as the Team Lead.",
|
|
574
574
|
"guiSupport": true,
|
|
575
575
|
"identification": {
|
|
576
576
|
"markers": [
|
|
@@ -720,7 +720,7 @@
|
|
|
720
720
|
"minimax_worker": {
|
|
721
721
|
"active": true,
|
|
722
722
|
"name": "MiniMax M2.1 Worker (MCP)",
|
|
723
|
-
"description": "
|
|
723
|
+
"description": "Heavy lifter for bulk coding. Behavior controlled by delegationStrategy.",
|
|
724
724
|
"guiSupport": false,
|
|
725
725
|
"identification": {
|
|
726
726
|
"markers": ["minimax", "delegate_coding_task"]
|
|
@@ -755,6 +755,23 @@
|
|
|
755
755
|
"MUST NOT use 'eck-snapshot ask-claude' wrapper for these tasks"
|
|
756
756
|
]
|
|
757
757
|
},
|
|
758
|
+
"delegationStrategy": {
|
|
759
|
+
"currentMode": "balanced",
|
|
760
|
+
"modes": {
|
|
761
|
+
"aggressive": {
|
|
762
|
+
"description": "Maximize token savings. Delegate ALL file reading and coding > 50 lines.",
|
|
763
|
+
"threshold_lines": 50
|
|
764
|
+
},
|
|
765
|
+
"balanced": {
|
|
766
|
+
"description": "Default. Delegate full file refactoring and massive generation. Read small files directly.",
|
|
767
|
+
"threshold_lines": 200
|
|
768
|
+
},
|
|
769
|
+
"precise": {
|
|
770
|
+
"description": "Maximize quality. Use Sonnet 4.5 for logic, MiniMax only for boilerplate/docs.",
|
|
771
|
+
"threshold_lines": 1000
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
},
|
|
758
775
|
"header": {
|
|
759
776
|
"defaultEnabled": true,
|
|
760
777
|
"_comment": "Controls whether AI instruction headers are included by default in snapshots"
|
|
@@ -791,12 +808,12 @@
|
|
|
791
808
|
"defaultMembers": {
|
|
792
809
|
"architect": {
|
|
793
810
|
"active": true,
|
|
794
|
-
"modelName": "
|
|
811
|
+
"modelName": "Opus 4.5",
|
|
795
812
|
"role": "System Architecture",
|
|
796
813
|
"strengths": [
|
|
797
|
-
"
|
|
798
|
-
"
|
|
799
|
-
"
|
|
814
|
+
"Complex Reasoning",
|
|
815
|
+
"System Design",
|
|
816
|
+
"Critical Decisions"
|
|
800
817
|
]
|
|
801
818
|
},
|
|
802
819
|
"database_expert": {
|