You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
langchain-ai-skills-framework loads Agent Skills from SKILL.md files and serves them via LangChain tools.
Skills come from two sources:
Plugin marketplace (MarketplaceDirectoryLoader) — shared skills loaded from filesystem or GitHub, organized as plugins/<plugin>/skills/<skill>/SKILL.md.
User-persisted skills (MongoPluginSkillLoader) — stored in MongoDB across three collections (plugin_skills, plugin_references, plugin_scripts).
CompositeSkillLoader merges both sources with precedence: user → shared DB → marketplace.
All skill tools are scoped by plugin_name.
Skill authoring
See docs/skill-authoring.md for required frontmatter, naming rules, and examples.
GitHub authentication for remote plugins
When PLUGINS_MARKETPLACE uses github://..., provide a token via SKILLS_GITHUB_TOKEN (preferred) or GITHUB_TOKEN (fallback).