OpenAuthority
Official@openauthority
Offers granular filesystem manipulation and version control primitives for managing repository state and local directory structures.
Agent Skills by OpenAuthority
Showing 22 vetted skills indexed across 1 GitHub repositories.
git_checkout
Checkout a Git branch or commit with uncommitted change safeguards.
make_dir
Create directories with all missing parent folders and return the absolute path.
git_log
Retrieve git commit history with hash, subject, author, and ISO-8601 date.
read_file
Read UTF-8 text file contents and return them as a string.
git_add
Stage specific files or glob patterns for the next git commit.
find_files
Search directory trees recursively for files matching glob patterns.
git_clone
Clone a remote Git repository to a validated local path.
list_dir
List directory contents with optional recursive traversal and relative paths.
git_diff
Generate unified Git diffs for commits, unstaged changes, or specific paths.
git_reset
Reset Git HEAD to a specified commit using soft, mixed, or hard modes.
git_push
Push local branch commits to a remote Git repository.
read_files_batch
Read multiple files concurrently and map each path to content or error status.
git_branch
Create a new git branch by name with an optional starting point.
check_exists
Check whether a filesystem path exists and return a boolean result.
edit_file
Replace the first occurrence of a string in a file in place.
grep_files
Search directory trees for regex matches and return file paths, line numbers, and content.
git_status
Report staged, unstaged, and untracked files from git status --porcelain.
delete_file
Delete specified filesystem paths while enforcing safety boundary validations.
copy_file
Copy a file from a source path to a destination path while preserving the source.
write_file
Write UTF-8 text content to files with automatic directory creation.
git_merge
Merge a specified branch into the current git branch and report conflicts.
move_file
Move files between paths with validation and atomic rename.
Frequently Asked Questions About OpenAuthority
FAQPage SchemaWhat specific tasks can I perform using OpenAuthority?▼
You can execute comprehensive version control operations including branching, merging, diffing, and pushing commits. Additionally, the registry enables granular filesystem tasks such as recursive directory traversal, batch file reading, regex-based content searching, and safe in-place text editing.
Which personas benefit most from these capabilities?▼
Software engineers, DevOps practitioners, and technical researchers who require programmatic control over local source code environments and filesystem structures will find these primitives essential for managing complex repository states and batch processing tasks.
What are the prerequisites for implementing these functions?▼
Implementation requires a local environment with a standard Git installation and appropriate filesystem read/write permissions. The functions are designed to operate on local paths and remote repositories, assuming the host environment has network access for remote synchronization tasks.