@xelth/eck-snapshot 4.4.0 → 5.0.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.

Potentially problematic release.


This version of @xelth/eck-snapshot might be problematic. Click here for more details.

package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- # eckSnapshot
2
+ # eckSnapshot (v5.0.0)
3
3
 
4
4
  A lightweight, platform-independent CLI for creating focused, AI-ready project snapshots.
5
5
 
@@ -7,6 +7,11 @@ 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
+
10
15
  ## The Core Workflow
11
16
 
12
17
  `eckSnapshot` is designed to support a two-part AI workflow for maximum efficiency and quality:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xelth/eck-snapshot",
3
- "version": "4.4.0",
3
+ "version": "5.0.0",
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",
@@ -28,6 +28,8 @@
28
28
  "url": "https://github.com/xelth-com/eckSnapshot.git"
29
29
  },
30
30
  "dependencies": {
31
+ "@anthropic-ai/sdk": "^0.33.1",
32
+ "@modelcontextprotocol/sdk": "^1.0.1",
31
33
  "@babel/generator": "^7.25.6",
32
34
  "@babel/parser": "^7.25.6",
33
35
  "@babel/traverse": "^7.25.6",
package/setup.json CHANGED
@@ -716,6 +716,25 @@
716
716
  "Runs only in native Windows",
717
717
  "Cannot access WSL-only tools like claude"
718
718
  ]
719
+ },
720
+ "minimax_worker": {
721
+ "active": true,
722
+ "name": "MiniMax M2.1 Worker (MCP)",
723
+ "description": "High-context, low-cost worker for heavy lifting. Accessed via 'delegate_coding_task' tool.",
724
+ "guiSupport": false,
725
+ "identification": {
726
+ "markers": ["minimax", "delegate_coding_task"]
727
+ },
728
+ "capabilities": [
729
+ "read large files internally",
730
+ "generate massive code blocks",
731
+ "refactor huge modules",
732
+ "analyze project structure"
733
+ ],
734
+ "restrictions": [
735
+ "Cannot execute system commands directly (delegates back to Sonnet)",
736
+ "Requires MINIMAX_API_KEY"
737
+ ]
719
738
  }
720
739
  },
721
740
  "browserAutomation": {
package/src/cli/cli.js CHANGED
@@ -64,7 +64,7 @@ async function checkCodeBoundaries(filePath, agentId) {
64
64
  export function run() {
65
65
  const program = new Command();
66
66
 
67
- const helpGuide = `eck-snapshot (v4.1.0) - AI-Native Repository Context Tool.
67
+ const helpGuide = `eck-snapshot (v5.0.0) - AI-Native Repository Context Tool.
68
68
 
69
69
  --- 🚀 Core Workflow: Optimized for Web LLMs (Gemini/ChatGPT) ---
70
70
 
@@ -118,7 +118,7 @@ Option C: Using Profiles
118
118
  program
119
119
  .name('eck-snapshot')
120
120
  .description('A lightweight, platform-independent CLI for creating project snapshots.')
121
- .version('4.1.0')
121
+ .version('5.0.0')
122
122
  .addHelpText('before', helpGuide);
123
123
 
124
124
  // Main snapshot command
@@ -134,7 +134,7 @@ args = ["${indexJsPath}", "ask-claude"]
134
134
  # gemini-cli claude "Generate a project overview"
135
135
 
136
136
  [claude.metadata]
137
- version = "4.1.0"
137
+ version = "5.0.0"
138
138
  author = "eck-snapshot"
139
139
  generated_at = "${new Date().toISOString()}"
140
140
  platform = "${process.platform}"