Hello Engine
Define onboarding.create-welcome-message once and expose it through direct
invocation, CLI, MCP stdio, and stateless MCP HTTP with a deterministic
injected writer.
The repository examples apply the same Invokta contracts to different domain
outcomes. Each engine keeps direct, CLI, and MCP execution on engine.invoke,
while its own package owns ports, policies, limits, and provider integrations.
| You need to | Start with |
|---|---|
| Learn the smallest complete path | hello-engine |
| Inject dependencies and enforce domain authorization | support-engine |
| Consume an engine from a private MCP harness | support-harness |
| Wrap web or SaaS providers behind domain ports | crawl-engine, image-engine, or observability-engine |
| Build development workflow actions | spec-engine, review-engine, or agent-session-engine |
| Publish deterministic agent-routing policy | cursor-agent-routing-engine |
| Navigate local project knowledge progressively | obsidian-context-engine |
| Publish and compose reusable capabilities | community-capabilities and composed-engine |
| Examples | What you need locally |
|---|---|
hello-engine, support-engine, support-harness, cursor-agent-routing-engine, spec-engine, review-engine, community-capabilities, composed-engine |
No external provider credential for direct, CLI, stdio, or tests |
agent-session-engine |
A writable data directory; the session ID and directory have local defaults |
obsidian-context-engine |
OBSIDIAN_VAULT_PATH pointing to the directory the read-only adapter may inspect |
crawl-engine |
FIRECRAWL_API_KEY |
image-engine |
OPENAI_API_KEY, ARK_API_KEY, and GEMINI_API_KEY |
observability-engine |
Sentry, Datadog, and New Relic credentials plus their organization or account identifiers |
The HTTP entry points use example-specific bearer-token environment variables in addition to the requirements above. Every linked README gives the exact variable names and commands. Provider-backed direct examples perform real outbound calls, so review provider data handling and billing before running them.
support-harness uses only MCP stdio and does not
import the engine runtime.Hello Engine
Define onboarding.create-welcome-message once and expose it through direct
invocation, CLI, MCP stdio, and stateless MCP HTTP with a deterministic
injected writer.
Support Engine
Classify support tickets with injected repository, classifier, and permission ports. The example covers authorization, safe errors, cancellation, and all four entry points.
Support Harness
Start the Support Engine over MCP stdio from a private consumer, discover its tool, invoke it once, and record harness-owned history without importing the engine runtime.
Crawl Engine
Publish bounded page scraping, site mapping, and crawling while Firecrawl
stays behind a WebCrawler port and public-target validation runs before
provider I/O.
Spec Engine
Publish specification, planning, task breakdown, implementation evidence, and status as separate capabilities. Ordering and revisions remain domain rules instead of framework orchestration.
Review Engine
Assess task readiness with code review, acceptance evidence, and adversarial checks. The fail-closed result allows completion only when every gate passes.
Agent Session Engine
Persist tasks, phases, checkpoints, evidence, and handoffs independently of Cursor, Antigravity, Claude Code, or Codex with explicit concurrency and storage limits.
Cursor Agent Routing Engine
Publish versioned, deterministic policy that selects a Cursor custom subagent and model for seven development use cases without adding routing to the Invokta core.
Obsidian Context Engine
Expose an Obsidian vault as a bounded knowledge graph. Agents list declared roots, open one node at a time, and follow stable links without loading the entire vault.
Image Engine
Publish outcome-oriented editing, text rendering, campaign series, and reference composition while GPT Image 2, Seedream 5.0, and Nano Banana 2 remain behind replaceable ports.
Observability Engine
Collect bounded incident context from Sentry, Datadog, and New Relic through one provider-independent capability and normalized domain result.
Community Capabilities
Demonstrate atomic root exports, subpath exports, and a capability library with factory-injected dependencies and literal default IDs.
Composed Engine
Combine a local capability, atomic imports, selected library capabilities, and deliberate ID remapping in one eagerly checked engine map.
Clone and build the repository first:
git clone https://github.com/vinilana/invokta.gitcd invoktayarn install --frozen-lockfileyarn buildEach linked README lists its configuration, direct and CLI commands, MCP entry points, and focused test command. For smaller code extracts with an explanation of each decision, use the practical recipes.