Skip to content

FeiyouG/skill-lab

Repository files navigation

Skill Lab

Skill Lab is a toolkit for deterministic analysis of AI agent skills.

It helps teams inspect skill behavior before enablement by producing structured permission and risk output.

Install the CLI (slab)

Homebrew

brew tap feiyoug/tap/slab

or

brew tap feiyoug/tap
brew install slab

Verify installation:

slab --help

For other install options, please see our docs.

Install the library

npm

npm install @FeiyouG/skill-lab

pnpm

pnpm add @FeiyouG/skill-lab

Deno

deno add npm:@FeiyouG/skill-lab

Use in code:

import { Analyzer } from "@FeiyouG/skill-lab";

Quick example

slab analyze ./path/to/skill --json

Documentation

  • Docs site: https://skill-lab.pages.dev

Repository layout

  • packages/skillreader - skill repository readers
  • packages/analyzer - deterministic analysis pipeline
  • packages/shared - shared domain and API types
  • packages/cli - slab command-line interface

For contributor workflows, see CONTRIBUTING.md.