You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Open-source TypeScript framework for building AI workflows and agents, with prompts, evals, tracing, cost tracking, credentials, and durable orchestration built in.",
"folders": [
"docs/guides"
],
"excludeFiles": [
"CLAUDE.md",
"TODO_pages.md",
"CODE_OF_CONDUCT.md",
"RELEASING.md",
"CONTRIBUTING.md",
"SECURITY.md"
],
"rules": [
"Output has two primitives: workflow() for orchestration (no I/O, must be deterministic) and step() for I/O (API calls, LLM calls, database queries). Never call an API or LLM directly inside a workflow function.",
"Prompts live in version-controlled .prompt files using LiquidJS templating, not inline strings.",
"Output is a framework, not an SDK.",
"Temporal powers durable execution under the hood: workflow code may be replayed on failure, which is why workflows must have no direct I/O."