claude-session-dashboard: Skill for Claude Code

.claude/skills/ship/SKILL.md

ship is a skill for Claude Code from dlupiak/claude-session-dashboard. It costs 27 tokens per session (940 once invoked), scanned A, original, MIT.

A release workflow that commits changes, pushes the branch, opens a pull request, waits for approval and checks, and merges it.

In plain words
What is it for?
Use it after a feature or fix is complete and ready to go through code review. It covers branch checks, change review, committing, pushing, pull-request creation, CI monitoring, and merging.
Why use it?
It turns the final delivery steps into a defined checklist and checks that work is not being shipped directly from the main branch. It also includes validation and instructions for handling common push or CI problems.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: positional $N argument; mentions Claude Code.

This is dlupiak/claude-session-dashboard's own configuration. It tells Claude Code how to work on claude-session-dashboard itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-session-dashboard configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dlupiak/claude-session-dashboard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dlupiak/claude-session-dashboard/main/.claude/skills/ship/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dlupiak/claude-session-dashboard

Made for: Claude Code.

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 ship

README.md
[![agentmods](https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/ship.svg)](https://agentmods.dev/skills/dlupiak/claude-session-dashboard/ship)
Your own site
<a href="https://agentmods.dev/skills/dlupiak/claude-session-dashboard/ship"><img src="https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/ship.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 940 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.00027 $0.00940
Opus 5 $0.00014 $0.00470
Sonnet 5 $0.00005 $0.00188
Haiku 4.5 $0.00003 $0.00094

Measured 5d ago against content hash 3c54ff2f5251, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

ship 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 5d 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.

.claude/skills/ship/SKILL.md · 138 lines

How it starts

The opening of the file, as written. The whole thing — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Ship

Finalize the current feature branch: commit, push, create a PR, wait for approval, check CI, and merge.

Step 1: Verify branch

Run git branch --show-current and confirm you are NOT on main or master. If you are, STOP and tell the user to check out a feature branch first.

git branch --show-current

If the branch is main or master, abort with:

"You are on main. Please check out a feature branch before shipping."

Step 2: Check for changes

Run git status and git diff --stat to see what needs to be committed.

  • If there are no staged or unstaged changes and no untracked files, skip to Step 4 (push).
  • If there are changes, proceed to Step 3.
git status
git diff --stat

Step 3: Commit

  1. Run git diff (staged + unstaged) to understand all changes.
  2. Run git log --oneline -5 to match the repo's commit message style.
  3. Stage relevant files (use specific file names, never git add -A). Do NOT stage files that look like secrets (.env, credentials).
  4. Write a concise commit message summarizing the changes.
  5. Commit using a HEREDOC:
git commit -m "$(cat <<'EOF'
feat: <description>

Co-Authored-By: Claude Opus 4.6 <[email protected]>
EOF
)"

Step 4: Push

Push the branch to origin. Use -u if this is the first push.

git push -u origin $(git branch --show-current)

Step 5: Create PR

Check if a PR already exists for this branch:

gh pr view --json number,title,url 2>&1
  • If a PR already exists, skip to Step 6.
  • If no PR exists, create one:
  1. Run git log --oneline main..HEAD to understand all commits on this branch.
  2. Run git diff main...HEAD --stat for a change summary.
  3. Create the PR:
gh pr create --title "<short title>" --body "$(cat <<'EOF'
## Summary
<bullet points summarizing changes>

## Test plan
<checklist of testing steps>

Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"
  1. Report the PR URL to the user.

Read the full file on GitHub · 138 lines

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. 5d ago First seen · 138 lines · 27 tokens per session scan A 3c54ff2f5251

Subscribe to this mod's changes

ship is a skill published in the GitHub repository dlupiak/claude-session-dashboard (67 stars, last pushed 3d ago), licensed MIT. It adds 27 tokens to every session and 940 once invoked, about $0.0001 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-09-01.

Related

Other skills, from other repositories

bootstrap-project

Use when setting up a new project with the full opinionated workflow — session memory, commit hooks, copyright headers, ROADMAP, and CLAUDE.md. Invoke with "bootstrap project", "setup project", "new project setup", or /bootstrap-project.

jkm-4314/claude-code-skills · 54 tokens

commit-lint

Set up conventional commit linting.

barnburner121/claude-plugin-marketplace · 10 tokens

checkpoint

Creates a git checkpoint commit of all current changes. Use when you want to save progress mid-session before risky changes. Invoke with /checkpoint or "save checkpoint" or "git checkpoint".

SatymSingh01/claude-code-pack · 39 tokens

deployment-patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.

affaan-m/ECC · 41 tokens

security-pipeline

Use when security verification is needed - pre-commit security checks, vulnerability scanning, STRIDE threat analysis. Integrates with /handoff-verify --security and /commit-push-pr. CWE Top 25 based.

sangrokjung/claude-forge · 48 tokens

memstack-security-git-guard

Use when the user says 'git-guard', 'check git protection', 'is this repo protected', 'verify gitleaks', 'set up git hooks', 'install git-guard', or wants to confirm a repo blocks secrets and internal files before commit. This is an installer and verifier, NOT a scanner (gitleaks does the actual scanning). Do NOT use…

cwinvestments/memstack · 92 tokens