Skill v1.0.1
currentAutomated scan100/100+3 new
version: "1.0.1" name: omnifs-usage description: Navigate an omnifs filesystem as a read-only projected filesystem. Use when exploring mounted providers, reading route README leaves, handling paginated directories, or using shell tools against a host location or the guest /omnifs path.
Navigating omnifs mounts
An omnifs filesystem is a read-only filesystem projection of external services. Treat its location like a normal directory tree, but discover it incrementally: list first, read the generated README.md route schema where available, then follow concrete paths. Docker and libkrun expose the tree at /omnifs; a host filesystem uses the absolute location chosen when it was created.
Ground rules
- Start with
ls, not recursive traversal. Provider listings can be partial, paged, or backed by upstream calls. - Read
README.mdexplicitly at the provider root or a top-level branch to understand route templates, captures, finite choices, and examples. - Use lookup naturally. A path can exist even when the latest
lsdid not enumerate it, especially when a route has captures like{owner}or{repo}. - Treat the mount as read-only. Do not create, edit, delete, rename, chmod, or move files inside it.
- Prefer narrow commands from the directory you are inspecting. Avoid broad commands from the mount root.
Discovery loop
- Set
ROOTto the filesystem location, such as/omnifsin a guest or the host mount path. ls "$ROOT"to see configured mounts.ls "$ROOT/<mount>"to see provider roots andREADME.md.cat "$ROOT/<mount>/README.md"to read the generated route schema.- Substitute concrete values for captures in the route templates.
- List each intermediate directory before reading leaves.
Pagination
Some directories expose pagination controls:
@nextloads one more page into the current directory listing.@alldrains remaining pages, subject to host safety caps.- Read controls with
cat, then runlsagain to see the expanded listing. - Ignore-respecting recursive tools should skip these controls by default.
Freshness
Projected data can be dynamic. A file read or directory listing may call upstream, serve cached bytes, or use a validator. If a result looks stale, re-read the specific path or list the specific parent directory again. Do not assume a recursive scan refreshes the whole mount.
Do not
- Do not run
find /omnifsorgrep -rfrom the mount root as a first move. - Do not write into the mount.
- Do not assume every directory listing is exhaustive.
- Do not treat provider paths as local cache files.
- Do not bypass
README.mdwhen a route template is unclear.
Worked one-liners
ls /omnifs
cat /omnifs/github/README.md
ls /omnifs/github/octocat/Hello-World/issues/open
cat /omnifs/github/octocat/Hello-World/issues/open/7/item.md
cat /omnifs/github/octocat/Hello-World/issues/open/@next && ls /omnifs/github/octocat/Hello-World/issues/open