Examples
Examples from Firma-AI/openauthority.
Skills in this plugin
22- ▌
- ▌ Git Log · firma-aiReturns formatted commit history for a git repository, with optional limit and path filters.
- ▌ Git Diff · firma-aiReturns unified diff output for a git repository, with optional ref and path filters.
- ▌
- ▌ List Dir · firma-aiLists file and directory names in a specified path, with optional recursive traversal.
- ▌ Make Dir · firma-aiCreates a directory at the specified path, including any missing parent directories. Returns gracefully if the directory already exists.
- ▌ Copy File · firma-aiCopies a file from a source path to a destination path. The source file remains unchanged after the operation.
- ▌
- ▌
- ▌
- ▌ Git Reset · firma-aiResets the current HEAD to a specified commit with a chosen reset mode (soft, mixed, or hard).
- ▌ Move File · firma-aiMoves a file from a source path to a destination path. The source file is removed after a successful move.
- ▌
- ▌ Find Files · firma-aiSearches a directory tree recursively for files whose relative path matches a glob pattern, returning an array of absolute file paths.
- ▌
- ▌ Git Status · firma-aiReturns the current git repository status with staged, unstaged, and untracked file lists.
- ▌ Grep Files · firma-aiSearches for a regex pattern across files in a directory tree, returning an array of matches with file paths, line numbers, and matched line content.
- ▌ Write File · firma-aiWrites UTF-8 text content to a file, creating it (and any missing parent directories) if it does not exist, or overwriting it if it does.
- ▌ Delete File · firma-aiRemoves a file or empty directory at the specified path. Recursive deletion and trash/recycle-bin moves are out of scope.
- ▌ Check Exists · firma-aiChecks whether a given path exists in the filesystem, returning a boolean result for both files and directories.
- ▌ Git Checkout · firma-aiSwitches the working directory to a specified branch or commit in a git repository.
- ▌ Read Files Batch · firma-aiReads the UTF-8 text content of multiple files in a single concurrent operation, returning a mapping of paths to their content or error status.