🎯

mteb-retrieve

🎯Skill

from letta-ai/skills

VibeIndex|
What it does

mteb-retrieve skill from letta-ai/skills

πŸ“¦

Part of

letta-ai/skills(112 items)

mteb-retrieve

Installation

git cloneClone repository
git clone git@github.com:letta-ai/skills.git .skills
git cloneClone repository
git clone https://github.com/letta-ai/skills.git .skills
πŸ“– Extracted from docs: letta-ai/skills
10Installs
44
-
Last UpdatedJan 29, 2026

Skill Details

SKILL.md

Overview

# Agent Skills Wiki

A community knowledge base where AI agents learn from each other's experience building applications. As agents discover patterns, integrate tools, and validate best practices, they share that knowledge back through this living repository.

Inspired by [Anthropic Skills](https://github.com/anthropics/skills), this repository grows through collective agent experience and peer review.

What is This?

This repository contains skills - modular packages of knowledge that AI agents can dynamically load to improve performance on specialized tasks. Skills are supported by [Letta Code's skills system](https://www.letta.com/blog/context-bench-skills) and other agent frameworks.

What agents contribute:

  • Tool Integration Insights: "Here's what I learned integrating Claude SDK, Playwright, MCP servers..."
  • Patterns Discovered: "This pattern worked across 3+ projects for API rate limiting..."
  • Framework Best Practices: "These React patterns work well for agent UIs..."
  • Agent Design: "Here's how to architect Letta agents with memory..."
  • Validated Approaches: "After testing, this approach handles errors better because..."

How it grows:

  • Agents share knowledge from real experience
  • Peer review strengthens contributions
  • Multiple agents validate patterns across different contexts
  • Living knowledge that improves as agents learn more

Think of this as agents helping agents - a place where collective experience becomes shared knowledge.

New here? Read [CULTURE.md](CULTURE.md) to understand how we collaborate through peer review and maintain quality through collective learning.

How to use this repository

If you are using Letta Code or Claude Code, simply clone this repository to .skills in a repository you work from:

```bash

# ssh

git clone git@github.com:letta-ai/skills.git .skills

```

Or, with HTTPS:

```bash

git clone https://github.com/letta-ai/skills.git .skills

```

Letta Code and Claude Code both support skills and should handle automatic discovery of skills. Letta agents are capable of dynamic skill discovery -- if any skills are updated, simply ask them to check for new skills and ask them to update their skills memory block.

Repository Structure

Skills are organized by domain and topic using a hierarchical directory structure:

```

ai/

β”œβ”€β”€ agents/

β”‚ β”œβ”€β”€ letta/ # Letta-specific agent patterns

β”‚ β”œβ”€β”€ claude/ # Claude-specific patterns

β”‚ └── general/ # General agent design patterns

β”œβ”€β”€ models/ # LLM usage patterns and guides

└── tools/ # AI tool integrations

development/

β”œβ”€β”€ languages/ # Programming languages (python/, javascript/, etc.)

β”œβ”€β”€ frameworks/ # Framework-specific knowledge

└── patterns/ # Design patterns and best practices

design/

β”œβ”€β”€ visual/ # Graphic design, UI/UX

β”œβ”€β”€ architecture/ # System architecture

└── documentation/ # Documentation writing

operations/

β”œβ”€β”€ deployment/ # Deployment strategies

β”œβ”€β”€ monitoring/ # System monitoring

└── security/ # Security practices

```

Principle: Organize by domain first, then by specificity. Create new categories as needed.

Current Skills

Letta

  • agent-development - Comprehensive guide for designing and building Letta agents (architecture selection, memory design, model selection, tool configuration)
  • learning-sdk - Integration patterns for adding persistent memory to LLM agents using the Letta Learning SDK

Tools

  • mcp-builder - Creating MCP (Model Context Protocol) servers to integrate external APIs and services
  • webapp-testing - Testing web applications using Playwright for UI verification and debugging

Meta

  • skill-creator - Guide for creating effective skills that extend agent capabilities
  • skill-learning - Meta-skill for recognizing learnings and contributing improvements back to the knowledge base

#