Metadata-Version: 2.4
Name: langchain-ai-skills-framework
Version: 1.0.2
Summary: ai-skills-framework
Home-page: https://github.com/icanbwell/ai-skills
Author: Imran Qureshi
Author-email: imran.qureshi@bwell.com
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyyaml>=6.0.3
Requires-Dist: langchain-core>=1.0.0
Requires-Dist: pydantic<3.0.0,>=2.0
Requires-Dist: langchain>=1.0.0
Requires-Dist: fsspec>=2026.2.0
Requires-Dist: s3fs>=2026.2.0
Requires-Dist: requests
Requires-Dist: aiohttp>=3.8.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# langchain-ai-skills-framework

## Overview
- langchain-ai-skills-framework loads Agent Skills from `SKILL.md` files and serves them via LangChain middleware and tools.
- Skills are parsed and validated by `SkillDirectoryLoader`, cached with `SkillCache`, and surfaced through `SkillMiddleware` and `LoadSkillTool`.

## Skill authoring
- See `docs/skill-authoring.md` for required frontmatter, naming rules, and examples.

## Quick start
- `make init` – initialize the local dev environment.
- `make up` – start the dev container.
- `make run-pre-commit` – run lint/type/security suite.
- `make tests` – run dockerized pytest.
- `make build` – build sdist/wheel packages.
