Compile websites, docs, and repositories into agent-ready skill packs.
SaferSkills independently audited skillpress (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Compile websites, docs, and repositories into agent-ready skill packs.
SkillPress turns scattered source material into a clean SKILL.md package with references, source maps, and a maintenance trail. It is built for people who want Claude, Codex, Cursor, and other coding agents to understand a project, product, API, policy, or knowledge base without pasting the same context again and again.
pip install skillpress
skillpress build https://example.com/docs ./README.md \
--name "Example Docs" \
--description "Use when a user asks about Example's public documentation."Or expose it to an MCP-compatible agent client:
{
"mcpServers": {
"skillpress": {
"command": "skillpress",
"args": ["mcp"]
}
}
}Output:
skillpress-output/
example-docs/
SKILL.md
skillpress.json
references/
source-notes.md
sources.jsonAI agents are powerful, but they still waste time when knowledge is trapped in long docs, scattered repository files, PDFs, internal notes, or web pages. SkillPress gives that material a portable shape:
SKILL.md for agent instructions.references/source-notes.md for readable context.references/sources.json for traceability.skillpress.json for regeneration and maintenance.It is not a web-scraping bypass tool. It is a public-source and local-document compiler for responsible agent workflows.
Create a skill from public docs and local files:
skillpress build https://example.com/docs ./docs \
--name "Example Product" \
--description "Use when answering questions about Example Product."Create an empty skeleton:
skillpress new "Support Playbook" \
--description "Use when drafting support replies from the team playbook."Inspect a skill:
skillpress inspect skillpress-output/example-product
skillpress inspect skillpress-output/example-product --jsonPackage a skill:
skillpress pack skillpress-output/example-productRun the MCP server:
skillpress mcpSKILL.md.MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.