Agentra LabsAgentra Labs DocsPublic Documentation

Playbooks

Use-Case Playbooks

Practical implementation patterns teams can copy directly.

1) Memory-first coding assistant

1

Install memory runtime

Install

Sets up amem + memory MCP surfaces.

curl -fsSL https://agentralabs.tech/install/memory | bash
2

Run session continuity checks

Continuity validation

Confirm saved context is available across sessions.

amem --version
agentic-memory-mcp --help

2) Web perception + task execution

1

Install vision runtime

Install

Installs browserless perception MCP runtime.

curl -fsSL https://agentralabs.tech/install/vision | bash
2

Validate runtime

Vision checks

Confirm entrypoint behavior before client integration.

agentic-vision-mcp --version
agentic-vision-mcp serve --help

3) Semantic code impact workflow

1

Install codebase runtime

Install

Installs semantic compiler + MCP runtime.

curl -fsSL https://agentralabs.tech/install/codebase | bash
2

Compile and inspect

Code intelligence flow

Compile repo and query impact paths before edits.

acb compile ./repo
acb query impact --symbol User.email
acb-mcp serve

4) Combined runtime stack

Use all three runtimes together when you need continuity + perception + code intelligence in one workflow. Keep each runtime independently installable so failures are isolated and debuggable.

Rollout strategy

Start single-runtime in production, validate stability, then layer additional runtimes one at a time.