Home >Web Front-end >JS Tutorial >Context Dump: Simplifying AI File Preparation

Context Dump: Simplifying AI File Preparation

Linda Hamilton
Linda HamiltonOriginal
2024-12-27 05:09:18642browse

Context Dump: Simplifying AI File Preparation

If you’ve ever needed to gather specific project files for an AI task, Context Dump might help. It’s a simple CLI tool to generate a JSON dump of your project’s structure and content, ready for AI consumption.

What It Does

Lets you select files interactively using a checkbox.
Automatically ignores files like node_modules, .git, or anything in your .gitignore.
Outputs a structured JSON file containing file paths and contents.

How to Use It

  • Install:
npm install -g context-dump
  • Run in any project directory:
context-dump  

JSON output is saved to ai_context.json by default.

  • You can also:

Change the output filename with -o.
Exclude specific files or folders with -e.

Example Output

Here’s what the JSON looks like:

{  
  "project_structure": ["example.js"],  
  "file_contents": {  
    "example.js": {  
      "content": "console.log('Hello, World!');",  
      "extension": "js"  
    }  
  }  
}

Check it out on Github . If it sounds useful, give it a try.

The above is the detailed content of Context Dump: Simplifying AI File Preparation. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn