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/fpindej/netrock/create-prnpx skills add fpindej/netrock --skill create-prgit clone --depth 1 https://github.com/fpindej/netrockWhat 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.00008 | $0.00706 |
| Opus 5 | $0.00004 | $0.00353 |
| Sonnet 5 | $0.00002 | $0.00141 |
| Haiku 4.5 | $0.00001 | $0.00071 |
Grade A, and why
create-pr scanned grade A with 0 findings 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 57 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Creates a pull request for the current branch.
Current Branch Context
Branch: !git branch --show-current
Default branch: !git symbolic-ref --short refs/remotes/origin/HEAD 2>/dev/null | sed 's|origin/||' || gh repo view --json defaultBranchRef --jq .defaultBranchRef.name 2>/dev/null || echo "master"
Commits on this branch:
!git log $(git symbolic-ref --short refs/remotes/origin/HEAD 2>/dev/null || echo origin/master)..HEAD --oneline 2>/dev/null || echo "(no commits ahead of the default branch)"
Files changed:
!git diff --stat $(git symbolic-ref --short refs/remotes/origin/HEAD 2>/dev/null || echo origin/master) 2>/dev/null || echo "(no diff from the default branch)"
Hard rules
- Never commit on the default branch (master or main - see context above). If on it, create a branch first. No exceptions.
- No Co-Authored-By lines in commits. User mentions Claude on PRs, not on individual commits.
- Commit signing follows the developer's git config (
commit.gpgsign) - never pass-Sexplicitly; fresh clones may have no signing key. - Session docs are immutable history - never update old session docs to reflect current state.
Steps
- Check
git status- if uncommitted changes exist, commit them first (infer message from changes) - Verify you are NOT on the default branch. If you are, stop and ask the user to create a branch.
- Review all branch commits:
git log {default-branch}..HEAD --oneline - Push if needed:
git push -u origin $(git branch --show-current)
Session documentation (auto-generate for non-trivial PRs - 3+ commits or 5+ files changed):
- Create
docs/sessions/{YYYY-MM-DD}-{topic-slug}.mdperdocs/sessions/README.md:- Summarize all commits on the branch
- List files changed with reasons
- Document key decisions and reasoning
- Add follow-up items if any
- Commit:
docs: add session notes for {topic} - Push again
Create PR:
- Create PR with
gh pr createusing the PR body template:- Title: Conventional Commit format, under 70 chars
- Base: argument if provided, otherwise the default branch
- Labels: Apply all relevant (
backend,frontend,feature,bug,security,documentation)
- Merge strategy for this project: squash-and-merge only
- Report PR URL
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 57 lines · 8 tokens per session scan A d50c378bd59d
create-pr is a skill published in the GitHub repository fpindej/netrock (231 stars, last pushed 3d ago), licensed MIT. It adds 8 tokens to every session and 706 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
api-design
Guidelines for RESTful API design, endpoint naming conventions, and standardizing JSON responses.
python
Enforces FastAPI, Dependency Injection, and general Python coding standards based on the repository structure.
python-testing
Guidelines for Python testing using pytest and pytest-asyncio. Use when writing or debugging backend tests.
react
Guidelines for the React frontend, TanStack ecosystem, and React 19 standards. Use when modifying the UI.
react-testing
Frontend testing standards using Vitest, React Testing Library, and Playwright. Use when writing UI tests.
documentation
Standards for code documentation, docstrings, and maintaining README files.