Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Resources

Gateway exposes MCP resources that provide reference documentation to the AI during conversations.

gateway://skills/authoring-procedures

MIME type: text/markdown

A comprehensive guide for turning company processes into structured procedure documents. Your AI reads this resource when you ask it to create a new procedure.

When It's Used

  • "Help me create a procedure for expense reports"
  • "I want to formalize our onboarding process"
  • "Turn this Slack description of how we handle PTO into a procedure"

The AI loads this resource to understand the procedure document format, required sections, step patterns, and quality checklist before helping you author.

What It Contains

  • Interview flow (questions to ask when encoding a process)
  • Document structure (frontmatter, input, state, steps, output)
  • Step patterns (approvals, collection, branching, periodic checks)
  • Quality checklist
  • Anti-patterns to avoid
  • Links to examples

gateway://skills/running-procedures

MIME type: text/markdown

Strict execution rules for running procedure documents. The AI reads this resource before executing any procedure.

When It's Used

  • "Run the expense report procedure"
  • "Expense my Denver conference trip, $2,400 total"
  • "Start onboarding for the new hire"

The AI loads this resource to understand the execution rules — follow steps exactly, don't skip or improvise, log everything, respect wait steps.

What It Contains

  • Step-at-a-time execution flow (get_procedure → collect input → start_runget_run → execute → log → advance → repeat)
  • 12 execution rules (one step at a time, never read ahead, execute exactly, don't skip, etc.)
  • Branching, wait, and resume patterns
  • Assignment handling
  • Log format
  • Prohibited actions (including: never call get_procedure_source during execution)