aeontel page

Manage pages (MDX documents + dashboards)

Page commands

aeontel page list

List pages in a workspace

TypeScript
aeontel page list --workspace <id> [--parent <id>] [--kind <kind>]
Shell
aeontel page list --workspace wsp_...

aeontel page create

Create a page or dashboard

TypeScript
aeontel page create --workspace <id> --title <title> [--slug <slug>] [--body <mdx>] [--body-file <path>] [--parent <id>] [--kind <kind>]
Shell
aeontel page create --workspace wsp_... --title <title>

aeontel page get

Get page details

TypeScript
aeontel page get <id>
Shell
aeontel page get id_...

aeontel page update

Rename, move, or edit a page

TypeScript
aeontel page update <id> [--title <title>] [--slug <slug>] [--body <mdx>] [--body-file <path>] [--parent <id>]
Shell
aeontel page update id_...

aeontel page delete

Soft-delete a page and its descendants (restorable until retention expires)

TypeScript
aeontel page delete <id>
Shell
aeontel page delete id_...

aeontel page move

Move a page up or down within its siblings

TypeScript
aeontel page move <id> --direction <up|down>
Shell
aeontel page move id_... --direction

aeontel page resolve

Resolve a slash-separated slug path to a page

TypeScript
aeontel page resolve --workspace <id> --path <path>
Shell
aeontel page resolve --workspace wsp_... --path <path>

aeontel page restore

Restore a soft-deleted page

TypeScript
aeontel page restore <id>
Shell
aeontel page restore id_...