llm-context

Apache 2.0
163
  • Apple
  • Linux

lc-list-modified-files

IMPORTANT: First get the generation timestamp from the project context. Returns a list of paths to files that have been modified since a given timestamp. This is typically used to track which files have changed during the conversation. After getting the list, use lc-get-files to examine the contents of any modified files of interest.

Input Schema

NameRequiredDescriptionDefault
profile_nameNoProfile to use (e.g. 'code', 'copy', 'full') - defines file inclusion and presentation rulescode
root_pathYesRoot directory path (e.g. '/home/user/projects/myproject')
timestampYesUnix timestamp to check modifications since

Input Schema (JSON Schema)

{ "properties": { "profile_name": { "default": "code", "description": "Profile to use (e.g. 'code', 'copy', 'full') - defines file inclusion and presentation rules", "pattern": "^[a-zA-Z0-9_-]+$", "title": "Profile Name", "type": "string" }, "root_path": { "description": "Root directory path (e.g. '/home/user/projects/myproject')", "format": "path", "title": "Root Path", "type": "string" }, "timestamp": { "description": "Unix timestamp to check modifications since", "title": "Timestamp", "type": "number" } }, "required": [ "root_path", "timestamp" ], "title": "ListModifiedFilesRequest", "type": "object" }