Audit or refresh OpenClaw maturity scorecard docs from root taxonomy, maturity scores, and QA evidence artifacts without using maintainer discrawl data or commi
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-claw-score-20ad78c2e5a6 ,按照其中的说明把「claw-score」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Use this skill when working on the OpenClaw maturity scorecard in this repo.
This is the openclaw-local version of the maintainer claw-score workflow:
it keeps the taxonomy and scorecard concepts, but excludes discrawl and the old
committed inventory/ report tree.
This skill owns the operational workflow for:
taxonomy.yamlqa/maturity-scores.yamldocs/concepts/qa-e2e-automation.mdqa/scenarios/index.yamlKeep person-specific, maintainer-private, Discord archive, and discrawl facts
out of this repo. If a score needs private evidence, use the redacted
qa-evidence.json artifact shape generated by OpenClaw QA workflows.
taxonomy.yaml is the hand-edited source of truth for surfaces, levels,
QA profiles, categories, feature coverage IDs, docs refs, LTS overrides, and
completeness-instruction paths.coverageIds entry. Keep that evidence ID
unique to the feature; broader many-to-many evidence mapping is not part of
the current taxonomy schema.namespace.behavior form, with lowercase
alphanumeric/dash segments. Profile, surface, and category IDs may remain
dashed or dotted.qa/maturity-scores.yaml is the committed aggregate source for Quality,
Completeness, and LTS review state.extensions/qa-lab/src/scorecard-taxonomy.ts exports
readValidatedQaMaturityScoreSources; use it to validate score output.docs/maturity/scorecard.md and
docs/maturity/taxonomy.md; both come from pnpm maturity:render. Do not
hand-edit generated Markdown to change score results.qa-evidence.json artifacts provide per-run QA scorecard evidence. Release
profile artifacts are the source of truth for Coverage. They can enrich
generated artifact docs, but they are not committed as inventory.Run from the openclaw repo root.
Validate taxonomy YAML structure and the maturity score schema after source edits:
node --import tsx --input-type=module <<'NODE'
import fs from "node:fs";
import YAML from "yaml";
import { readValidatedQaMaturityScoreSources } from "./extensions/qa-lab/src/scorecard-taxonomy.ts";
for (const file of ["taxonomy.yaml", "qa/scenarios/index.yaml"]) {
YAML.parse(fs.readFileSync(file, "utf8"));
}
readValidatedQaMaturityScoreSources();
NODE
Check docs when touching docs prose:
pnpm check:docs
Run focused QA/profile checks when changing coverage IDs or profile membership:
pnpm openclaw qa coverage --json
For a direct full scorecard run that publishes the generated-doc pull request,
use floating main resolution by default:
gh workflow run maturity-scorecard.yml \
--repo openclaw/openclaw \
--ref main \
-f ref=main \
-f expected_sha='' \
-f publish_pull_request=true \
-f allow_failures=true
Do not resolve main locally and pass that commit as both ref and
expected_sha for an ordinary manual generation run. OpenClaw's main moves
quickly, so the caller-selected commit can become stale before validation. The
workflow then correctly rejects publication when the pull request base contains
newer maturity inputs, and QA never starts.
With ref=main and a blank expected_sha, the workflow's
floating_default_branch path fetches and freezes the current remote default
branch inside validation before handing an immutable revision to downstream
jobs. Use an explicit SHA only when the requested evidence must remain bound to
that exact revision, such as a release-candidate workflow call or an
artifact-only historical reproduction. If that exact-revision run also requests
publication and main has changed relevant inputs, expect validation to fail and
dispatch again from floating main instead.
When asked to score or refresh a surface:
taxonomy.yaml..agents/skills/claw-score/references/completeness/.qa-evidence.json artifacts for executed
proof.qa/maturity-scores.yaml only for Quality, Completeness, and LTS
review state backed by public or redacted artifact evidence.pnpm check:docs if docs prose changed, and focused QA coverage checks
if coverage IDs or profile membership changed.For subjective score changes, make the smallest defensible edit and leave the
evidence path in the PR or task summary. Keep manual prose in current docs and
keep score data in qa/maturity-scores.yaml.
Completeness is scored against the intended operator-visible workflow for each
category, not against test breadth or implementation quality. The completeness
reference files under references/completeness/ define the category scope and
any surface-specific variation from this default process.
By default, Completeness measures how fully OpenClaw exposes the intended surface capability set to the user, operator, author, or maintainer persona for that surface. Score whether each category delivers the full expected workflow, including setup, normal use, status or inspection, recovery, and important platform, provider, channel, security, or lifecycle variants where they apply.
Treat Surface-Specific Scoring Questions and Surface-Specific Guidance as
higher-priority instructions for that surface. The surface instructions may
flesh out, narrow, or intentionally conflict with the default ideas here; when
they do, follow the surface instructions and make the score rationale reflect
that surface-specific instruction. If a reference file does not include
surface-specific questions or guidance, apply this default process to the
surface's Category Scope.
For each category, ask:
Default guidance:
Default Completeness bands:
Clawesome (95-100): complete across expected workflows, variants, and
recovery branches, with only minor polish gaps.Stable (80-95): the expected workflow set is broadly present, with only
bounded missing branches.Beta (70-80): the main workflow exists, but meaningful branches or recovery
paths are still absent.Alpha (50-70): only a partial capability set is present; users can complete
some core tasks but not the full expected workflow.Experimental (0-50): the category exposes only fragments of the intended
capability.Record an optional decision beside score and label for surface and category
Quality/Completeness, or beside supported for category LTS. In taxonomy.yaml,
use optional level_decision beside the canonical surface level.
Each record contains value, rationale, reviewer, evidence_refs, and
revalidate_when. Use an integer from 0–100 for Quality/Completeness, a boolean
for LTS, and a declared taxonomy level ID for level_decision. Supply nonempty
text fields and at least one evidence reference. Name the actual reviewer and
the condition that should trigger another review.
Leave unavailable history absent: it is unknown, not an invitation to invent reviewers, rationale, or evidence. A record does not overwrite the current score, support flag, or canonical level. If its value differs, retain both; generated docs show a non-gating mismatch, including under strict input validation.
Do not attach decisions to Coverage, computed rollups, surface LTS summaries, or the copied level in score aggregates. Decision context does not change coverage identity, score calculations, support commitments, or release gates.
qa-evidence.json.scorecard feature fulfillment data.human_lts_override; do not hand-edit generated Markdown to change LTS
status.Bands:
Clawesome: 95-100Stable: 80-95Beta: 70-80Alpha: 50-70Experimental: 0-50Do not add the maintainer repo's docs/kevinslin/maturity-scorecard/inventory/
tree to openclaw. Evidence-enriched scorecard outputs belong in short-lived
artifacts, not committed generated docs, unless this repo adds an explicit
renderer/check workflow first.