skill
Adom Wiki
Public Made by Adomby adom
How the Adom Wiki (wiki.adom.inc) works and how to drive it with the adom-wiki CLI: the two storage layers (git page repo vs package registry), hosting source by pushing files (not a tarball), making
discover: add a query-free section listing (e.g. discover list --type component --limit N)
What
adom-wiki discover search is the only way to enumerate a section (components, apps, skills, bootstrap), but it requires --query. There is no way to just list a section.
Repro
discover search --query "" --type component→ 0 resultsdiscover search --query "*" --type component→ 0 results- You must pass a throwaway keyword (e.g.
--query "board" --type component) to get a listing, which silently drops any component whose title/brief does not match that keyword.
The server already supports this
GET /api/v1/pages?type=component&limit=10 returns a clean, query-free listing of the section. The gap is purely CLI-side: that endpoint is not exposed as a first-class verb.
Ask
Add a listing verb that wraps the existing endpoint, e.g.:
adom-wiki discover list --type component [--limit 20] [--sort recent]
- No
--queryrequired. - Sensible default limit (10 or 20), overridable via
--limit. - Same
--typevalues as the section tabs: component, app, skill, bootstrap.
This is what an agent needs to answer "show me N random/recent components" without keyword-fishing.