Skip to content

2026 04 29 knowledge scaffolding context engineering

github-actions[bot] edited this page Apr 29, 2026 · 1 revision

Is knowledge scaffolding an established concept within context engineering for Large Language Models and AI agents, and how is it defined and implemented?

Research Question

Is knowledge scaffolding an established concept within context engineering for Large Language Models (LLMs) and Artificial Intelligence (AI) agents, and if so, how is it defined, implemented, and distinguished from adjacent techniques such as Retrieval-Augmented Generation (RAG), prompt chaining, and working-memory management?

Scope

In scope:

  • Definitions and usage of the term "knowledge scaffolding" in the LLM and AI agent literature and practitioner community
  • How knowledge scaffolding relates to, extends, or differs from adjacent context engineering techniques: RAG, few-shot prompting, chain-of-thought, system prompt layering, and context injection
  • Practical patterns for scaffolding knowledge into LLM context windows, for example progressive disclosure, hierarchical context loading, role or persona priming, and dynamic retrieval sequences
  • How existing completed research in this repository, especially 2026-03-08-context-engineering-first-principles and 2026-03-22-applied-context-engineering-agent-workflows, treats or implies scaffolding concepts
  • Whether "knowledge scaffolding" is a named, stable term or a loose borrowing from educational theory

Out of scope:

  • Educational or pedagogical scaffolding theory except as etymological and usage context for the term
  • Hardware or infrastructure for serving LLMs
  • Fine-tuning or training-time knowledge injection, as distinct from inference-time context engineering

Constraints: Focus on inference-time context engineering for LLM-based agents; primary sources preferred over secondary summaries; output must be a reusable knowledge note usable to inform future context engineering decisions in this repository

Context

