Skip to content
Tools/Spec Introspection/list_regions

list_regions

List the 10 canonical UPG super-domain regions from `UPG_REGIONS`. Returns a compact summary per region: id, label, order, shape, `mental_model`, `anchor_type`, `composes_atomic_domains`, `entity_count`, `intra_edge_count`, `boundary_edge_count`. Fixed list, non-paginated.

Spec Introspectionatomic (read-only)

Arguments

No arguments — this tool takes no input.

Returns

Shape
{ count, regions: Array<{ id, label, order, shape, mental_model, anchor_type, composes_atomic_domains, entity_count, intra_edge_count, boundary_edge_count }> }

Examples

Live call against the Notion example graph.

Output

{
  "count": 10,
  "regions": [
    {
      "id": "strategy_outcomes",
      "label": "Strategy & Outcomes",
      "order": 1,
      "shape": "cascade",
      "mental_model": "Aspiration → direction → bet → measurable → proof.",
      "anchor_type": "objective",
      "composes_atomic_domains": [
        "strategy"
      ],
      "entity_count": 13,
      "intra_edge_count": 19,
      "boundary_edge_count": 7
    },
    {
      "id": "users_needs",
      "label": "Users & Needs",
      "order": 2,
      "shape": "convergent",
      "mental_model": "Who → what they want to do → what is in their way → what they would accept as done.",
      "anchor_type": "persona",
      "composes_atomic_domains": [
        "user"
      ],
      "entity_count": 7,
      "intra_edge_count": 5,
      "boundary_edge_count": 22
    },
    {
      "id": "discovery_research_validation",
      "label": "Discovery, Research & Validation",
      "order": 3,
      "shape": "directed-cyclic",
      "mental_model": "Question → hypothesis → test → evidence → decision → loop back.",
      "anchor_type": "opportunity",
      "composes_atomic_domains": [
        "discovery",
        "validation",
        "user_research"
      ],
      "entity_count": 19,
      "intra_edge_count": 13,
      "boundary_edge_count": 11
    },
    {
      "id": "market_competitive",
      "label": "Market & Competitive",
… (truncated)

See Also