Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/pr-pm/prpm/testing-prpm-clinpx skills add pr-pm/prpm --skill testing-prpm-cligit clone --depth 1 https://github.com/pr-pm/prpmWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00041 | $0.03031 |
| Opus 5 | $0.00020 | $0.01515 |
| Sonnet 5 | $0.00008 | $0.00606 |
| Haiku 4.5 | $0.00004 | $0.00303 |
Grade C, and why
testing-prpm-cli scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf .openskills AGENTS.md How it starts
The opening of the file, as written. The whole thing — 351 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Testing PRPM CLI
Overview
Test PRPM CLI commands against a local registry by building the package, setting the registry URL, and invoking the CLI directly. Includes comprehensive cross-format conversion testing patterns and contract testing to verify documented behavior matches implementation.
When to Use
- Testing new CLI commands or features
- Debugging CLI behavior
- Verifying CLI changes before committing
- Testing against local registry data
- Validating cross-format conversions
- Testing new format converters
- Contract testing: verifying documented behavior matches implementation
Quick Reference
| Step | Command |
|---|---|
| Build CLI | npm run build --workspace=packages/cli |
| Start local registry | npm run dev --workspace=packages/registry |
| Set local registry | export PRPM_REGISTRY_URL=http://127.0.0.1:3111 |
| Run CLI directly | node /Users/khaliqgant/Projects/prpm/app/packages/cli/dist/index.js <command> |
| Run via npm link | prpm <command> (after linking) |
Workflow
1. Build the CLI (Required First Step)
Always rebuild before testing to ensure you're testing current code:
npm run build --workspace=packages/cli
2. Start Local Registry
Start the registry server in background:
npm run dev --workspace=packages/registry &
sleep 3
lsof -i :3111 # Verify it's running
3. Configure Local Registry
Point CLI to local registry instead of production:
export PRPM_REGISTRY_URL=http://127.0.0.1:3111
Verify it's set:
echo $PRPM_REGISTRY_URL
4. Run CLI Commands
Option A: Direct invocation (recommended for testing)
node /Users/khaliqgant/Projects/prpm/app/packages/cli/dist/index.js search typescript
node /Users/khaliqgant/Projects/prpm/app/packages/cli/dist/index.js install some-package
Option B: npm link (for interactive testing)
cd packages/cli
npm link
prpm search typescript
Comprehensive Conversion Testing
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 351 lines · 41 tokens per session scan C 49653196ccdc
testing-prpm-cli is a skill published in the GitHub repository pr-pm/prpm (120 stars, last pushed 2mo ago), licensed MIT. It adds 41 tokens to every session and 3,031 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
implement-fastapi-routes
The file docstring contains a description of the FastAPI routes we need to implement. Implement these routes.
react-router-client-loader
Do this in a clientLoader and use loaderData to render the component. DO NOT create mock data, new interfaces, or mock data loader functions. Instead, assume loaderData has all of the data you need to render the component.
refactor-on-instructions
Refactor this code following all the established coding rules. Pay very careful attention to each rule and instruction and update the referenced code.
architecture
Architecture Design Command 🏗️.
biome
Biome JavaScript/TypeScript linter and formatter.
laravel
Laravel PHP framework best practices.