Command reference
A reference of the file operations the Buron CLI exposes for your AI editor or CI pipeline to call.
The commands below are what the CLI exposes for your editor's skills and your CI jobs to call. Most of the time the agent in your editor or your CI workflow handles these for you. It's useful to know what's available when you're building a custom skill or workflow.
Read a file
Print the contents of a file:
buron file read /wiki/company.mdWrite a file
Write content from another source:
echo "# Q2 recap" | buron file write /wiki/analyses/q2-recap.mdOr from a local file:
buron file write /ads/google/reports/today.md --from-file /tmp/report.mdIf the file already exists, this overwrites it. To add to a file instead, use buron file append with the same syntax.
Find a file
Search by name pattern:
buron file glob "/wiki/**/*.md"Or search by content inside a folder:
buron file grep "Loopio" --directory /wiki/entities/Edit a file
For one-off text changes, buron file replace is faster than rewriting the whole file:
buron file replace /wiki/team.md -o "old text" -n "new text"Move or delete a file
Rename or move:
buron file move /wiki/old.md /wiki/new.mdDelete:
buron file delete /wiki/old.mdDeletes can't be undone. To be safe, move things you're unsure about into an archive folder instead.
Update editor skills
Pull in the latest versions of the slash commands installed by buron link:
buron skills updateIt's a good idea to run this after major Buron releases.
Was this page helpful?