Michael profile
Message @the_mewc

Best LLM/AI ecosystem stack

The AI tooling & LLM ecosystem moves quickly. As always see x.com/the_mewc for latest commentary.

General

Tooling

Retrieval & data pipelines

Orchestration & agents

Testing, evals & observability

Deployment & ops

Safety, governance & compliance


I’ll keep this post fresh with concrete vendor picks and example configs.

[!note] Snapshot vs narrative
The homepage section is a quick reference. This post carries the fuller reasoning and tradeoffs.

[!tip] Defaults
Start simple. Add complexity only when the bottleneck is proven by traces and cost reports.

[!warning] Risky actions
Sandbox tools that can change state, and require human review where appropriate.

Example code block

type Vendor = "OpenAI" | "OpenRouter" | "Anthropic";
const chooseVendor = (useCase: string): Vendor => {
  if (useCase === "evaluation") return "OpenAI";
  if (useCase === "cost-sensitive") return "OpenRouter";
  return "Anthropic";
};

Line breaks demo:
First line.
Second line after a single newline (should break due to remark-breaks).

Paragraph demo:

This is a new paragraph because there is a blank line above.