llm-context

by cyberchitta

lc-list-modified-files

Identify files changed since a specific timestamp in a directory. Use with llm-context to track and analyze modifications during conversations or coding sessions.

Instructions

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" }

You must be authenticated.

Other Tools from llm-context

Related Tools

ID: n895hro51i