Content
93%Weight 40%Scale 1-5Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
A clean, token-efficient index skill that routes to the right DingTalk CLI product, sets up authentication with executable commands and a clear device-flow sequence, and delegates depth to the `dws` skill via a well-signaled one-level reference. The only soft spot is that core operational workflows live in the delegated skill, not sequenced in this body.
Suggestions
Add a short validation checkpoint after a representative destructive operation (e.g., recall/send) — such as checking the command's JSON response for success — so the workflow_clarity sequence demonstrates the feedback loop even though detailed rules live in the `dws` skill.
Show one concrete end-to-end example command for a common operation (e.g., `dws chat send` or `dws calendar event list`) beyond auth and `--help`, to make the routing table's entry points immediately actionable.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The body is lean: a dense product table, a few executable auth/help commands, and brief numbered steps, with no padding or explanation of concepts Claude already knows. The only prose (why to load the `dws` skill) earns its place. | 5 / 5 |
Actionability | It gives copy-paste-ready commands (`dws auth status --format json`, `dws auth login --device`, `dws --help`, `dws <product> --help`) plus a product→CLI-entry routing table, covering the common entry cases of auth, routing, and help. | 5 / 5 |
Workflow Clarity | The auth flow is a clear sequence with a checkpoint (verify `authenticated`, then device login with the "Waiting for user authorization" prompt) and a re-login branch, but the actual send/recall/approval workflows are delegated to the `dws` skill rather than sequenced here, leaving minor gaps. | 4 / 5 |
Progressive Disclosure | It is explicitly an index ("DingTalk CLI Skill Index") that loads the `dws` skill one level deep for full details, with well-organized sections (overview table, auth, help) and clearly signaled navigation. | 5 / 5 |
Total | 19 / 20 Passed |