mit einem Klick
heym-documentation
// Create and update documentation articles for the Heym platform. Use when adding docs pages, writing reference articles from summaries, or when the user provides an outline for a new article.
// Create and update documentation articles for the Heym platform. Use when adding docs pages, writing reference articles from summaries, or when the user provides an outline for a new article.
| name | heym-documentation |
| description | Create and update documentation articles for the Heym platform. Use when adding docs pages, writing reference articles from summaries, or when the user provides an outline for a new article. |
When creating an article from a summary or outline:
getting-started, nodes, or referenceexpression-dsl, node-types)frontend/src/docs/manifest.tsfrontend/src/docs/content/{category}/{slug}.mdfrontend/src/docs/
├── manifest.ts # DOCS_MANIFEST – add new items here
└── content/
├── getting-started/
│ ├── introduction.md
│ ├── quick-start.md
│ └── core-concepts.md
├── nodes/
│ └── agent-node.md
└── reference/
├── node-types.md
├── expression-dsl.md
└── workflow-structure.md
Add the new item to the correct category in DOCS_MANIFEST:
// frontend/src/docs/manifest.ts
"reference": {
id: "reference",
label: "Reference",
items: [
// ...existing
{ slug: "your-new-slug", title: "Your New Title" },
],
},
Order matters: prev/next navigation follows manifest order.
#)``` with language when relevant (e.g. dsl, json)$input.text, $nodeName.field- for bullets, 1. for numberedWhen a new doc is created, update existing md files so they link to it:
frontend/src/docs/content/**/*.md files[text](/docs/{category}/{slug})Example: Adding nodes/llm-node.md → search for "LLM", "language model", "userMessage" in existing docs; add links where appropriate; add [LLM Node](/docs/nodes/llm-node) to Related in node-types.md, expression-dsl.md, quick-start.md, etc.
Input (summary):
Credentials store API keys. Users add them in Settings. Nodes reference by name.
Output steps:
{ slug: "credentials", title: "Credentials" } to reference in manifestfrontend/src/docs/content/reference/credentials.md:# Credentials
Credentials store API keys and secrets used by nodes.
## Adding Credentials
Add credentials in **Settings** → Credentials. Each credential has a name used to reference it in nodes.
## Using in Nodes
Reference credentials by name in node configuration (e.g. LLM model API key, HTTP auth).