ContextSave
Saves file contents and descriptions from specified paths into a single text file. Generates a unique ID or uses a custom one. Ideal for organizing code context and project details efficiently.
Instructions
Saves provided description and file contents of all the relevant file paths or globs in a single text file.
Provide random 3 word unqiue id or whatever user provided.
Leave project path as empty string if no project path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
id | Yes | ||
project_root_path | Yes | ||
relevant_file_globs | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"project_root_path": {
"type": "string"
},
"relevant_file_globs": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id",
"project_root_path",
"description",
"relevant_file_globs"
],
"type": "object"
}