Skip to content
Tools/Spec Introspection/get_domain_guide

get_domain_guide

Return the full `UPGDomainUsageGuide` for a domain: anchor entity, creation sequence, named patterns (entity + edge chains), required cross-domain bridges, anti-patterns.

Spec Introspectionatomic (read-only)

Arguments

domain_idstringrequired

Canonical domain id (e.g. "user", "market_intelligence", "growth").

Returns

JSON: the full UPGDomainUsageGuide record.

Examples

Live call against the Notion example graph.

Input

{
  "domain_id": "strategy"
}

Output

{
  "domain_id": "strategy",
  "anchor_entity": "outcome",
  "creation_sequence": [
    "product",
    "vision",
    "mission",
    "outcome",
    "objective",
    "key_result",
    "metric",
    "metric_quality_assessment",
    "strategic_theme",
    "strategic_pillar",
    "initiative",
    "capability",
    "value_stream",
    "assumption",
    "decision",
    "constraint"
  ],
  "patterns": [
    {
      "name": "Strategic Cascade",
      "description": "Vision grounds mission, product pursues outcomes and targets objectives, objectives achieved through key results measured by metrics",
      "entity_types": [
        "vision",
        "mission",
        "outcome",
        "objective",
        "key_result",
        "metric"
      ],
      "edge_chain": [
        "product_guided_by_vision",
        "product_fulfils_mission",
        "vision_realised_through_mission",
        "product_pursues_outcome",
        "product_targets_objective",
        "objective_achieved_through_key_result",
        "outcome_measured_by_metric"
      ]
    }
  ],
  "required_bridges": [
    {
      "edge_type": "outcome_reveals_opportunity",
      "target_domain": "discovery",
      "when": "Outcomes should connect to the opportunities that deliver them"
    },
    {
      "edge_type": "outcome_delivered_by_feature",
      "target_domain": "product_spec",
      "when": "Strategic outcomes should
… (truncated)

See Also