skillfed

skillsaw

A configurable linter for agent skills, plugins, and AI coding assistant context

skillsaw v0.18.0 574.3K downloads/30d#5,940 on PyPI48
Permissive license Apache-2.0 Active released

What it is and what it does

skillsaw is a linter for the configuration and instruction files that steer AI coding agents—files like CLAUDE.md, AGENTS.md, Agent Skills, and plugin manifests. It treats agent instructions as code rather than prose, catching structural errors (invalid frontmatter, broken references), quality issues (vague language, contradictions, buried priorities), and security problems (embedded secrets, hidden instructions, dangerous configurations) that make agents less reliable. It understands multiple agent frameworks and plugin standards, detects repository type automatically, and can lint multiple types in the same project.

The tool runs locally, in CI pipelines, and inside agent workflows. It produces line-level findings with explanations, applies deterministic autofixes where safe, supports baselines for gradual adoption, and outputs to text, JSON, SARIF, HTML, and Code Climate formats. Rules are configurable, and teams can add local rules or install rule plugins. Every run generates a weighted grade based on violation density.

Use it for:

  • Catch structural errors and broken references in agent skill and plugin files before they cause agent failures.
  • Enforce consistent terminology and description quality across a repository of agent instructions and configurations.
  • Detect embedded secrets, invisible Unicode, and hidden instructions in agent context files as part of a security review.
  • Integrate linting into CI/CD to fail pull requests when new instruction quality violations are introduced.
  • Gradually adopt linting standards across an existing codebase using baselines, fixing only new violations.
  • Generate a grade badge and report card for a project's agent instruction quality to display in README or dashboards.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A linter for AI agent instruction files that detects structural errors, vague language, contradictions, security risks, and configuration problems in agent skills, plugins, and coding assistant context.

Yes. skillsaw addresses a real gap: agent instructions are now critical infrastructure but lack the tooling that code has. The package is actively maintained, has low install friction, carries no security vulnerabilities, and is licensed permissively. It's in Beta but has been released for months and sees substantial monthly downloads. Install it if you maintain agent skills, plugins, or AI coding assistant context files.

Install

skillsaw on PyPI

pip

pip install skillsaw

uv

uv add skillsaw

poetry

poetry add skillsaw

Installing skillsaw

Before you install

Active project released 7 days ago with a recent commit history. Low install friction: pure Python wheel with four common dependencies (PyYAML, ruamel.yaml, markdown-it-py, jsonschema). Supports Python 3.9 through 3.14.

License in practice

Apache License 2.0 (permissive): you can use, modify, and distribute skillsaw freely in commercial and private projects, provided you include the license notice and state significant changes.

Quickstart

pip install skillsaw

# Run linter on current repository
import subprocess
result = subprocess.run(['skillsaw'], capture_output=True, text=True)
print(result.stdout)

Requires Python 3.9 or later. Designed to run against a repository containing agent instruction files (skills, plugins, agent configs); running it without such files will produce minimal output.

Verify before relying

  • Whether the package can be used as a library (imported and called from Python) or only as a CLI tool.
  • Performance characteristics when linting large repositories or many instruction files.
  • Whether custom rule plugins require additional dependencies beyond the four listed runtime deps.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 4 — PyYAML, ruamel.yaml, markdown-it-py, jsonschema
Maintenance actively maintained — 7 days since the last release
Last repo commit
First released
Downloads 574,293/month — #5,940 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: skillsaw-0.18.0-py3-none-any.whl

Keywords: agentskills, claude, claude-code, linter, plugin, skills, validation, skillsaw

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: Apache Software LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.9Topic :: Software Development :: Quality AssuranceTopic :: Software Development :: Testing

Tags

agent instruction linterAI skill validationagent configuration checkerplugin manifest lintercoding agent context qualityskill file linteragent prompt linter
ai-agentslintingprompt-engineering

More Testing packages

Further reading