dsh-web: Skill for Claude Code

.agents/skills/dsh-web-pre-push-checks/SKILL.md

dsh-web-pre-push-checks is a skill for Claude Code from zhu1090093659/dsh-web. It costs 45 tokens per session (753 once invoked), scanned A, original, Apache-2.0.

A pre-push checklist for the dsh-web repository. It selects the checks needed for the changed files and requires build, test, documentation, and visual evidence where relevant.

In plain words
What is it for?
Use it before pushing changes or opening or updating a pull request, to inspect the diff, run the required commands, and collect any needed GUI or generated-file evidence.
Why use it?
It reduces the chance of pushing changes that fail repository rules or introduce problems that a focused test alone would miss.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is zhu1090093659/dsh-web's own configuration. It tells Claude Code how to work on dsh-web 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 dsh-web configures →

About the project

dsh-web is a plugin ecosystem that adds a web interface and optional tools to DeepSeek Harness, an AI development environment. It is used to provide features such as task boards, mobile remote control, SSH operations, image understanding, file and code panels, Git views, agent presets, and interchangeable skins through independently loaded plugins. The catalogue skills are plugins and related workflows for extending and operating the DSH Web environment.

zhu1090093659/dsh-web · 7,417 stars · on GitHub · dsh-market.com

Reuse

Borrowing it

Nothing to install: this file belongs to zhu1090093659/dsh-web. 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/zhu1090093659/dsh-web/dev/.agents/skills/dsh-web-pre-push-checks/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/zhu1090093659/dsh-web

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 dsh-web-pre-push-checks

README.md
[![agentmods](https://agentmods.dev/badge/skills/zhu1090093659/dsh-web/dsh-web-pre-push-checks/github.svg)](https://agentmods.dev/skills/zhu1090093659/dsh-web/dsh-web-pre-push-checks)
Your own site
<a href="https://agentmods.dev/skills/zhu1090093659/dsh-web/dsh-web-pre-push-checks"><img src="https://agentmods.dev/badge/skills/zhu1090093659/dsh-web/dsh-web-pre-push-checks/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 dsh-web-pre-push-checks

Your own site · 80×15
<a href="https://agentmods.dev/skills/zhu1090093659/dsh-web/dsh-web-pre-push-checks"><img src="https://agentmods.dev/badge/skills/zhu1090093659/dsh-web/dsh-web-pre-push-checks.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 753 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00045 $0.00753
Opus 5 $0.00023 $0.00377
Sonnet 5 $0.00009 $0.00151
Haiku 4.5 $0.00005 $0.00075

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

Security

Grade A, and why

dsh-web-pre-push-checks 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 10d 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.

.agents/skills/dsh-web-pre-push-checks/SKILL.md · 44 lines

How it starts

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

dsh-web Pre-Push Checks

Run checks from the repository root after the implementation is stable. This workflow supplements AGENTS.md; it does not replace a focused regression test for changed behavior.

Inspect the outgoing change

  1. Confirm the branch, repository root, and worktree status.
  2. Inspect the requested base-to-head diff and every dirty file that will be included.
  3. Run git diff --check before reporting success. Do not stage unrelated changes with git add -A.
  4. Sync collaborator merges before validating: git fetch origin and rebase onto origin/dev (git rebase origin/dev). Aa728848 merges renderer / Wallpaper Engine / WebGL PRs into dev; when the rebase pulls in new base commits, re-run the affected gates on the rebased tree before reporting.
  5. Verify the push target before pushing: git remote -v must resolve both fetch and push to github.com/zhu1090093659/dsh-web, with no remote.origin.pushurl override. A leftover push-URL redirect (e.g. from contributor-fork PR work) silently targets the wrong repository; restore with git remote set-url origin https://github.com/zhu1090093659/dsh-web and git config --unset remote.origin.pushurl. Push to contributor forks only via a named one-off remote (git remote add <name> <fork-url>) or a direct URL. scripts/git-pre-push-guard.sh (installed as .git/hooks/pre-push per AGENTS.md) blocks a mispointed origin; keep it installed.

Required repository gates

Before a push or review claim, run the repository baseline unless a higher-priority instruction narrows the operation:

pnpm typecheck
pnpm test
pnpm test:scripts
pnpm docs:check

Run the narrowest owning test first for a behavior change. Add an affected-package build or pnpm build when package exports, manifests, runtime entry points, generated bundles, or build configuration changed.

Add checks dictated by the diff

  • shared/ changes: run pnpm sync-shared followed by pnpm sync-shared:check.
  • Aggregate membership or package additions/removals: regenerate with node scripts/aggregate.mjs, then run pnpm aggregate:check.
  • Skin assets, skin registry, or market asset changes: run pnpm market:check and pnpm skin-center:check.
  • Community plugin index changes: regenerate with node scripts/community-index, then run pnpm community:check.
  • Browser runtime imports, dependency manifests, or client bundle changes: run pnpm runtime-deps:check and the affected package build.
  • Changed package README files: update the paired language and record the pair through pnpm docs:write-pair before pnpm docs:check.
  • User-facing client changes: follow dsh-web-web-qa and retain the actual GUI evidence.

Read the full file on GitHub · 44 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. 10d ago Changed · +1 lines cd6ac8500c19
  2. 12d ago First seen · 43 lines · 45 tokens per session scan A 979744366114

Subscribe to this mod's changes

dsh-web-pre-push-checks is a skill published in the GitHub repository zhu1090093659/dsh-web (7,417 stars, last pushed today), licensed Apache-2.0. It adds 45 tokens to every session and 753 once invoked, about $0.0002 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

resolving-merge-conflicts

Use when you need to resolve an in-progress git merge/rebase conflict.

gongyijie85/mattpocock-skills-dsh · 23 tokens

manage-taskboard

Manage work in the native DeepSeek Harness Taskboard with exact task ids and optimistic versions. Use when an Agent must inspect project work, claim an eligible todo, record progress or blockers, verify an implementation, submit it for human review, or release its own claim; also use when a human asks how to accept…

shengsheng90/DSH-taskboard · 88 tokens

company-research-method

A documented process for researching a company using supplied files and selected public sources. It produces a company overview with business details, sourced financial figures, and stated risks.

PerryLink/dsh-industry-research · 83 tokens

industry-research-method

A Chinese-language method for researching an industry by mapping its supply chain, tracking policies and news, and writing sourced reports. It separates the chain into upstream inputs, midstream production, and downstream distribution or use.

PerryLink/dsh-industry-research · 96 tokens

commit-message

Guidance for writing Git commit messages using Conventional Commits, a common format such as fix, feat, or docs followed by a short description. It focuses on explaining why a change was made.

pingfanfan/hello-dsh · 43 tokens

dsh-plugin-guide

Use when developing, reviewing, packaging, debugging, or answering questions about DeepSeek Harness (DSH) plugins — the plugin-based agent harness on vendored Cordis. Applies the official plugin-development constraints (plugin contract, cordis.yml layers, services/events/effects, tool DSL, bundles/profiles) backed by…

PerryLink/dsh-plugin-guide · 76 tokens