SKILL-RADAR · GITHUB

Nützliche Agent Skills, nach echter Nutzung sortiert.

Vergleiche verifizierte Skills aus öffentlichen Repositories nach Aufgabe, Paketinhalt, Installationen und nachvollziehbarer Quelle.

KATALOGUMFANG
VERIFIZIERT
Skills
5.771
Repositories
824
zuletzt synchronisiert
08.09.2026
5.771 Skills
langchain-ai
Offiziell

ecosystem-primer

INVOKE FIRST for any LangChain / LangGraph / Deep Agents agent building project before consulting other skills or writing any agent code. Required starting point for up to date info on framework selection (LangChain vs LangGraph vs Deep Agents vs hybrid composition), agent patterns, install, environment setup, and which skill to load next.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

eval-engineering

Inspect an agent repository and optional traces, interview the user, write reviewed Task Specs, build and audit Harbor tasks, and bootstrap reusable project World Knowledge Skills. Use for agent evals, benchmark design, Task generation, controlled Environments, synthetic data, Verifiers, Harbor runs, calibration, or continuous benchmark maintenance.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langchain-dependencies

INVOKE THIS SKILL when setting up a new project or when asked about package versions, installation, or dependency management for LangChain, LangGraph, LangSmith, or Deep Agents. Covers required packages, minimum versions, environment requirements, versioning best practices, and common community tool packages for both Python and TypeScript.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langchain-middleware

INVOKE THIS SKILL when you need human-in-the-loop approval, custom middleware, or structured output. Covers HumanInTheLoopMiddleware for human approval of dangerous tool calls, creating custom middleware with hooks, Command resume patterns, and structured output with Pydantic/Zod.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langchain-rag

INVOKE THIS SKILL when building ANY retrieval-augmented generation (RAG) system. Covers document loaders, RecursiveCharacterTextSplitter, embeddings (OpenAI), and vector stores (Chroma, FAISS, Pinecone).

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langchain-typescript-quickstart

Scaffold a minimal local LangChain agent in TypeScript by following the official quickstart. Use when the user wants to quickly build or try a LangChain agent locally.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langgraph-cli

INVOKE THIS SKILL when using the langgraph CLI to scaffold, develop, build, or deploy LangGraph applications. Covers langgraph new, dev, build, up, deploy, and langgraph.json configuration.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langgraph-fundamentals

INVOKE THIS SKILL when writing ANY LangGraph code. Covers StateGraph, state schemas, nodes, edges, Command, Send, invoke, streaming, and error handling.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langgraph-human-in-the-loop

INVOKE THIS SKILL when implementing human-in-the-loop patterns, pausing for approval, or handling errors in LangGraph. Covers interrupt(), Command(resume=...), approval/validation workflows, and the 4-tier error handling strategy.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langgraph-persistence

INVOKE THIS SKILL when your LangGraph needs to persist state, remember conversations, travel through history, or configure subgraph checkpointer scoping. Covers checkpointers, threadid, time travel, Store, and subgraph persistence modes.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

langgraph-typescript-quickstart

Scaffold a minimal local LangGraph agent in TypeScript by following the official quickstart. Use when the user wants to quickly build or try a LangGraph agent locally.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

managed-deep-agents

INVOKE THIS SKILL when building, testing, or deploying Managed Deep Agents in LangSmith with the mda CLI. Walks a user through their first agent end to end — interviewing them about what they want to build, mapping it onto what MDA can actually do, then scaffolding and deploying it. Covers the file-based project layout; definedeepagent / defineDeepAgent; instructions, skills, memory, identity, tools, middleware, sandboxes, schedules, channels, and evals; mda init/build/dev/deploy/logs/delete; and Context Hub.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
langchain-ai
Offiziell

swarm

- Dispatches many independent items in parallel: create a table, fan out to subagents, aggregate results. One row = one unit of work.

Installationen
1
GitHub Stars
1200
Aktualisiert
29. Aug.
trailofbits
Community

gh-cli

Enforces authenticated gh CLI workflows over unauthenticated curl, WebFetch, and MCP fetch patterns. Use when working with GitHub URLs, API access, pull requests, or issues.

Installationen
1
GitHub Stars
6984
Aktualisiert
2. Sept.
cocoindex-io
Community

ccc

