Explore a Portal
Portal discovery is a core ldev workflow.
Use it when:
- the UI is unavailable
- you need a fast inventory of sites and pages
- you want structured output for automation
- an agent needs context before changing anything
Start with sites
bash
ldev portal inventory sites
ldev portal inventory sites --jsonThis gives you a quick list of accessible sites and the identifiers you need for deeper inspection.
Real example:
json
[
{
"groupId": 20126,
"siteFriendlyUrl": "/guest",
"name": "Guest",
"pagesCommand": "inventory pages --site /guest"
},
{
"groupId": 20120,
"siteFriendlyUrl": "/global",
"name": "Global",
"pagesCommand": "inventory pages --site /global"
}
]Move into page hierarchy
bash
ldev portal inventory pages --site /global
ldev portal inventory pages --site /global --jsonUse this to understand navigation, page depth, and available routes without opening the site in a browser.
Real example for the default Guest site:
bash
ldev portal inventory pages --site /guest --jsonjson
{
"siteName": "Guest",
"siteFriendlyUrl": "/guest",
"sitePathPrefix": "/web/guest",
"pageCount": 2,
"pages": [
{
"name": "Home",
"friendlyUrl": "/home",
"fullUrl": "/web/guest/home"
},
{
"name": "Search",
"friendlyUrl": "/search",
"fullUrl": "/web/guest/search"
}
]
}Inspect one page directly
bash
ldev portal inventory page --url /home --jsonIf you know the site and friendly URL separately:
bash
ldev portal inventory page --site /global --friendly-url /home --jsonReal example:
bash
ldev portal inventory page --url /web/guest/home --jsonjson
{
"siteName": "Guest",
"url": "/web/guest/home",
"pageName": "Home",
"componentInspectionSupported": true,
"fragmentEntryLinks": [
{
"type": "fragment",
"fragmentKey": "BASIC_COMPONENT-paragraph"
},
{
"type": "fragment",
"fragmentKey": "BASIC_COMPONENT-image"
}
],
"widgets": [],
"journalArticles": []
}Why this matters
This workflow is different from manual UI exploration:
- no UI dependency
- instant understanding of site and page structure
- structured output that can be piped, diffed, or stored
- usable by humans and agents in the same way
Typical discovery flow
bash
ldev portal inventory sites --json
ldev portal inventory pages --site /global --json
ldev portal inventory page --url /home --jsonEnd with the exact page, site, and route context you need before you diagnose or change anything else.