[PR #2468] Add SkillLite documentation for LangChain integration #2458

Open
opened 2026-02-17 17:23:26 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/2468
Author: @EXboys
Created: 2/4/2026
Status: 🔄 Open

Base: mainHead: main


📝 Commits (2)

  • 6e5080b Add SkillLite documentation for LangChain integration
  • d99d017 Merge branch 'main' into main

📊 Changes

1 file changed (+241 additions, -0 deletions)

View changed files

src/oss/python/integrations/tools/skilllite.mdx (+241 -0)

📄 Description

Add documentation for SkillLite integration with LangChain agents, covering features, setup, instantiation, invocation, security levels, async support, and callback handling.

Overview

This PR adds documentation for langchain-skilllite, a LangChain integration for SkillLite - a lightweight sandboxed agent skills execution engine(Rust-based sandbox).

Key features documented:

  • 🔒 Sandboxed execution using Rust-based sandbox (skillbox)
  • 📝 Declarative skills via SKILL.md using Agent Skills format
  • 🔍 Pre-execution security scanning
  • User confirmation callbacks for high-severity issues
  • Full async support for LangGraph agents

Type of change

Type: New documentation page

Related issues/PRs

Checklist

  • I have read the contributing guidelines
  • I have tested my changes locally using docs dev
  • All code examples have been tested and work correctly
  • I have used root relative paths for internal links
  • I have updated navigation in src/docs.json if needed (not needed - tools are auto-discovered from directory)

Additional notes

SkillLite is a sandboxed Python skill execution engine that allows LangChain agents to safely execute user-defined Python skills. It follows the Agent Skills specification for skill definition.

The package is published on PyPI as langchain-skilllite (version 0.1.3).


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/2468 **Author:** [@EXboys](https://github.com/EXboys) **Created:** 2/4/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (2) - [`6e5080b`](https://github.com/langchain-ai/docs/commit/6e5080b99e503e0aa49fb16ddcd56a353d25a9a7) Add SkillLite documentation for LangChain integration - [`d99d017`](https://github.com/langchain-ai/docs/commit/d99d0177bb7fb344405c15b1c57cae9655b770d1) Merge branch 'main' into main ### 📊 Changes **1 file changed** (+241 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `src/oss/python/integrations/tools/skilllite.mdx` (+241 -0) </details> ### 📄 Description Add documentation for SkillLite integration with LangChain agents, covering features, setup, instantiation, invocation, security levels, async support, and callback handling. ## Overview This PR adds documentation for [langchain-skilllite](https://pypi.org/project/langchain-skilllite/), a LangChain integration for SkillLite - a lightweight sandboxed agent skills execution engine(Rust-based sandbox). Key features documented: - 🔒 Sandboxed execution using Rust-based sandbox (skillbox) - 📝 Declarative skills via SKILL.md using [Agent Skills](https://agentskills.io) format - 🔍 Pre-execution security scanning - ✅ User confirmation callbacks for high-severity issues - ⚡ Full async support for LangGraph agents ## Type of change **Type:** New documentation page ## Related issues/PRs - GitHub Repository: https://github.com/EXboys/langchain-skilllite - PyPI Package: https://pypi.org/project/langchain-skilllite/ - SkillLite Core: https://github.com/EXboys/skilllite ## Checklist - [x] I have read the [contributing guidelines](README.md) - [x] I have tested my changes locally using `docs dev` - [x] All code examples have been tested and work correctly - [x] I have used **root relative** paths for internal links - [x] I have updated navigation in `src/docs.json` if needed (not needed - tools are auto-discovered from directory) ## Additional notes SkillLite is a sandboxed Python skill execution engine that allows LangChain agents to safely execute user-defined Python skills. It follows the [Agent Skills](https://agentskills.io) specification for skill definition. The package is published on PyPI as `langchain-skilllite` (version 0.1.3). --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:23:26 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#2458