ac-git-gh-assets-branch-mgmt

ac-git-gh-assets-branch-mgmt is a skill for Claude Code from WaterplanAI/agentic-config. It costs 61 tokens per session (2,750 once invoked), scanned A, original, MIT.

A GitHub asset manager for storing screenshots and videos on a long-lived branch and producing links for pull requests.

In plain words
What is it for?
It is for creating an assets branch, uploading visual evidence from browser tests, and generating persistent raw URLs for pull requests.
Why use it?
It avoids image links that depend on temporary access tokens and may stop working later.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the agentic-config plugin — 49 skills, 1 plugin shipped together

Good fit It is for creating an assets branch, uploading visual evidence from browser tests, and generating persistent raw URLs for pull requests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/waterplanai/agentic-config/ac-git-gh-assets-branch-mgmt
Install

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.

Any agent
npx skills add WaterplanAI/agentic-config --skill ac-git-gh-assets-branch-mgmt
Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config

Made for: Claude Code.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 1 plugin.

Wrote 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.

agentmods badge for ac-git-gh-assets-branch-mgmt

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-git-gh-assets-branch-mgmt/github.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/ac-git-gh-assets-branch-mgmt)
Your own site
<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.

agentmods 80×15 button for ac-git-gh-assets-branch-mgmt

Your own site · 80×15
<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>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,750 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 11d ago against content hash 39cc384b6289, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

The scan reads SKILL.md. This mod also ships 3 executable files (gh-assets-download.sh, gh-assets-upload.sh, gh-video-convert.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

packages/pi-ac-git/skills/ac-git-gh-assets-branch-mgmt/SKILL.md · 346 lines

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 configured outputDir)
  • Format: Video files saved by playwright-cli
  • Resolution: Configured in playwright-cli.json saveVideo settings (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

  1. Screenshots: Use playwright-cli screenshot during E2E validation
  2. Video: After E2E session completes (after video-stop), find the video in outputs/e2e/
  3. 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

Read the full file on GitHub · 346 lines

Files

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.

Changes

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.

  1. 11d ago First seen · 346 lines · 61 tokens per session scan A 39cc384b6289

Subscribe to this mod's changes

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.

Related

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.

MoizIbnYousaf/Ai-Agent-Skills · 41 tokens

generate-release-notes

Generate categorized release notes from any source (GitHub, Linear, Jira, or manual input) with optional publishing.

huytieu/COG-second-brain · 27 tokens

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…

soulcodex/agentic · 103 tokens

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.

soulcodex/agentic · 54 tokens

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.

soulcodex/agentic · 58 tokens

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…

esneiderbravo/speclaw · 0 tokens