Langchain adapters to support skills in your agent
Project description
Langchain Skills Adapters
Langchain adapters to support skills in your agent.
Features
- Supports the Anthropic Open Standard for Skills
- Follows the principle of progressive disclosure
- Dynamic skill activation - Only loads skills into context if and when they are needed
- Dynamic tool registration - Only loads tools into context if and when they are needed
- Add as middleware or as a tool to your agents
Installation
uv:
uv add langchain-skills-adapters
pip:
pip install langchain-skills-adapters
Skills Format
The skill directory must be in the following format to be loaded correctly:
skills/
├── skill-name/
│ ├── SKILL.md # Required: instructions + metadata
│ ├── scripts/ # Optional: executable code
│ ├── references/ # Optional: documentation
│ ├── assets/ # Optional: templates, resources
│ └── ... # Any other additional files or directories
└── other skills...
Skills must follow the Anthropic Open Standard for Skills. This includes having frontmatter with at minimum the name and skill description.
---
name: My Skill
description: This is my skill
---
# My Skill
Skill content
Usage
As Middleware
The SkillsMiddleware is a Langchain middleware that adds skill info to your agent's system prompt before each model call.
It also adds a skills_file_read tool to your agent's tool list, allowing it to read skill files and other resources from your skills directory.
This way, your agent will always see what skills are available to it before acting, and can use the tool to read skill files and other resource files.
from langchain.agents import create_agent
from langchain_skills_adapters import SkillsMiddleware
# Create the SkillsMiddleware pointed to your skills directory
skills_dir = "/path/to/skills/"
skills_middleware = SkillsMiddleware(skills_dir)
# Create the agent
agent = create_agent("openai:gpt-5", middleware=[skills_middleware])
response = agent.invoke(input={"messages": {"role": "user", "content": "What skills do you have?"}})
The SkillsMiddleware also supports dynamic tool registration, adding new tools to your agent as skills get activated.
When a skill is activated by your agent, all the tools listed in the allowed-tools field of that skill is added to the agent's tool list.
This allows you to add new tools to your agent on the fly, preventing the agent's context from being overfilled with tools.
For example, if you have a skill with allowed-tools: say_hello, you can add that tool to be dynamically registered when the skill is activated like so:
from langchain.agents import create_agent
from langchain_core.tools import tool
from langchain_skills_adapters import SkillsMiddleware
@tool
def say_hello(name: str):
return "Hello, " + name
# Create the dynamic tools dictionary
# This should map the name of the tool in allowed-tools to a single tool or a list of tools
tools = [say_hello]
dynamic_tools = {tool.name: tool for tool in tools}
# Create the SkillsMiddleware with dynamic tools
skills_dir = "/path/to/skills/"
skills_middleware = SkillsMiddleware(skills_dir, dynamic_tools=dynamic_tools)
# Create the agent
agent = create_agent("openai:gpt-5", middleware=[skills_middleware])
response = agent.invoke(input={"messages": {"role": "user", "content": "What skills do you have?"}})
As a Tool
The SkillsTool creates a Langchain tool that can be used by your agent to activate a skill.
The description of the skills tool contains names and descriptions of all available skills from your skill directory.
This way, your agent will always see what skills are available to it before acting, and can use the tool to activate a skill and read its full content.
If your skills directory contains resource files (such as scripts, assets, etc.), you can add a ReadFileTool to enable your agent to read these files.
from langchain.agents import create_agent
from langchain_community.tools.file_management.read import ReadFileTool
from langchain_skills_adapters import SkillsTool
# Create the SkillsTool pointed to your skills directory
skills_dir = "/path/to/skills/"
skills_tool = SkillsTool(skills_dir)
# Optional: Add a file reading tool. Recommended if your agent needs to read resources from your skills directory (scripts, assets, etc.)
read_file_tool = ReadFileTool(root_dir=skills_dir)
# Create the agent
tools = [skills_tool, read_file_tool]
agent = create_agent("openai:gpt-5", tools=tools)
response = agent.invoke(input={"messages": {"role": "user", "content": "What skills do you have?"}})
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langchain_skills_adapters-0.1.6rc2.tar.gz.
File metadata
- Download URL: langchain_skills_adapters-0.1.6rc2.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b27cc9c3520a2f5f67793e5a96ce462bcba868fe2d572c1def9ab950cc449a85
|
|
| MD5 |
514b5564dcbfb4fdab9634c07684f5f0
|
|
| BLAKE2b-256 |
b8c8e5a99bd02e5309958a513add0c67fc75904ec6b56c3df31fa36527af321a
|
Provenance
The following attestation bundles were made for langchain_skills_adapters-0.1.6rc2.tar.gz:
Publisher:
release.yml on taagarwa-rh/langchain-skills-adapters
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
langchain_skills_adapters-0.1.6rc2.tar.gz -
Subject digest:
b27cc9c3520a2f5f67793e5a96ce462bcba868fe2d572c1def9ab950cc449a85 - Sigstore transparency entry: 1149642635
- Sigstore integration time:
-
Permalink:
taagarwa-rh/langchain-skills-adapters@9659e899ed29518bfa0213b3b39cd6e47bc638f2 -
Branch / Tag:
refs/tags/v0.1.6rc2 - Owner: https://github.com/taagarwa-rh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9659e899ed29518bfa0213b3b39cd6e47bc638f2 -
Trigger Event:
push
-
Statement type:
File details
Details for the file langchain_skills_adapters-0.1.6rc2-py3-none-any.whl.
File metadata
- Download URL: langchain_skills_adapters-0.1.6rc2-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d015398b6618a8b62efc5b8ecd193fa90ea0595f89a175f8505f44bd36a46e24
|
|
| MD5 |
6a3e812601a044c752eedbfd9f3114b9
|
|
| BLAKE2b-256 |
25991d3fd9cdd8821b9ae8d0ef4b12db3c60d8679fbdf40740706d29c933b7cf
|
Provenance
The following attestation bundles were made for langchain_skills_adapters-0.1.6rc2-py3-none-any.whl:
Publisher:
release.yml on taagarwa-rh/langchain-skills-adapters
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
langchain_skills_adapters-0.1.6rc2-py3-none-any.whl -
Subject digest:
d015398b6618a8b62efc5b8ecd193fa90ea0595f89a175f8505f44bd36a46e24 - Sigstore transparency entry: 1149642727
- Sigstore integration time:
-
Permalink:
taagarwa-rh/langchain-skills-adapters@9659e899ed29518bfa0213b3b39cd6e47bc638f2 -
Branch / Tag:
refs/tags/v0.1.6rc2 - Owner: https://github.com/taagarwa-rh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9659e899ed29518bfa0213b3b39cd6e47bc638f2 -
Trigger Event:
push
-
Statement type: