@xelth/eck-snapshot 5.0.1 → 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 -19
- package/package.json +1 -1
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,24 +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
|
-
## 🤖 MiniMax M2.1 Integration
|
|
11
|
-
|
|
12
|
-
eckSnapshot supports **two ways** to integrate with MiniMax M2.1, a cost-effective AI model with a huge context window:
|
|
13
|
-
|
|
14
|
-
### Method 1: Supervisor-Worker Mode (Hybrid)
|
|
15
|
-
Claude Code acts as the Supervisor, delegating heavy tasks to MiniMax via MCP. Best for interactive development.
|
|
16
|
-
- **Setup:** [Hybrid Mode Guide](./MINIMAX_INTEGRATION.md#method-1-supervisor-worker-mode-hybrid-architecture)
|
|
17
|
-
- **Cost:** Moderate (Claude + MiniMax)
|
|
18
|
-
- **Complexity:** Requires MCP setup
|
|
19
|
-
|
|
20
|
-
### Method 2: Standalone Mode
|
|
21
|
-
Use MiniMax directly as your primary AI assistant. Best for batch processing and bulk refactoring.
|
|
22
|
-
- **Setup:** [Standalone Guide](./MINIMAX_INTEGRATION.md#method-2-standalone-mode-direct-minimax-usage)
|
|
23
|
-
- **Cost:** Low (MiniMax only)
|
|
24
|
-
- **Complexity:** Simple shell alias
|
|
25
|
-
|
|
26
|
-
👉 **[Read the Full Integration Guide](./MINIMAX_INTEGRATION.md)** for detailed setup instructions and comparison.
|
|
27
|
-
|
|
28
10
|
## The Core Workflow
|
|
29
11
|
|
|
30
12
|
`eckSnapshot` is designed to support a two-part AI workflow for maximum efficiency and quality:
|
|
@@ -255,6 +237,24 @@ This generates `.eck/snapshots/update_<timestamp>.md`.
|
|
|
255
237
|
|
|
256
238
|
For a full list of commands and options, run `eck-snapshot --help`.
|
|
257
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
|
+
|
|
258
258
|
## Experimental Features
|
|
259
259
|
|
|
260
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",
|