Documentation Index
Fetch the complete documentation index at: https://momentic.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Momentic publishes static JSON Schemas for simplified format tests and modules.
Add them to your editor to get autocomplete and inline validation as you write,
instead of at run time. The schemas work for web, mobile, and mixed repos.
The onboarding wizard (npx @momentic/wizard@latest) detects your installed
editors and writes the matching config automatically: .vscode/settings.json
for VS Code, Cursor, and Windsurf, or .zed/settings.json for Zed. Commit the
file to share validation with your team.
VS Code
Cursor
Windsurf
Zed
Add this to .vscode/settings.json:{
"yaml.schemas": {
"https://static.momentic.ai/momentic-test-v2.schema.json": "*.test.yaml",
"https://static.momentic.ai/momentic-module-v2.schema.json": "*.module.yaml"
}
}
Requires the
YAML extension. Cursor uses VS Code workspace settings. Commit the same
.vscode/settings.json snippet from the VS Code tab so everyone opening the
repo in Cursor gets the simplified format schemas automatically.
Windsurf also reads VS Code-style workspace settings. Commit the same
.vscode/settings.json snippet from the VS Code tab for shared team
validation.
Add this to your Zed settings:{
"lsp": {
"yaml-language-server": {
"settings": {
"yaml": {
"schemas": {
"https://static.momentic.ai/momentic-test-v2.schema.json": [
"*.test.yaml"
],
"https://static.momentic.ai/momentic-module-v2.schema.json": [
"*.module.yaml"
]
}
}
}
}
}
}
Editor schemas catch shape errors as you type. For a full validation pass —
schema validity, local file references, and entity conflicts — run
momentic lint before committing
agent-authored changes.