mirror of
https://github.com/agentskills/agentskills.git
synced 2026-06-18 15:54:06 +08:00
547831f3a2
Reference library for Agent Skills with CLI and Python API: - validate: Check skill directories for valid SKILL.md with proper frontmatter - read-properties: Parse and output skill properties as JSON - to-prompt: Generate suggested <available_skills> XML for agent prompts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
31 lines
571 B
TOML
31 lines
571 B
TOML
[project]
|
|
name = "skills-ref"
|
|
version = "0.1.0"
|
|
description = "Reference library for Agent Skills"
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Keith Lazuka", email = "klazuka@anthropic.com" }
|
|
]
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"click>=8.0",
|
|
"strictyaml>=1.7.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
skills-ref = "skills_ref.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/skills_ref"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
"ruff>=0.8.0",
|
|
]
|