Skip to content
larsp.de
Go back

AI/LLM Resources

Updated:

Collection of Artificial Intelligence / LLM resources I actually use day to day. Biased towards Claude and the Ruby ecosystem, because that’s where I spend most of my time.

Claude Code

Claude Code is Anthropic’s agentic coding CLI. It lives in the terminal, reads and edits files, runs commands, and keeps track of project context across sessions. Paired with CLAUDE.md files in the repo root, it becomes a pretty capable pair programmer.

Subagents & hooks

Two building blocks I lean on heavily in Clara:

Plugins & extensions

Plugins bundle skills, subagents, hooks and MCP servers into one installable unit. The /plugin marketplace is the central place to browse and install them — Anthropic ships a curated official marketplace, and you can add community ones (any GitHub repo or Git URL).

Spec-driven workflows

Both of these treat specifications as the source of truth: you write the spec first, then agents implement against it. Different flavours for different project sizes.

Agent Skills

Skills are self-contained capability packages — a folder of instructions, scripts and resources that Claude can load on demand.

Model Context Protocol (MCP)

MCP is the open protocol that lets LLMs talk to external tools and data sources in a standardised way. The magic is that any MCP-compatible client (Claude Desktop, Claude Code, Cursor, …) can use any MCP server.

MCP servers I rely on:

Ruby/Rails tools and frameworks


Share this post on:

Next Post
Building Clara: a Claude Code setup for running a consultancy