Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
rubric-audit
// Score an SDK repo against the rubric, producing a scorecard and rubric-audit.json artifact
$ git log --oneline --stat
stars:3
forks:0
updated:2026年3月5日 09:41
SKILL.md
// Score an SDK repo against the rubric, producing a scorecard and rubric-audit.json artifact
| name | rubric-audit |
| description | Score an SDK repo against the rubric, producing a scorecard and rubric-audit.json artifact |
Evaluate the current SDK repository against the SDK Rubric and produce:
rubric-audit.json artifact in the repo rootCheck for multiple language directories to determine the profile:
go/, typescript/, ruby/, kotlin/, swift/ exist: full-sdk (90 criteria)Run the equivalent of rubric-check locally:
Record each criterion as pass/fail with notes.
Run make conformance (or language-specific targets) and record results:
retry.json -- 2B.1, 2B.2, 2B.3idempotency.json -- 2B.4, 2B.5pagination.json -- 2C.1, 2C.2status-codes.json -- 2A.3, 2A.4paths.json -- 1C.2error-mapping.json -- 2A.1, 2A.2, 2A.7auth.json -- 3A.1, 3A.3security.json -- 2C.5, 3C.1, 3C.6Review each manual criterion by inspecting the codebase:
fmt.Sprintf with URL paths, template literals with paths)Print the scorecard to stdout:
## Scorecard: <SDK Name> (<Profile>)
| Tier | Score | Max | Critical |
|------|-------|-----|----------|
| T1: API Fidelity | X/Y | Y | A/B |
| T2: Behavioral Contracts | X/Y | Y | A/B |
| T3: Developer Experience | X/Y | Y | A/B |
| T4: Infrastructure | X/Y | Y | A/B |
| **Total** | **X/Y** | **Y** | **A/B** |
Evidence: X/52 static, X/22 conformance, X/16 manual
Audit artifact: rubric-audit.json [present] [fresh]
Write the artifact to the repo root:
{
"profile": "<full-sdk|single-language>",
"date": "<YYYY-MM-DD>",
"reviewer": "agent:rubric-audit",
"criteria": {
"<ID>": { "pass": true, "note": "<optional note>" }
}
}
Include ALL manual criteria in the artifact. Static and conformance criteria are verified by their respective actions and do not need to appear in the audit artifact.