用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/harbor-framework/terminal-bench-science --skill update-rubric命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | update-rubric |
| description | Propose new rubric criteria based on review findings — creates a branch and PR |
| allowed-tools | Bash, Read, Write, Edit, Agent |
| argument-hint | <criteria-description> |
Propose new criteria for the task implementation rubric. This is typically invoked after /review-task identifies general patterns that should be caught for all future tasks.
Run this from within your local clone of the benchmark repo.
Detect the repo root and read the current rubric to understand the format:
REPO_ROOT=$(git rev-parse --show-toplevel)
cat "$REPO_ROOT/rubrics/task-implementation.toml"
Each criterion follows this TOML format:
[[criteria]]
name = "criterion_name"
description = "One-line description"
guidance = """
Multi-line guidance explaining what to check.
PASS if ... FAIL if ..."""
Parse $ARGUMENTS for the criteria to add. If invoked from /review-task, the rubric improvement candidates will be described in the review summary. If invoked standalone, the user provides a description of what to add.
For each candidate, draft a new [[criteria]] entry matching the existing format:
name: snake_case, concisedescription: one-line summaryguidance: detailed explanation with PASS/FAIL conditionsPresent the drafted criteria to the user for review before proceeding.
Detect the GitHub remote and create a branch:
REPO_ROOT=$(git rev-parse --show-toplevel)
GITHUB_REPO=$(git remote get-url origin | sed 's|.*github.com[:/]\(.*\)\.git$|\1|; s|.*github.com[:/]\(.*\)$|\1|')
BRANCH="rubric/add-criteria-$(date +%Y%m%d)"
cd "$REPO_ROOT"
git checkout -b "$BRANCH"
Append the new [[criteria]] entries to rubrics/task-implementation.toml.
cd "$REPO_ROOT"
git add rubrics/task-implementation.toml
git commit -m "Add rubric criteria: <brief description>"
git push -u origin "$BRANCH"
gh pr create --repo "$GITHUB_REPO" \
--title "Add rubric criteria: <brief description>" \
--body "$(cat <<'EOF'
## Summary
- Adds new criteria to `rubrics/task-implementation.toml` based on patterns observed during task review
## New Criteria
<list each new criterion name and one-line description>
## Motivation
<which review or PR prompted this, what pattern was observed>
## Test plan
- [ ] Run `harbor check` against existing tasks to verify new criteria don't cause false positives
- [ ] Verify TOML syntax is valid
Generated with [Claude Code](https://claude.ai/claude-code)
EOF
)"
Open the PR URL in the browser and report it to the user.
After the PR is merged, remind the user to propagate to downstream repos:
git fetch template
git merge template/main
git push origin main
And switch back to the main branch:
git checkout main
git branch -d "$BRANCH"