This skill should be used when code search is needed (whether explicitly requested or as part of completing a task), when indexing the codebase after changes, or when the user asks about ccc, cocoindex-code, or the codebase index. Trigger phrases include 'search the codebase', 'find code related to', 'update the index', 'ccc', 'cocoindex-code'.

Installationen
1
GitHub Stars
2697
Aktualisiert
5. Sept.
hashicorp
Offiziell

aws-ami-builder

Build Amazon Machine Images (AMIs) with Packer using the amazon-ebs builder. Use when creating custom AMIs for EC2 instances.

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.
hashicorp
Offiziell

azure-image-builder

Build Azure managed images and Azure Compute Gallery images with Packer. Use when creating custom images for Azure VMs.

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.
hashicorp
Offiziell

azure-verified-modules

Azure Verified Modules (AVM) requirements and best practices for developing certified Azure Terraform modules. Use when creating or reviewing Azure modules that need AVM certification.

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.
hashicorp
Offiziell

new-terraform-provider

To scaffold a new Terraform provider with Plugin Framework: 1. If I am already in a Terraform provider workspace, then confirm that I want to create a new workspace. If I do not want to create a new workspace, then skip all remaining steps. 1. Create a new workspace root directory. The root directory name should be prefixed with "terraform provider ". Perform all subsequent steps in this new workspace. 1. Initialize a new Go module. 1. Run go get u github.com/hashicorp/terraform plugin framework@latest . 1. Write a main.go file that follows the example. 1. Write an internal/provider/provider.go file that follows the example. Rename the demo provider, the DEMO environment variables, and the authentication attributes to match the target API. 1. Remove TODO comments from main.go and provider.go . 1. Run go mod tidy 1. Run go build o /dev/null 1. Run go test ./... The scaffold resolves crede

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.
hashicorp
Offiziell

provider-actions

Implement Terraform Provider actions using the Plugin Framework. Use when developing imperative operations that execute at lifecycle events (before/after create, update, destroy).

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.
hashicorp
Offiziell

provider-configuration

- Implement Terraform provider configuration and authentication with the Plugin Framework: provider schema for credentials (Optional + Sensitive attributes), environment variable fallbacks, credential provider chains (static config, then environment variables, shared credentials file, and platform identity), unknown-value guards in Configure(), secret redaction, configure-time credential validation, and diagnostics that name every source tried. Use when implementing or reviewing a provider's Configure method or provider schema, adding authentication options (API keys, tokens, profiles, credentials files, assume-role), deciding how a provider should resolve credentials, debugging "no valid credential sources" or missing-credentials errors, or unit testing credential resolution.

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.
hashicorp
Offiziell

provider-docs

Create, update, and review Terraform provider documentation for Terraform Registry using HashiCorp-recommended patterns, tfplugindocs templates, and schema descriptions. Use when adding or changing provider configuration, resources, data sources, ephemeral resources, list resources, functions, actions, or guides; when validating generated docs; and when troubleshooting missing or incorrect Registry documentation.

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.
hashicorp
Offiziell

provider-ephemeral-resources

Terraform Provider Ephemeral Resources Ephemeral resources (Terraform 1.10+) produce values that are never persisted to state or plan . They exist for exactly one job: handing secrets — tokens, generated passwords, short lived certificates, decrypted values — to the parts of a configuration that need them, without writing them to disk. Any data source that returns a sensitive value is a candidate to be (or to also exist as) an ephemeral resource. Official docs: Ephemeral Resources. When to Use One Situation Use Read only lookup of non sensitive data Data source Value is sensitive and only needed at apply time (DB password for a provider block, token for a write only attribute) Ephemeral resource Sensitive value that downstream managed resources must store (e.g. as an attribute) Regular resource/data source — but pair with write only attributes where possible Credential that expires mid o

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.
hashicorp
Offiziell

provider-framework-migration

- Migrate Terraform provider resources and data sources from Plugin SDKv2 to the Plugin Framework: muxing both plugins in one provider (terraform-plugin-mux, tf5to6server), per-resource migration workflow, SDKv2-to-Framework schema mapping (ForceNew, ValidateFunc, DiffSuppressFunc, Default, Timeouts, blocks), null-vs-zero-value behavioral traps, and state-compatibility verification. Use when converting or translating SDKv2 resources to the Framework, setting up a muxed provider server, deciding whether a resource should be migrated at all, or debugging plan diffs and state errors that appeared after a migration.

Installationen
1
GitHub Stars
864
Aktualisiert
4. Sept.