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 skills add WaterplanAI/agentic-config --skill ac-git-gh-assets-branch-mgmtgit clone --depth 1 https://github.com/WaterplanAI/agentic-configWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/waterplanai/agentic-config/ac-git-gh-assets-branch-mgmt)<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-git-gh-assets-branch-mgmt"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-git-gh-assets-branch-mgmt/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-git-gh-assets-branch-mgmt"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-git-gh-assets-branch-mgmt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.00061 | $0.02750 |
| Opus 5 | $0.00030 | $0.01375 |
| Sonnet 5 | $0.00012 | $0.00550 |
| Haiku 4.5 | $0.00006 | $0.00275 |
Grade A, and why
ac-git-gh-assets-branch-mgmt 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 11d 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 — 346 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Assets Branch Management
Automates the "assets branch" strategy for persistent image hosting in GitHub PRs. Solves the problem of transient CDN tokens (?jwt=...) that expire on private repo images.
Playwright CLI Integration
CRITICAL: When using playwright-cli for E2E testing, video recording is explicit.
Video Recording
Start and stop recording explicitly with playwright-cli:
playwright-cli video-start # Start recording
# ... perform browser actions ...
playwright-cli video-stop # Stop and save video file
- Storage:
outputs/e2e/directory (or configuredoutputDir) - Format: Video files saved by playwright-cli
- Resolution: Configured in
playwright-cli.jsonsaveVideosettings (default:1920x1080)
Evidence Upload Workflow
When adding visual evidence to PRs:
| Evidence Type | Source | Tool |
|---|---|---|
| Screenshots | playwright-cli screenshot |
Direct capture via Bash |
| Video | outputs/e2e/*.webm |
Use recorded file |
DO NOT re-record video when adding video evidence. Use the file from the E2E session.
Standard Workflow
- Screenshots: Use
playwright-cli screenshotduring E2E validation - Video: After E2E session completes (after
video-stop), find the video inoutputs/e2e/ - Upload: Use this skill to upload screenshots + video (auto-converts to MP4+GIF)
# Upload all evidence (screenshots + video)
/skill:ac-git-gh-assets-branch-mgmt upload outputs/screenshots/*.png outputs/e2e/*.webm --context pr-42
The video will be automatically converted to H.264 MP4 (8x speed) + GIF for PR embedding.
Commands
| Command | Description |
|---|---|
init |
Create orphan assets branch if not exists |
upload <files/glob> --context <id> |
Upload files to assets branch under context path |
list --context <id> |
List all assets for a context |
cleanup --context <id> |
Remove all assets for a context |
url <file> --context <id> |
Get raw URL for a specific file |
convert-video <input> [options] |
Convert video to optimized H.264 MP4 |
download-video <context> [options] |
Download videos from assets branch |
What ships with it
3 files 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.
- 11d ago First seen · 346 lines · 61 tokens per session scan A 39cc384b6289
ac-git-gh-assets-branch-mgmt is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 61 tokens to every session and 2,750 once invoked, about $0.0003 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
share-a-library
Use when a managed library is ready to publish to GitHub and hand to teammates as an install command. Run the GitHub publishing steps, then return the exact shareable install command.
generate-release-notes
Generate categorized release notes from any source (GitHub, Linear, Jira, or manual input) with optional publishing.
git-flow-pr
Executes the full PR-driven development workflow: create an isolated feature branch from the current work, commit all staged changes, rebase cleanly onto the selected base branch (skipping any ancestor commits already merged), push the branch, and open a GitHub pull request linked to a related issue. Includes guidance…
new-gh-issue-orchestration
Orchestrates a GitHub-issue-driven delivery workflow from issue intake to PR creation using reviewer-first then worker execution. Invoked when the user provides a GitHub issue link/number and asks to start end-to-end delivery.
git-worktree-workspaces
Sets up and uses Git worktrees for parallel task workspaces in the same repository clone, including safe cleanup of local worktrees. Invoked when the user asks to work on multiple branches at once, isolate tasks without extra clones, or create/remove worktrees.
archive
Finalize a completed change — sync its specs into canonical, then move it to the archive. Use when a change is done and merged-ready: "archive the change", "finalize X", "close out the change". Part of speclaw's lawbook module (draft → build → sync → archive). Archiving belongs in the same PR that implements the…