Skip to main content

Command Families Reference

archive_inspection

Label: Archive operations

Description: Inspect archives, extract them only to explicit destinations, and create tar.gz/zip archives only from explicit source paths.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
tararchive_inspectionallsafestructuredstructured (normal executable support)yesexplicitnotar -tf archive.tar
tar -xf archive.tar -C out
tar -czf backup.tar.gz src
list tar archive, inspect tar archive, show tar contents, list archive contents, extract tar archive, extract archive into destination, create tar gz archive, create tar archive from explicit pathsSupports read-only tar archive listing, guarded extraction with an explicit destination, and guarded tar.gz creation from explicit source paths.
Tar extraction is write-risk and can write or overwrite files in the destination.
Tar archive creation is write-risk and may overwrite an existing archive path depending on the underlying tar implementation.
Only tar -czf <archive_path> <source_paths...> is supported for tar.gz creation; broad roots, home roots, wildcards, path transforms, extraction without -C, and arbitrary tar options are not supported.
unziparchive_inspectionallsafestructuredstructured (normal executable support)yesexplicitnounzip -l archive.zip
unzip archive.zip -d out
list zip archive, inspect zip archive, show zip contents, show what is inside zip, extract zip archive, unzip archive into destinationSupports read-only zip archive listing and guarded extraction with an explicit destination.
Zip extraction is write-risk and can write or overwrite files in the destination.
Extraction without -d, overwrite flags, password handling, and arbitrary unzip options are not supported.
ziparchive_inspectionallwritestructuredstructured (normal executable support)yesexplicitnozip -r backup.zip srccreate zip archive, zip folder into archive, create zip archive from explicit pathsSupports guarded zip archive creation from explicit source paths.
Zip archive creation is write-risk and may overwrite or update an existing archive path depending on the underlying zip implementation.
Only zip -r <archive_path> <source_paths...> is supported; broad roots, home roots, wildcards, encryption, passwords, split archives, append/update flags, deleting sources, network destinations, and arbitrary zip options are not supported.

destructive_operations

Label: Destructive operations

Description: High-risk operations that can remove data or escalate privileges.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
rmdestructivealldangerousexperimental_onlyexperimental-only (constrained executable fallback)yesexplicitnorm -i old.logremove file, delete file
sudoprivilegedalldangerousblockedblocked (unavailable)noexplicitnosudo ls /var/rootrun as root, elevated command

filesystem_inspection

Label: Filesystem inspection

Description: Inspect local files, folders, and metadata safely.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
cdnavigationallsafedirect_onlydirect-only (direct executable support only)yesexplicitnocd srcchange directory, go to folderChanges the oterminus working directory for the current REPL session.
duinspectionallsafestructuredstructured (normal executable support)yesexplicitnodu -h .disk usage, folder size
fileinspectionallsafestructuredstructured (normal executable support)yesexplicitnofile README.mdidentify file type
findsearchallsafestructuredstructured (normal executable support)yesexplicitnofind . -maxdepth 3 -type f -name '*.py'find files, search directoriesSupports read-only predicates: -name <pattern>, -type f
lsinspectionallsafestructuredstructured (normal executable support)yessafe_inspection_passthroughnols -lalist files, show directory contents
pwdnavigationallsafestructuredstructured (normal executable support)yesexplicitnopwdwhere am i, print working directory
statinspectionallsafestructuredstructured (normal executable support)yesexplicitnostat README.mdfile metadata, file info
treeinspectionallsafestructuredstructured (normal executable support)yesexplicitnotree -a -L 3 .show directory tree, show folder tree, directory overviewRequires the optional external tree executable.
Supports one local path, hidden entries, directories-only output, and bounded depth.

filesystem_mutation

Label: Filesystem mutation

Description: Create, copy, move, or modify files and directory state.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
chmodpermissionsallwritestructuredstructured (normal executable support)yesexplicitnochmod 755 script.shchange permissions, set file mode
chownpermissionsalldangerousexperimental_onlyexperimental-only (constrained executable fallback)yesexplicitnochown user:group file.txtchange file owner
cpfilesystem_writeallwritestructuredstructured (normal executable support)yesexplicitnocp notes.txt backup/notes.txtcopy file, duplicate file
mkdirfilesystem_writeallwritestructuredstructured (normal executable support)yesexplicitnomkdir -p logs/archivecreate folder, make directory
mvfilesystem_writeallwritestructuredstructured (normal executable support)yesexplicitnomv report.md docs/move file, rename file
touchfilesystem_writeallwritestructuredstructured (normal executable support)yesexplicitnotouch notes.txtcreate empty fileCreates a missing file or updates timestamps when the target already exists.

git_inspection

Label: Git inspection

Description: Read-only inspection of local Git repository state.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
gitgit_inspectionallsafestructuredstructured (normal executable support)yesexplicitnogit status --short
git branch --show-current
git log --oneline -n 5
git diff --stat
git diff --name-only
git status, short git status, what branch am i on, show current git branch, show recent git commits, show git diff summary, show changed files, inspect git repoOnly read-only Git inspection operations are supported in curated mode.

macos_desktop

Label: macOS desktop integration

Description: Open local paths in Finder or default macOS apps.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
openmacos_integrationdarwinsafestructuredstructured (normal executable support)yesexplicitnoopen .open in finder, reveal in finderOpens a local file or folder via macOS LaunchServices.

network_diagnostics

Label: Network diagnostics

