agentskills.io support for LangChain and LangGraph
Project description
langchain-agentskills
agentskills.io support for LangChain and LangGraph.
Install
pip install langchain-agentskills
Quick Start
Toolkit (classic)
from langchain.agents import create_agent
from langchain_agentskills import SkillsToolkit
toolkit = SkillsToolkit(directories=["./skills"])
agent = create_agent(
model="gpt-5.2",
tools=toolkit.get_tools(),
system_prompt=toolkit.get_instructions(),
)
Middleware (recommended)
from langchain.agents import create_agent
from langchain_agentskills import DirectorySkillLoader, SkillMiddleware
loader = DirectorySkillLoader("./skills")
agent = create_agent(
model="gpt-5.2",
middleware=[SkillMiddleware(loader=loader)],
)
The middleware automatically injects skill descriptions into the system prompt and registers load_skill, read_skill_resource, and run_skill_script tools.
Skill directory structure
skills/
my-skill/
SKILL.md # Frontmatter + instructions
references/ # Resource files the agent can read
api-spec.yaml
scripts/ # Executable scripts the agent can run
deploy.sh
SKILL.md uses YAML frontmatter:
---
name: my-skill
description: Short description for the agent
version: "1.0"
tags: [deployment, ci]
---
# Instructions
Detailed instructions for the agent...
Custom loaders
Implement SkillLoader to load skills from any source (Git, S3, database, etc.):
from langchain_agentskills import SkillLoader
class MyGitLoader(SkillLoader):
def list_skills(self): ...
def load_skill(self, name): ...
def read_resource(self, skill_name, resource_name): ...
def read_script(self, skill_name, script_name): ...
def has_skill(self, name): ...
Use with the toolkit or middleware:
# Toolkit
toolkit = SkillsToolkit(loaders=[MyGitLoader(...)])
# Middleware
middleware = SkillMiddleware(loader=MyGitLoader(...))
License
MIT
Project details
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_agentskills-0.1.2.tar.gz.
File metadata
- Download URL: langchain_agentskills-0.1.2.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c9c1ca768d43aba31ef2a166fa51939b381caa34fd36a99ebfc71b8b9438afa
|
|
| MD5 |
8c84a0a8643f64884d8b7a7bf7356b1f
|
|
| BLAKE2b-256 |
1efb012c584d888d0dbaca6bf23999c3e000a7e30583264b58f7f3d1da54fa81
|
File details
Details for the file langchain_agentskills-0.1.2-py3-none-any.whl.
File metadata
- Download URL: langchain_agentskills-0.1.2-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45b30596be9972738fa5ef5d6f93b69e4440830cc4815b7d419a0766e05e45c5
|
|
| MD5 |
f348331d89c02fed69e60994e64725a4
|
|
| BLAKE2b-256 |
b1bdec1f6a3f43b8eae0b66aaa29bd472b972dae8a73b55802ba8587507371bc
|