skills
Skills for Real Engineers. Straight from my .claude directory.
npx skills@latest add mattpocock/skillsSkills for Real Engineers. Straight from my .claude directory.
npx skills@latest add mattpocock/skillsLangflow is a powerful tool for building and deploying AI-powered agents and workflows.
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows -- all through natural language commands. Use it in your terminal, IDE, or tag @claude on Github.
**Learn more in the [official documentation](https://code.claude.com/docs/en/overview)**.
<img src="./demo.gif" />
## Get started
> [!NOTE]
> Installation via npm is deprecated. Use one of the recommended methods below.
For more installation options, uninstall steps, and troubleshooting, see the [setup documentation](https://code.claude.com/docs/en/setup).
1. Install Claude Code:
**MacOS/Linux (Recommended):**The community-curated map of every tool, skill, and integration for Hermes Agent by Nous Research.
🌐 Live site: hermesatlas.com
Hermes Atlas is a living directory of the Hermes Agent ecosystem. Hermes Agent (the self-improving AI agent from Nous Research) launched in February 2026 and immediately spawned a fast-growing community of skills, plugins, integrations, deployment templates, and forks. This site is the canonical map of all of it.
Features:
┌─────────────────────────────────────────────────────────────┐
│ hermesatlas.com (Vercel static + serverless) │
│ │
│ ┌─────────────┐ ┌──────────────┐ ┌──────────────────┐ │
│ │ index.html │ │ /api/stars │ │ /api/chat │ │
│ │ (the map) │ │ (live data) │ │ (RAG chatbot) │ │
│ └─────────────┘ └──────┬───────┘ └────────┬─────────┘ │
│ │ │ │
│ ▼ ▼ │
│ ┌──────────┐ ┌────────────┐ │
│ │ Redis │ │ OpenRouter │ │
│ │ Cloud │ │ (Gemma 4) │ │
│ └────┬─────┘ └────────────┘ │
│ │ │
│ ▼ │
│ ┌──────────┐ │
│ │ GitHub │ │
│ │ GraphQL │ │
│ └──────────┘ │
└─────────────────────────────────────────────────────────────┘
Stack:
hermes/
├── index.html # The map (single-page app)
├── api/
│ ├── stars.js # GitHub star fetch + Redis cache
│ ├── stars-history.js # 30-day history for sparklines
│ └── chat.js # RAG pipeline with streaming
├── lib/
│ └── redis.js # Shared Redis client helper
├── data/
│ ├── repos.json # Quality-filtered repos (single source of truth)
│ ├── chunks-meta.json # KB chunk text + metadata (see lib/chunk-store.js)
│ └── embeddings.bin # Pre-computed embeddings (float32, ~14MB)
├── scripts/
│ ├── build-chunks.js # Splits research/ into chunks + embeds them
│ └── test-rag.js # Local RAG quality tests (27/27 passing)
├── research/ # 27 source-of-truth research files
├── repos/ # Star count data, security review, raw search results
├── ECOSYSTEM.md # Markdown version of the map
├── package.json # Just two deps: openai, redis
└── vercel.json # Function config + daily cron
git clone https://github.com/ksimback/hermes-ecosystem.git
cd hermes-ecosystem
# Install deps (only needed for the API endpoints + chunk builder)
npm install
# To rebuild the chatbot's knowledge base after editing research/ files:
OPENROUTER_API_KEY=sk-or-... node scripts/build-chunks.js
# To test the RAG pipeline locally:
OPENROUTER_API_KEY=sk-or-... node scripts/test-rag.js
# To preview the static site, just open index.html in a browser
# (the API endpoints only work when deployed to Vercel)
| Variable | Purpose | Required |
|---|---|---|
GITHUB_TOKEN | Fine-grained PAT, public repos read-only | For 5000/hr rate limit (60/hr without) |
OPENROUTER_API_KEY | LLM API key for chat | Yes |
REDIS_URL | Redis Cloud connection string | Yes (for cache + history) |
OPENROUTER_MODEL | Override primary LLM model | No (default: google/gemma-4-31b-it:free) |
OPENROUTER_FALLBACK_MODELS | Comma-separated fallback chain | No |
Found a Hermes Agent project that should be in the map? Open an issue with the GitHub URL. Filtering criteria:
Site code: MIT. Research content: CC BY 4.0. Repo descriptions and metadata are sourced from the upstream projects' own documentation.
Built by @ksimback. Not officially affiliated with Nous Research — community project celebrating their work.