Pynchy Plugin Authoring — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Pynchy Plugin Authoring (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.
Use this skill when the user asks to:
pynchy pluginconfig.tomlpyproject.toml (not pynchy/pyproject.toml), define entry points under [project.entry-points."pynchy"].pynchy/docs/plugins/* instead of duplicating long explanations.pynchy/src/pynchy/config/models.py. The core config/models.py is for pynchy core settings only.When this skill mentions config files, use this mapping:
config.toml ([plugins.<name>] entries enable repos)pyproject.toml<plugin-repo>/pyproject.toml (entry points live here)<plugin-repo>/src/<plugin_module>/...Copy this checklist and complete it in order:
Plugin Authoring Checklist
- [ ] Choose plugin scope and hook categories
- [ ] Create plugin directory structure (or update existing plugin)
- [ ] Implement hook methods and runtime logic
- [ ] Add/update tests
- [ ] Configure local pynchy [plugins.<name>] entry
- [ ] Run tests and smoke checks
- [ ] Update docs if behavior is user-visiblepynchy_create_channel: Host-side channel instancepynchy_service_handler: Host-side service tool handlers (IPC dispatch)pynchy_skill_paths: Skill directories mounted into containerpynchy_agent_core_info: Agent core implementation metadatapynchy_container_runtime: Host container runtime providerpynchy_workspace_spec: Managed workspace/task definitions (e.g., periodic agents)Hook reference:
docs/plugins/hooks.mdFor local pynchy, prefer config-managed plugin repos:
[plugins.example]
repo = "owner/pynchy-plugin-example"
ref = "main"
enabled = trueThen restart pynchy. Startup sync handles clone/update and host install.
If the host is remote, don't forget to ssh into it and add the plugin to the config.toml file.
For plugin repositories:
uv run pytestFor pynchy docs link safety after docs changes:
uv run mkdocs build --strictAll plugin Python code runs on the host during discovery (__init__, validate(), category methods). Installing a plugin means trusting its code. Only install plugins from authors you trust.
For the full risk-by-category breakdown, see Plugin Security.
docs/plugins/index.mddocs/plugins/quickstart.mddocs/plugins/hooks.mddocs/plugins/packaging.mddocs/plugins/available.md~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.