dsh-topic-curator

dsh-topic-curator is a skill for Claude Code, Codex from cccakeee/awesome-dsh-plugins. It costs 110 tokens per session (2,020 once invoked), scanned A, original, MIT.

A catalogue-maintenance workflow for scanning GitHub repositories tagged with the dsh-plugin topic and reviewing potential community extensions. It compares new findings with local CSV catalogues and applies the project's qualification rules.

In plain words
What is it for?
Use it to scan the topic, find qualifying repositories above the configured star threshold, dispatch reviews, and update the repository, candidate, audit, and verified-plugin CSV files.
Why use it?
It helps maintain an accurate plugin catalogue despite the topic's large and rapidly changing number of repositories. The review steps filter candidates before they are added.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit Use it to scan the topic, find qualifying repositories above the configured star threshold, dispatch reviews, and update the repository, candidate, audit, and verified-plugin CSV files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cccakeee/awesome-dsh-plugins/dsh-topic-curator
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 cccakeee/awesome-dsh-plugins --skill dsh-topic-curator
Clone the repo
git clone --depth 1 https://github.com/cccakeee/awesome-dsh-plugins

Made for: Claude Code, Codex.

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-topic-curator

README.md
[![agentmods](https://agentmods.dev/badge/skills/cccakeee/awesome-dsh-plugins/dsh-topic-curator.svg)](https://agentmods.dev/skills/cccakeee/awesome-dsh-plugins/dsh-topic-curator)
Your own site
<a href="https://agentmods.dev/skills/cccakeee/awesome-dsh-plugins/dsh-topic-curator"><img src="https://agentmods.dev/badge/skills/cccakeee/awesome-dsh-plugins/dsh-topic-curator.svg" alt="Measured on agentmods" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,020 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.00110 $0.02020
Opus 5 $0.00055 $0.01010
Sonnet 5 $0.00022 $0.00404
Haiku 4.5 $0.00011 $0.00202

Measured 7d ago against content hash 6fd918f22685, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

dsh-topic-curator 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 7d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/diff_topic.py, scripts/full_topic_scan.py), 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.

.workbuddy/skills/dsh-topic-curator/SKILL.md · 133 lines

How it starts

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

DSH Topic Curator

Keep data/repositories.csv, data/dsh-plugin-topic-candidates.csv, data/audit-results.csv, and data/verified-plugins.csv in sync with the GitHub dsh-plugin topic, adding only genuine, qualifying extensions and respecting the star floor.

When to use

  • The user asks to scan / refresh / sync the dsh-plugin GitHub topic into the catalog.
  • The user reports "the topic has new repos" and wants them vetted and merged.
  • Periodic catalog maintenance ("继续扫", "再扫一轮").

Workflow

1. Collect topic repos (gh Search API, paginated)

  • The dsh-plugin topic exploded to ~10,600 repos (2026-08; 9923 of them were pushed in 2026-08 alone). It is far too big for WebFetch pagination (~260 pages).
  • Search API hard cap: every query returns at most 1000 results (page=11 → HTTP 422 "Only the first 1000 search results are available"). A single sort=stars query therefore only ever sees the top-1000-by-stars — missing the ~9,900 long-tail repos where genuine new small plugins hide.
  • Full-coverage scan (recommended): use scripts/full_topic_scan.py. It partitions the topic into disjoint sub-queries (star tiers for >10, then the stars:<=10 remainder split by created: year through 2024 and month from 2025 onward — single-sided created:YYYY / created:YYYY-MM; an overflowing period is split into its days and a day into 24 adjacent hour buckets) so every leaf is fully retrievable, then dedupes by repo name. Outputs both a rich JSON and a diff_topic.py-compatible {name, stars} list.
  • python3 scripts/full_topic_scan.py --dry-run → print the partition plan + counts.
  • python3 scripts/full_topic_scan.py --execute → fetch everything (rate-limited, ~9 min; run Bash with dangerouslyDisableSandbox: true).
  • python3 scripts/full_topic_scan.py --execute --actionable-only → fetch only the six disjoint >10-star tiers used by the daily curator run.
  • --only ">500,11..20" / --since 2026-06 to scope a run.
  • Writes lean {name, stars} arrays to /tmp/dsh_topic_full.json and /tmp/dsh_topic_repos.json (compat).
  • Writes /tmp/dsh_topic_scan_summary.json; continue only when coverage_ok is strictly true and both failures and over_cap are empty. The summary is invalidated at the start of every run, so never trust an older file.
    • GOTCHA (measured 2026-08-23): day-level created:A..B is END-INCLUSIVE — created:2026-08-13..2026-08-14 = 522 + 1702 = both days. Never write a day range with a different END day; query a single day as D..D, a month as single-sided YYYY-MM, and hours as adjacent buckets T00..T01, T01..T02, ....
  • Quick top-1000 only (legacy): if you only want the popular slice, gh api "search/repositories?q=topic:dsh-plugin&sort=stars&order=desc&per_page=100&page=N" --jq '.items[] | {name: .full_name, stars: .stargazers_count}' for N=1..10, then jq -s . > topic_repos.json. The diff script's star floor makes deeper pages irrelevant for curation.
  • Dedupe by lowercased name (the topic occasionally repeats a repo).

Read the full file on GitHub · 133 lines

Files

What ships with it

5 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. 7d ago First seen · 133 lines · 110 tokens per session scan A 6fd918f22685

Subscribe to this mod's changes

dsh-topic-curator is a skill published in the GitHub repository cccakeee/awesome-dsh-plugins (7 stars, last pushed 2d ago), licensed MIT. It adds 110 tokens to every session and 2,020 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories

web-design-guidelines

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".

awesome-dsh-plugin/awesome-dsh-plugin · 44 tokens

submit-dsh-plugin

A submission checklist and workflow for adding a DeepSeek Harness plugin to the community’s public catalogue. It prepares the catalogue entry and checks the plugin’s repository, metadata, tests, and required files.

imsai-sh/awesome-deepseek-harness-plugins · 103 tokens

auto-research-loop

A bounded research workflow that repeats four steps: planning, searching, reading, and combining findings. It records each step and its sources so the work can resume after an interruption.

Dominic789654/awesome-deepseek-harness · 79 tokens

code-review

A structured code-review workflow for examining one fixed code change. It checks correctness, security, tests, and maintainability in that order.

Dominic789654/awesome-deepseek-harness · 77 tokens

dsh-sdk-upgrade

Safely select and install a compatible official @deepseek-ai SDK release for dsh plugin projects (dsh-web, dsh-trading, and similar monorepos) from npm using an isolated worktree, explicit cohort review, CI-equivalent validation, and controlled rollout — including syncing the project's declared DSH host-version floor…

zhu1090093659/dsh-web · 176 tokens

dsh-web-sdk-compatibility

Adapt and repair dsh-web after an approved official @deepseek-ai SDK/runtime cohort is selected or installed. Compare public API, type, service-injection, module-table, protocol, and behavior changes; map every change to repository consumers; implement the smallest fixes and durable compatibility contracts; handle…

zhu1090093659/dsh-web · 107 tokens