Metadata-Version: 2.5
Name: skillfabric-ai
Version: 0.1.1
Summary: Skill graph, task specific Wiki routing, and execution prompt orchestration for agent skills.
Project-URL: Homepage, https://github.com/zjunlp/SkillNet-Fabric
Project-URL: Source, https://github.com/zjunlp/SkillNet-Fabric
Project-URL: Issues, https://github.com/zjunlp/SkillNet-Fabric/issues
Author: SkillFabric Contributors
License: MIT License
        
        Copyright (c) 2026 SkillFabric Contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: agents,claude-code,codex,routing,skills
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: httpx<1.0,>=0.28
Requires-Dist: litellm<1.90,>=1.63.8
Requires-Dist: numpy<3,>=1.26
Requires-Dist: pydantic<2.13,>=2.10
Requires-Dist: pyyaml<7,>=6.0
Requires-Dist: rich<15,>=13.9
Provides-Extra: all
Requires-Dist: claude-agent-sdk<0.3,>=0.2.110; extra == 'all'
Requires-Dist: openai-codex<0.2,>=0.144.4; extra == 'all'
Provides-Extra: claude
Requires-Dist: claude-agent-sdk<0.3,>=0.2.110; extra == 'claude'
Provides-Extra: codex
Requires-Dist: openai-codex<0.2,>=0.144.4; extra == 'codex'
Provides-Extra: dev
Requires-Dist: build<2,>=1.2; extra == 'dev'
Requires-Dist: pytest<10,>=8.0; extra == 'dev'
Requires-Dist: ruff<1,>=0.8; extra == 'dev'
Requires-Dist: tomli>=2.0; (python_version < '3.11') and extra == 'dev'
Description-Content-Type: text/markdown

# skillfabric-ai

SkillFabric helps Claude Code and Codex choose Skills from a local library of native `SKILL.md`
files. Build the library once, route each task through a focused Task Wiki, and receive a small
set of Skills with source evidence.

## Install

```bash
python -m pip install "skillfabric-ai[claude]"
```

Add the Codex Explorer when needed:

```bash
python -m pip install "skillfabric-ai[codex]"
```

## Quick Start

Create a private `.env` file with an LLM and embedding configuration, then run:

```bash
skillfabric build --skill-root ./skills --workspace .skillfabric --env-file .env
skillfabric route "Analyze the dataset and prepare a presentation"
```

Builds reuse unchanged contracts, embeddings, and relation judgments when the Skill library is
updated. Add `--json` when another program consumes the result.

## Python API

```python
from skillfabric import SkillFabric

fabric = SkillFabric(workspace=".skillfabric", env_file=".env")
fabric.build("./skills")
route = fabric.route("Analyze the dataset and prepare a presentation")
print([skill.skill_id for skill in route.selected_skills])
```

The full project documentation and Claude Code plugin are available at:

<https://github.com/zjunlp/SkillNet-Fabric>