The phrase "knowledge scaffolding" appears explicitly in educational conversational-agent research, but the mainstream engineering references for LLM agents frame adjacent practices as context engineering, retrieval, memory, prompt chaining, and progressive disclosure rather than with that exact term. [fact; source: https://doi.org/10.30191/ets.202404_27(2).rp08; https://arxiv.org/abs/2508.01503; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://www.langchain.com/blog/context-engineering-for-agents]

This repository already has completed items on context engineering, memory architecture, knowledge representation, applied agent workflows, and context compression that describe staged or layered context assembly in concrete operational terms. [fact; source: https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-08-context-engineering-first-principles.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-02-agent-memory-management-context-injection.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-03-knowledge-representation-agent-context.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-15-context-compression-rag-enterprise-knowledge.md]

The decision value of this item is therefore terminological as well as technical: if "knowledge scaffolding" is not a stable architectural term, future repo guidance should name concrete mechanisms directly rather than rely on a broad metaphor. [inference; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.langchain.com/blog/context-engineering-for-agents]

Approach

  1. Term survey: Search academic and practitioner sources, including arXiv papers, blog posts, and documentation, for uses of "knowledge scaffolding" in LLM and AI agent contexts. Determine whether the term has a stable, agreed definition or is used loosely.
  2. Adjacent concept mapping: For each established adjacent technique, including RAG, few-shot prompting, chain-of-thought, system prompt layering, and context compression, assess whether knowledge scaffolding is a synonym, superset, subset, or genuinely distinct concept.
  3. Pattern identification: Identify the concrete implementation patterns that practitioners actually use when they describe scaffolding knowledge for LLMs, including prompt structure, retrieval sequences, context window layout, and role priming.
  4. Relationship to existing research: Check how the completed research in this repository, especially 2026-03-08-context-engineering-first-principles, 2026-03-02-agent-memory-management-context-injection, and 2026-03-22-applied-context-engineering-agent-workflows, treats or implies scaffolding-like patterns. Identify gaps.
  5. Synthesis: Produce a clear definition, or a verdict that the term is not yet stable, plus a taxonomy of scaffolding-related techniques and a brief guidance note on when and how to apply each technique.

Sources

Starting points, papers, articles, repositories, and prior completed items. Every source includes a URL.


Research Skill Output

(Full output from running the research skill, retained verbatim in the completed item. §§0-5 are the investigation; §6 seeds the Findings section below.)

§0 Initialise

§1 Question Decomposition

A. Term survey

  • A1. Which accessible LLM and agent engineering references use the exact phrase "knowledge scaffolding"?
  • A2. Which references describe the same functional space without using that phrase?
  • A3. Does the exact phrase cluster in one subfield more than others?

B. Adjacent concept mapping

  • B1. How does Retrieval-Augmented Generation (RAG) differ from a broader staged knowledge-loading policy?
  • B2. How does prompt chaining differ from staged knowledge loading?
  • B3. How do working memory, long-term memory, and context layering differ from staged knowledge loading?
  • B4. When does knowledge-graph prompting count as retrieval, and when does it count as structured prompt construction?

C. Pattern identification

  • C1. Which concrete patterns recur in mainstream engineering references?
  • C2. Which patterns are sequential, which are structural, and which are storage or retrieval patterns?
  • C3. Which patterns are most useful for this repository's research-agent workflow?

D. Repository cross-reference

  • D1. Which prior completed items already imply scaffolding-like behavior?
  • D2. Do those items treat the concept as a named category or as concrete mechanisms?
  • D3. What vocabulary should this repository prefer in future guidance?

§2 Investigation

A. Exact term usage

  • [fact] The accessible pedagogical-agent literature uses scaffolding explicitly for learner support. Cohn et al. describe "adaptive scaffolding in LLM-based agents" as theory-driven guidance for students, grounded in assessment-centered task design, social-learning theory, and guided-difficulty progression for learners. Source: https://doi.org/10.48550/arXiv.2508.01503
  • [fact] The accessible conversational-agent education literature also uses the exact phrase "knowledge scaffolding" directly. The Educational Technology & Society article states that conversational agents primarily adopt knowledge scaffolding or emotional scaffolding to influence learner outcomes, and evaluates knowledge-scaffolding-only and combined scaffolding designs empirically. Source: https://doi.org/10.30191/ets.202404_27(2).rp08
  • [inference] These sources show that scaffolding terminology is established in pedagogical-agent work, but they define it as adaptive support for a human learner rather than as a general architecture for inference-time context assembly in engineering systems. Source: https://doi.org/10.30191/ets.202404_27(2).rp08; https://doi.org/10.48550/arXiv.2508.01503

B. Mainstream engineering vocabulary

C. Adjacent techniques

D. Concrete patterns that practitioners actually use

E. Repository cross-reference

F. Assumptions used in the synthesis

§3 Reasoning

§4 Consistency Check

§5 Depth and Breadth Expansion

§6 Synthesis

Executive summary:

Knowledge scaffolding is not currently a stable mainstream term for what Anthropic and LangChain describe as context engineering, the work of curating the right information, tools, and state for model inference; the dominant engineering literature instead names the design space through retrieval, memory, prompt chaining, compaction, and progressive disclosure. [inference; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.anthropic.com/research/building-effective-agents; https://www.langchain.com/blog/context-engineering-for-agents; https://lilianweng.github.io/posts/2023-06-23-agent/]

Where scaffolding language is explicit, it is concentrated in pedagogical-agent research, where scaffolding means adaptive support for a human learner rather than a general architecture for agent context assembly. [fact; source: https://doi.org/10.30191/ets.202404_27(2).rp08; https://doi.org/10.48550/arXiv.2508.01503]

In practice, the techniques a practitioner might loosely group under "knowledge scaffolding" are staged knowledge-injection mechanisms such as Retrieval-Augmented Generation, knowledge-graph prompt augmentation, prompt chaining, progressive disclosure, structured note-taking, context compression, and context isolation. [inference; source: https://doi.org/10.48550/arXiv.2005.11401; https://doi.org/10.48550/arXiv.2306.04136; https://doi.org/10.48550/arXiv.2312.06185; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://www.langchain.com/blog/context-engineering-for-agents]

For this repository, the most reusable definition is operational rather than terminological: treat "knowledge scaffolding" as a loose umbrella for policies that decide what knowledge enters context, at what abstraction level, and in what sequence, while naming the concrete mechanisms directly in prompts and architecture guidance. [inference; source: https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-08-context-engineering-first-principles.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-03-knowledge-representation-agent-context.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md]

Key findings:

  1. The mainstream LLM agent-engineering literature does not currently treat "knowledge scaffolding" as a standard architectural term, even though it discusses the underlying design space extensively through context engineering, retrieval, memory, prompt chaining, compaction, and progressive disclosure. ([inference]; medium confidence; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://www.anthropic.com/research/building-effective-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.langchain.com/blog/context-engineering-for-agents; https://lilianweng.github.io/posts/2023-06-23-agent/)
  2. Explicit scaffolding language is established mainly in pedagogical-agent research, where it refers to adaptive support for a human learner and not to a general-purpose policy for assembling agent context at inference time. ([inference]; medium confidence; source: https://doi.org/10.30191/ets.202404_27(2).rp08; https://doi.org/10.48550/arXiv.2508.01503)
  3. Retrieval-Augmented Generation is one concrete component of scaffolding-like behavior, because it retrieves external evidence into the prompt, but it is narrower than a full staged knowledge-loading policy that also governs ordering, compression, persistence, and task-stage transitions. ([inference]; medium confidence; source: https://doi.org/10.48550/arXiv.2005.11401; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-02-agent-memory-management-context-injection.md)
  4. Knowledge-graph prompting frameworks such as Knowledge-Augmented language model PromptING (KAPING) and KnowGPT show that structured knowledge injection is already an established implementation pattern, but those papers frame the technique as prompt augmentation and knowledge extraction rather than as knowledge scaffolding. ([fact]; high confidence; source: https://doi.org/10.48550/arXiv.2306.04136; https://doi.org/10.48550/arXiv.2312.06185)
  5. The strongest practical analogues to a scaffolding policy in mainstream engineering are progressive disclosure, just-in-time retrieval, structured note-taking, context compaction, memory selection, and context isolation, all of which explicitly control what the model sees and when it sees it. ([inference]; high confidence; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.langchain.com/blog/context-engineering-for-agents)
  6. This repository's completed research already treats the substance of knowledge scaffolding as direct mechanisms, namely context shaping, layered abstraction, Retrieval-Augmented Generation boundaries, compression, routing, scratchpads, and workflow decomposition, rather than as a separate named category. ([inference]; medium confidence; source: https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-08-context-engineering-first-principles.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-02-agent-memory-management-context-injection.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-03-knowledge-representation-agent-context.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-15-context-compression-rag-enterprise-knowledge.md)
  7. For future repo guidance, "knowledge scaffolding" is best treated as a loose umbrella or explanatory metaphor, while prompts, reviews, and architecture notes should name the concrete mechanism in play so that reliability, governance, and security controls target the correct failure surface. ([inference]; medium confidence; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://simonwillison.net/2023/Apr/14/worst-that-can-happen/; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md)

Evidence map:

Assumptions:

Analysis:

The evidence was weighted by separating direct definitional sources from analogical or practitioner commentary. Definitions of Retrieval-Augmented Generation and knowledge-graph prompting came from the original papers, while current agent workflow vocabulary came from Anthropic and LangChain documentation. [fact; source: https://doi.org/10.48550/arXiv.2005.11401; https://doi.org/10.48550/arXiv.2306.04136; https://doi.org/10.48550/arXiv.2312.06185; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://docs.langchain.com/oss/python/langchain/context-engineering]

The core interpretation is not that the engineering literature lacks staged knowledge-loading patterns, but that it names those patterns at a finer level of granularity than the scaffolding metaphor does. That distinction matters because each mechanism has different trade-offs, evaluation methods, and failure modes. [inference; source: https://www.langchain.com/blog/context-engineering-for-agents; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://simonwillison.net/2023/Apr/14/worst-that-can-happen/]

The repository cross-reference strengthened this conclusion because the completed items already converge on direct mechanism naming. That makes the safest repo-facing output a vocabulary recommendation rather than a claim that a new architectural category has been discovered. [inference; source: https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-08-context-engineering-first-principles.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-03-knowledge-representation-agent-context.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md]

Risks, gaps, uncertainties:

Open questions:

§7 Recursive Review


Findings

Executive Summary

Knowledge scaffolding is not currently a stable mainstream term for what Anthropic and LangChain describe as context engineering, the work of curating the right information, tools, and state for model inference; the dominant engineering literature instead names the design space through retrieval, memory, prompt chaining, compaction, and progressive disclosure. [inference; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.anthropic.com/research/building-effective-agents; https://www.langchain.com/blog/context-engineering-for-agents; https://lilianweng.github.io/posts/2023-06-23-agent/]

Where scaffolding language is explicit, it is concentrated in pedagogical-agent research, where scaffolding means adaptive support for a human learner rather than a general architecture for agent context assembly. [fact; source: https://doi.org/10.30191/ets.202404_27(2).rp08; https://doi.org/10.48550/arXiv.2508.01503]

In practice, the techniques a practitioner might loosely group under "knowledge scaffolding" are staged knowledge-injection mechanisms such as Retrieval-Augmented Generation, knowledge-graph prompt augmentation, prompt chaining, progressive disclosure, structured note-taking, context compression, and context isolation. [inference; source: https://doi.org/10.48550/arXiv.2005.11401; https://doi.org/10.48550/arXiv.2306.04136; https://doi.org/10.48550/arXiv.2312.06185; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://www.langchain.com/blog/context-engineering-for-agents]

For this repository, the most reusable definition is operational rather than terminological: treat "knowledge scaffolding" as a loose umbrella for policies that decide what knowledge enters context, at what abstraction level, and in what sequence, while naming the concrete mechanisms directly in prompts and architecture guidance. [inference; source: https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-08-context-engineering-first-principles.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-03-knowledge-representation-agent-context.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md]

Key Findings

  1. The mainstream LLM agent-engineering literature does not currently treat "knowledge scaffolding" as a standard architectural term, even though it discusses the underlying design space extensively through context engineering, retrieval, memory, prompt chaining, compaction, and progressive disclosure. ([inference]; medium confidence; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://www.anthropic.com/research/building-effective-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.langchain.com/blog/context-engineering-for-agents; https://lilianweng.github.io/posts/2023-06-23-agent/)
  2. Explicit scaffolding language is established mainly in pedagogical-agent research, where it refers to adaptive support for a human learner and not to a general-purpose policy for assembling agent context at inference time. ([inference]; medium confidence; source: https://doi.org/10.30191/ets.202404_27(2).rp08; https://doi.org/10.48550/arXiv.2508.01503)
  3. Retrieval-Augmented Generation is one concrete component of scaffolding-like behavior, because it retrieves external evidence into the prompt, but it is narrower than a full staged knowledge-loading policy that also governs ordering, compression, persistence, and task-stage transitions. ([inference]; medium confidence; source: https://doi.org/10.48550/arXiv.2005.11401; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-02-agent-memory-management-context-injection.md)
  4. Knowledge-graph prompting frameworks such as Knowledge-Augmented language model PromptING (KAPING) and KnowGPT show that structured knowledge injection is already an established implementation pattern, but those papers frame the technique as prompt augmentation and knowledge extraction rather than as knowledge scaffolding. ([fact]; high confidence; source: https://doi.org/10.48550/arXiv.2306.04136; https://doi.org/10.48550/arXiv.2312.06185)
  5. The strongest practical analogues to a scaffolding policy in mainstream engineering are progressive disclosure, just-in-time retrieval, structured note-taking, context compaction, memory selection, and context isolation, all of which explicitly control what the model sees and when it sees it. ([inference]; high confidence; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.langchain.com/blog/context-engineering-for-agents)
  6. This repository's completed research already treats the substance of knowledge scaffolding as direct mechanisms, namely context shaping, layered abstraction, Retrieval-Augmented Generation boundaries, compression, routing, scratchpads, and workflow decomposition, rather than as a separate named category. ([inference]; medium confidence; source: https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-08-context-engineering-first-principles.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-02-agent-memory-management-context-injection.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-03-knowledge-representation-agent-context.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-15-context-compression-rag-enterprise-knowledge.md)
  7. For future repo guidance, "knowledge scaffolding" is best treated as a loose umbrella or explanatory metaphor, while prompts, reviews, and architecture notes should name the concrete mechanism in play so that reliability, governance, and security controls target the correct failure surface. ([inference]; medium confidence; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://simonwillison.net/2023/Apr/14/worst-that-can-happen/; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md)

Evidence Map

Claim Source Confidence Notes
[inference] Mainstream engineering literature uses concrete mechanism names rather than "knowledge scaffolding". https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://www.anthropic.com/research/building-effective-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.langchain.com/blog/context-engineering-for-agents; https://lilianweng.github.io/posts/2023-06-23-agent/ medium vocabulary boundary
[inference] Explicit scaffolding language clusters in pedagogical-agent work. https://doi.org/10.30191/ets.202404_27(2).rp08; https://doi.org/10.48550/arXiv.2508.01503 medium learner-support framing
[inference] Retrieval-Augmented Generation is narrower than a full staged knowledge-loading policy. https://doi.org/10.48550/arXiv.2005.11401; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-02-agent-memory-management-context-injection.md medium retrieval-specific
[fact] Knowledge-Augmented language model PromptING (KAPING) and KnowGPT implement structured knowledge injection through prompt augmentation and knowledge extraction. https://doi.org/10.48550/arXiv.2306.04136; https://doi.org/10.48550/arXiv.2312.06185 high knowledge-graph prompting
[fact] Progressive disclosure, just-in-time retrieval, note-taking, compaction, memory selection, and isolation are established operational patterns. https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://docs.langchain.com/oss/python/langchain/context-engineering; https://www.langchain.com/blog/context-engineering-for-agents high practical pattern set
[inference] Prior repo items already describe the same substance as direct mechanisms. https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-08-context-engineering-first-principles.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-02-agent-memory-management-context-injection.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-03-knowledge-representation-agent-context.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-15-context-compression-rag-enterprise-knowledge.md medium repository alignment
[inference] The repository should prefer mechanism naming over umbrella metaphor in future guidance. https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://simonwillison.net/2023/Apr/14/worst-that-can-happen/; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md medium governance implication

Assumptions

Analysis

The evidence was weighted by separating direct definitional sources from analogical or practitioner commentary. Definitions of Retrieval-Augmented Generation and knowledge-graph prompting came from the original papers, while current agent workflow vocabulary came from Anthropic and LangChain documentation. [fact; source: https://doi.org/10.48550/arXiv.2005.11401; https://doi.org/10.48550/arXiv.2306.04136; https://doi.org/10.48550/arXiv.2312.06185; https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://docs.langchain.com/oss/python/langchain/context-engineering]

The central interpretive move was to distinguish stable mechanisms from unstable naming. That distinction fits the source record better than either extreme claim that the term is fully canonical or that the practices are absent. [inference; source: https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents; https://www.langchain.com/blog/context-engineering-for-agents; https://doi.org/10.30191/ets.202404_27(2).rp08]

The repository cross-reference matters because it shows the same pattern internally: the useful work is already being done through direct mechanism naming. That makes the recommended output a vocabulary clarification rather than a new architecture. [inference; source: https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-08-context-engineering-first-principles.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-03-knowledge-representation-agent-context.md; https://github.com/davidamitchell/Research/blob/main/Research/completed/2026-03-22-applied-context-engineering-agent-workflows.md]

Risks, Gaps, and Uncertainties

Open Questions


Output

Navigation

Home

By Tag

bureaucracy

change-management

coase

constraint-analysis

control-model

decision-rights

delegation

delivery-risk

demand-segmentation

enterprise

exception-handling

execution

flow

flow-design

flow-metrics

governance

governance-patterns

incentives

instability

institutional-economics

leading-indicators

operating-model

organisation

organisational-design

queue-design

queueing

regulated-enterprise

routing

throughput

throughput-risk

transaction-costs

triage

williamson

Clone this wiki locally