reactive-resume
amruthpillai
A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!
PROJECT TOPICS
INSTALL REFERENCE
dsh plugin --profile web add github:444136347/dsh-capability-discovery
该命令指向仓库当前默认分支;尚无绑定当前 commit 的完整验证结果。
PROJECT README
Multi-source capability discovery, ranking, and heuristic risk inspection for DeepSeek Harness.
dsh-capability-discovery is the DSH Bundle used for installation and loading. It registers the user-facing capability-discovery Skill, which finds useful DSH plugins, Agent Skills, MCP servers, profiles, agents, and related ecosystem projects without depending on a single directory.
Independent community project. Not affiliated with or endorsed by DeepSeek.
中文说明 · Architecture · Data sources · Publishing · Contributing · Security · Changelog
The DeepSeek Harness ecosystem is distributed across GitHub topics, curated lists, and community registries. A human can browse all of them manually, but an Agent needs a smaller interface:
This project focuses on that discovery layer.
flowchart TD
Q[User task] --> D[Discovery]
D --> G[GitHub dsh-plugin topic]
D --> A1[awesome-dsh-plugins]
D --> A2[awesome-deepseek-harness]
D --> A3[awesome-dsh-plugin registry]
G --> N[Normalize + deduplicate]
A1 --> N
A2 --> N
A3 --> N
N --> R[Rank]
R --> C[Top candidates]
C --> I[Heuristic risk inspection]
I --> U[User decision]
A source failure does not fail the entire search. The response includes sourceErrors so partial coverage stays visible.
Requires Node.js 20 or newer.
git clone https://github.com/444136347/dsh-capability-discovery.git
cd dsh-capability-discovery
npm test
node cli/dsh-capability.mjs sources
node cli/dsh-capability.mjs search ppt slides --limit 5
node cli/dsh-capability.mjs search memory --type skill --json
node cli/dsh-capability.mjs inspect owner/repo
If the package is later published to npm, the same CLI can be exposed as dsh-capability.
The two names serve different roles:
| Name | Role |
|---|---|
dsh-capability-discovery |
DSH Bundle package installed into a profile |
capability-discovery |
Skill invoked inside a session |
The official CLI uses dsh plugin as the profile's external package-management entry point, so Bundles are installed through that subcommand; it does not mean the user-facing capability is a Web UI plugin. See the official Bundle publishing tutorial and reference.
Pin a published tag or commit rather than following a moving branch. The current public release is v0.1.2:
npx -y @deepseek-ai/dsh plugin --profile web add \
'github:444136347/dsh-capability-discovery#v0.1.2'
Current DSH releases add the package to dependencies and keep
dsh.profile.bundles in sync automatically. Verify the composed profile before booting:
npx -y @deepseek-ai/dsh --profile web --dump-config \
| grep -n -C 4 -E 'dsh-capability-discovery|capability-discovery'
The output should contain the # == dsh-capability-discovery Bundle layer and the dsh-capability-discovery Loader entry. Profiles are independent: installing into web does not install the Bundle into headless or another profile.
If DSH is already running, stop and restart the same profile after installing or upgrading the Bundle:
npx -y @deepseek-ai/dsh web
Refreshing the browser or creating a new session does not make an old process reload the Bundle set. At runtime, DSH only watches the profile-level ${DSH_HOME:-$HOME/.dsh}/profiles/<profile>/cordis.patch.yml and home-level ${DSH_HOME:-$HOME/.dsh}/cordis.patch.yml user patch files; changes to installed packages, dsh.profile.bundles, and a Bundle's own patch take effect on the next process start.
In a new Web session, type /cap and pick capability-discovery from the / Skill menu, or send the full gesture directly:
/capability-discovery Find up to three DSH plugins or Skills for creating presentation slides. Do not install anything.
The /capability-discovery gesture deterministically loads the Skill instructions before handling the rest of the task. Natural-language requests may also let the model select the Skill, but the explicit gesture is the clearest first verification after installation.
The default answer is compact Markdown: a direct conclusion, a table with at most three candidates, then source coverage and a no-installation status. The Skill combines related English terms into one search and may retry once with a different query only when the first search has no relevant candidates. Full source tables, commands, and diagnostics are shown only when explicitly requested; chat responses do not generate HTML by default.
More examples:
/capability-discovery Find MCP management capabilities and disclose failed sources. Do not install anything.
/capability-discovery Search only for Skills that process Office files and compare the top three.
/capability-discovery Inspect STARDUSTLC666/dsh-ppt for risk. Do not install it.
The Bundle does not add a standalone Web UI page, settings card, or sidebar entry, but its Skill appears in the Web input's / menu.
Install the Bundle separately into headless, then invoke it in a one-shot task:
npx -y @deepseek-ai/dsh plugin --profile headless add \
'github:444136347/dsh-capability-discovery#v0.1.2'
npx -y @deepseek-ai/dsh --profile headless \
'/capability-discovery Find DSH capabilities for creating slides. Do not install anything.'
web.--dump-config command above and verify the Bundle layer and Loader entry./cap, and verify that capability-discovery appears.cd "${DSH_HOME:-$HOME/.dsh}/profiles/web"
pnpm exec dsh-capability search ppt --json
If the CLI works but the / menu does not contain the Skill, investigate the profile, Bundle composition, and process restart. If the CLI also fails, inspect sourceErrors and the network/proxy diagnostics.
Only for a legacy profile that already has the dependency but is missing the Bundle entry, run:
cd "${DSH_HOME:-$HOME/.dsh}/profiles/web"
pnpm exec dsh-capability setup --profile web
dsh-capability search <keywords...> [--limit 10] [--type plugin|skill|mcp|profile|agent|orchestrator|ui|runtime|workflow] [--json]
--type mcp is a strict MCP Server filter. It keeps candidates whose name or description explicitly identifies a server; MCP management consoles, clients, bridges, and other integrations remain under their actual capability type. A broad search can expose their mcpRole as server, client, manager, bridge, or unknown.
The result includes:
score: ranking score for the current query;sources: independent indexes that surfaced the repository;type: plugin / skill / MCP / profile / agent / runtime / UI / workflow when known;mcpRole: MCP server / client / manager / bridge / unknown when MCP-related evidence is present;sourceErrors: sources that failed during this search.dsh-capability inspect owner/repo [--json]
The inspector samples repository files and reports heuristic signals for:
This is not a security guarantee. Static heuristics miss novel behavior, generated code, dependency behavior, runtime-loaded content, and files outside the scan sample.
The GitHub API automatically uses GITHUB_TOKEN or GH_TOKEN when either environment variable is set. A token increases the API rate limit and allows inspection of repositories that token can access; never paste a token into a command argument or commit it to the repository.
dsh-capability sources --json
dsh-capability setup [--profile web] [--json]
This command only repairs an older profile where the package is already installed but missing from dsh.profile.bundles. Current DSH plugin commands maintain that list automatically. The repair command does not install packages or start DSH.
429, 502, 503, and 504 responses are retried twice with exponential backoff.Retry-After response header takes precedence over the default delay.400, 401, 403, and 404 are returned immediately without retrying.sourceErrors; successful sources continue to contribute results.The cache defaults to the operating system's temporary directory. Set CAPABILITY_DISCOVERY_CACHE_DIR to use a different directory. The variable intentionally does not use DSH's reserved DSH_* namespace, so it remains available to the Skill's CLI subprocess.
When DSH must use an HTTP proxy, make sure HTTP_PROXY/HTTPS_PROXY contain valid URLs. For Node.js fetch to honor those variables in supported Node.js releases, start DSH with NODE_USE_ENV_PROXY=1. Do not place proxy credentials in logs or issue reports.
v0.1 uses a deliberately simple, explainable score:
The score is a recommendation aid, not a quality certificate.
| Type | v0.1 |
|---|---|
| DSH Plugin | Supported |
| Agent Skill | Supported |
| MCP Server | Strict metadata-evidence classification with --type mcp |
| Profile / Patch | Experimental classification |
| Agent / Orchestrator / Runtime / UI | Experimental classification |
No third-party repository data is bundled into this package. Public metadata is fetched at runtime from the configured sources; static catalogs may be retained in the five-minute temporary cache described above. See docs/sources.md.
If a source changes format or becomes unavailable, the other sources continue to work and the failure is surfaced to the caller.
The current release is v0.1.2. It keeps the project focused on a small, auditable core without a database, hosted backend, account system, marketplace UI, or automatic installation workflow.
npm test
npm run check
npm pack --dry-run
The project uses Node's built-in test runner and has no runtime npm dependencies.
Apache License 2.0. See LICENSE.
This project queries or indexes public ecosystem metadata from community-maintained sources. Their data and repository contents remain governed by their respective terms. No source code from those projects is copied into this repository.
CLASSIFICATION EVIDENCE
系统优先读取 GitHub Topics,再与站内分类词典和词根规则比对。当前命中: agent-skill、mcp。