@xelth/eck-snapshot 6.0.5 β 6.0.7
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 +9 -0
- package/package.json +14 -1
- package/src/cli/commands/createSnapshot.js +2 -2
package/README.md
CHANGED
|
@@ -60,5 +60,14 @@ Think of AI models like human engineers. Imagine a person standing next to a mas
|
|
|
60
60
|
|
|
61
61
|
LLMs work the exact same way. Giving an AI a "file search" tool is like putting a beginner next to the bookshelf. Forcing a complete project snapshot into the LLM's massive context window is like giving it a university degree in your specific codebase. That is what `eck-snapshot` does.
|
|
62
62
|
|
|
63
|
+
## πΊοΈ Roadmap
|
|
64
|
+
|
|
65
|
+
* **NotebookLM Optimization:** Our generated snapshots already work exceptionally well with Google NotebookLM. In the near future, we plan to introduce specific adaptations and context profiles tailored specifically for NotebookLM's document architecture, alongside our support for standard Web LLMs.
|
|
66
|
+
|
|
67
|
+
## π Ethical Automation Policy
|
|
68
|
+
|
|
69
|
+
This project strictly respects the Terms of Service of AI providers. We will **never** implement browser automation tools (like Playwright, Puppeteer, etc.) to spoof human behavior, scrape, or exploit web chat interfaces that are subsidized and intended solely for human use. We explicitly forbid the integration of such deceptive API-bypassing techniques in any official branches of this project.
|
|
70
|
+
|
|
63
71
|
## License
|
|
64
72
|
MIT Β© xelth-com
|
|
73
|
+
<div align="right"><sup>made in Eschborn</sup></div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xelth/eck-snapshot",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.7",
|
|
4
4
|
"description": "A powerful CLI tool to create and restore single-file text snapshots of Git repositories. Optimized for AI context, LLM workflows, and multi-agent Swarm coordination.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"llm",
|
|
8
|
+
"mcp",
|
|
9
|
+
"snapshot",
|
|
10
|
+
"context",
|
|
11
|
+
"claude",
|
|
12
|
+
"gemini",
|
|
13
|
+
"grok",
|
|
14
|
+
"chatgpt",
|
|
15
|
+
"agent",
|
|
16
|
+
"prompt"
|
|
17
|
+
],
|
|
5
18
|
"main": "index.js",
|
|
6
19
|
"type": "module",
|
|
7
20
|
"bin": {
|
|
@@ -927,9 +927,9 @@ export async function createRepoSnapshot(repoPath, options) {
|
|
|
927
927
|
// Output AI Prompt Suggestion for stubborn LLMs
|
|
928
928
|
console.log('\nπ€ AI PROMPT SUGGESTION (Crucial for ChatGPT, helpful for others):');
|
|
929
929
|
console.log('---------------------------------------------------');
|
|
930
|
-
console.log(chalk.yellow('π‘ Tip:
|
|
930
|
+
console.log(chalk.yellow('π‘ Tip: Gemini and Grok handle large files best. ChatGPT works but can be slow.'));
|
|
931
931
|
console.log('If your AI ignores the file instructions and acts as an external reviewer,');
|
|
932
|
-
console.log('copy and paste this exact prompt along with
|
|
932
|
+
console.log('copy and paste this exact text as your FIRST prompt along with the snapshot file:\n');
|
|
933
933
|
console.log(chalk.cyan.bold('Read the SYSTEM DIRECTIVE at the very beginning of the attached file. Immediately assume the role of Senior Architect as instructed, then await my first task.\n'));
|
|
934
934
|
|
|
935
935
|
} finally {
|