Generate a Chain from Chat
Stay in the Neural Link (Chat tab). Type one of the following generation phrases — the heuristic parser recognises them instantly and routes to the NL Chain Generator, bypassing the normal planning loop entirely.
Create a chain that checks for secrets and credentials in my codebase
What happens
- The parser detects
create a chain → intent generate_chain
- The active LLM's native tool-use API is called with the prompt and the full tool catalog — Claude uses function-calling; GPT-4o uses the same; Gemini uses function declarations; Ollama falls back to JSON-mode prompting
- The LLM fills a strict step schema — tool by tool, argument by argument — with zero free-form text to parse
- Unknown tools are filtered, steps are capped at 12, empty argument maps are filled in
- The chain is persisted to
chains.db and a result card appears with Open in Studio and View Chains buttons
"You described it. Machina OS built it. One sentence — a fully wired, versioned, executable workflow chain ready to run or edit."
More generation phrases to try (all work identically):
Build a morning briefing chain: check system health, git status, and recent logs
Generate a chain to onboard a new project: scan structure, read README, list deps, check Docker
Create a release preparation chain: status check, changelog review, and tag push