mindwiki_get_context_pack

Load a named context pack with its included pages so an AI agent starts from the right operating context.

Scope: read

Parameters

ParameterTypeRequiredDescription
namestringYesContext pack name

Example Request

json
{
  "tool": "mindwiki_get_context_pack",
  "arguments": {
    "name": "onboarding-redesign"
  }
}

Example Response

json
{
  "name": "onboarding-redesign",
  "description": "Spec, decisions, and metrics for the onboarding redesign project",
  "pages": [
    {
      "path": "projects/onboarding-redesign/spec.md",
      "title": "Onboarding Redesign Spec",
      "content": "---\ntitle: Onboarding Redesign Spec\n---\n\n# ..."
    },
    {
      "path": "decisions/2026-q1-onboarding-flow.md",
      "title": "Q1 Onboarding Flow Decision",
      "content": "---\ntitle: Q1 Onboarding Flow Decision\n---\n\n# ..."
    }
  ]
}

Pages are returned with full markdown content (including frontmatter), in the order saved in the pack.

See Context Packs for the full concept.