Description: Run constrained read-only diagnostics that contact external hosts.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
curlnetwork_inspectionallsafestructuredstructured (normal executable support)yesexplicityescurl -I https://example.comshow HTTP headers, http head requestThis command contacts external hosts and may reveal your IP address, DNS query, target host, or network metadata.
Only ping with a fixed count, HTTP HEAD requests, dig lookups, and nslookup lookups are supported.
POST/PUT/PATCH/DELETE, request bodies, arbitrary or secret-bearing headers, authorization, cookies, downloads, redirects that write files, scanning, traceroute, SSH/SCP, netcat, nmap, wget, sudo network commands, and arbitrary network shell commands are not supported.
dignetwork_inspectionallsafestructuredstructured (normal executable support)yesexplicityesdig example.comdns lookup, get dns recordsThis command contacts external hosts and may reveal your IP address, DNS query, target host, or network metadata.
Only ping with a fixed count, HTTP HEAD requests, dig lookups, and nslookup lookups are supported.
POST/PUT/PATCH/DELETE, request bodies, arbitrary or secret-bearing headers, authorization, cookies, downloads, redirects that write files, scanning, traceroute, SSH/SCP, netcat, nmap, wget, sudo network commands, and arbitrary network shell commands are not supported.
nslookupnetwork_inspectionallsafestructuredstructured (normal executable support)yesexplicityesnslookup example.comnslookup, dns lookup alternativeThis command contacts external hosts and may reveal your IP address, DNS query, target host, or network metadata.
Only ping with a fixed count, HTTP HEAD requests, dig lookups, and nslookup lookups are supported.
POST/PUT/PATCH/DELETE, request bodies, arbitrary or secret-bearing headers, authorization, cookies, downloads, redirects that write files, scanning, traceroute, SSH/SCP, netcat, nmap, wget, sudo network commands, and arbitrary network shell commands are not supported.
pingnetwork_inspectionallsafestructuredstructured (normal executable support)yesexplicityesping -c 4 example.comping host, check host respondsThis command contacts external hosts and may reveal your IP address, DNS query, target host, or network metadata.
Only ping with a fixed count, HTTP HEAD requests, dig lookups, and nslookup lookups are supported.
POST/PUT/PATCH/DELETE, request bodies, arbitrary or secret-bearing headers, authorization, cookies, downloads, redirects that write files, scanning, traceroute, SSH/SCP, netcat, nmap, wget, sudo network commands, and arbitrary network shell commands are not supported.

process_inspection

Label: Process inspection

Description: Inspect running processes and open files.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
lsofprocess_inspectionallsafestructuredstructured (normal executable support)yesexplicitnolsof -p 1234open files for processLists open files and sockets; output can expose sensitive process or path information.
pgrepprocess_inspectionallsafestructuredstructured (normal executable support)yesexplicitnopgrep -f pythonfind process by name
psprocess_inspectionallsafestructuredstructured (normal executable support)yesexplicitnops -Ashow running processes

project_health

Label: Project health

Description: Curated project maintenance checks for tests, lint, format checks, docs builds, and evals.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
project_healthdeveloper_workflowallwritestructuredstructured (normal executable support)noexplicitnorun tests
check linting
run format check
build docs
run evals
run tests, run the test suite, run project tests, check linting, run ruff check, check formatting, run format check, check project formatting, run project lint, build docs, build project docs, run evals, run project evalsProject health operations may execute local project code or tooling (for example via test suites, docs builds, and eval workflows).
Always preview and require explicit user confirmation before execution.
Only curated operations are in scope: run_tests, lint_check, format_check, build_docs, run_evals.
Arbitrary 'poetry run ...', install/update/deploy/publish commands, write-formatting, and arbitrary shell execution are not supported.

system_inspection

Label: System inspection

Description: Inspect local environment, identity, and system properties.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
clearsystem_inspectionallsafestructuredstructured (normal executable support)yesexplicitnoclearclear terminal, clear screenClears the current terminal screen for a clean session view.
dfsystem_inspectionallsafestructuredstructured (normal executable support)yesexplicitnodf -hdisk space
envsystem_inspectionallsafestructuredstructured (normal executable support)yesexplicitnoenv PATHenvironment variablePrinting the full environment may include sensitive values; curated mode only allows single-variable lookups.
mansystem_inspectionallsafestructuredstructured (normal executable support)yesexplicitnoman ls
man 1 ls
manual page, man page, command manualOpens local manual documentation through the system pager.
unamesystem_inspectionallsafestructuredstructured (normal executable support)yesexplicitnouname -asystem name, kernel info
whichsystem_inspectionallsafestructuredstructured (normal executable support)yesexplicitnowhich python3find executable
whoamisystem_inspectionallsafestructuredstructured (normal executable support)yesexplicitnowhoamicurrent user

text_inspection

Label: Text inspection

Description: Inspect, filter, and transform file text content.

CommandCategoryPlatformsRiskMaturityStatusDirect supportDirect flag policyNetworkExamplesNatural-language aliasesNotes
catinspectionallsafestructuredstructured (normal executable support)yesexplicitnocat README.mdshow file contents, print file
grepsearchallsafestructuredstructured (normal executable support)yesexplicitnogrep -n TODO src/main.pysearch text, find matching lines
headinspectionallsafestructuredstructured (normal executable support)yesexplicitnohead -n 20 README.mdfirst lines
sortinspectionallsafestructuredstructured (normal executable support)yesexplicitnosort -u names.txtsort lines
tailinspectionallsafestructuredstructured (normal executable support)yesexplicitnotail -n 50 app.loglast lines
uniqinspectionallsafestructuredstructured (normal executable support)yesexplicitnouniq -c names.txtdedupe lines, unique lines
wcinspectionallsafestructuredstructured (normal executable support)yesexplicitnowc -l README.mdcount lines, count words