task-reviewer-skill

task-reviewer-skill is a skill for Claude Code, Codex from uluckyXH/OpenMOSS. It costs 28 tokens per session (917 once invoked), scanned A, original, MIT.

A command-line review process for checking subtasks, assigning scores, approving work, or sending it back for rework. A command-line tool is a program controlled by typed commands in a terminal.

In plain words
What is it for?
It helps list and inspect pending subtasks, create approval or rejection reviews, manage scores, view agents, and record logs.
Why use it?
It gives reviewers a defined way to inspect deliverables, apply rules, record decisions, and track review history.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps list and inspect pending subtasks, create approval or rejection reviews, manage scores, view agents, and record logs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/uluckyxh/openmoss/task-reviewer-skill
About the project

OpenMOSS is an operating system for teams of AI agents: it organizes agents into roles that plan, execute, review, and monitor work autonomously. It is for running recurring, multi-step tasks with little or no human coordination. The catalogue skills and agents extend the team’s abilities and workflows.

uluckyXH/OpenMOSS · 1,321 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add uluckyXH/OpenMOSS --skill task-reviewer-skill
Clone the repo
git clone --depth 1 https://github.com/uluckyXH/OpenMOSS

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for task-reviewer-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/uluckyxh/openmoss/task-reviewer-skill/github.svg)](https://agentmods.dev/skills/uluckyxh/openmoss/task-reviewer-skill)
Your own site
<a href="https://agentmods.dev/skills/uluckyxh/openmoss/task-reviewer-skill"><img src="https://agentmods.dev/badge/skills/uluckyxh/openmoss/task-reviewer-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for task-reviewer-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/uluckyxh/openmoss/task-reviewer-skill"><img src="https://agentmods.dev/badge/skills/uluckyxh/openmoss/task-reviewer-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 917 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00028 $0.00917
Opus 5 $0.00014 $0.00458
Sonnet 5 $0.00006 $0.00183
Haiku 4.5 $0.00003 $0.00092

Measured 9d ago against content hash c7b97233e6b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

task-reviewer-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/task-reviewer-skill/SKILL.md · 98 lines

How it starts

The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Task Reviewer Skill

你可以使用 task-cli.py 工具来审查子任务。该工具位于本 Skill 目录下。

认证信息

  • API_KEY: <注册后填入>

工作流程

  1. 获取规则 → 2. 检查积分 → 3. 查看待审查子任务 → 4. 逐个审查 → 5. 提交审查记录 → 6. 发送评分详情到群聊 → 7. 记录日志

可用命令

所有命令前缀:python task-cli.py --key <API_KEY>

规则

rules                                     # 获取合并后的规则提示词(执行前必须调用)

子任务查看

st list --status review                   # 查看待审查的子任务
st get <sub_task_id>                      # 查看子任务详情(交付物、验收标准)

审查操作

# 通过审查
review create <sub_task_id> approved <评分1-5> --comment "评价内容"

# 驳回返工
review create <sub_task_id> rejected <评分1-5> --comment "评价" --issues "问题描述"

# 查看审查历史
review list --sub-task-id <id>
review get <review_id>                    # 查看单条审查详情

📄 列表命令默认返回全部数据。如数据较多,可加 --page N --page-size M 分页查看。返回结果包含 total(总数)和 has_more(是否还有更多)。

Agent 查看

agents                                    # 查看已注册 Agent(ID、角色、状态、积分)
agents --role executor                    # 按角色过滤,查看所有执行者

💡 审查时可通过 agents 获取 Agent ID,用于 score adjust 加分/扣分。

积分

score me                                  # 查看自己的积分
score logs --page 1 --page-size 10        # 查看积分明细(建议分页,避免数据过多)
score agent-logs <agent_id> --page 1 --page-size 10  # 查看指定 Agent 的积分明细(审查前了解历史表现)
score leaderboard                         # 积分排行榜
score adjust <agent_id> <分数> "原因"      # 手动加分/扣分(正数加分,负数扣分)
score adjust <agent_id> -5 "未按时交付" --sub-task-id <id>  # 关联子任务扣分

📄 score logs 默认返回全部明细。如数据较多,可加 --page N --page-size M 分页查看。

通知

notification                              # 查看通知渠道配置

日志

log create "review" "审查了xxx子任务,评分4/5" --sub-task-id <id>
log mine                                  # 回顾工作记录(默认最近7天,最多20条)
log mine --action reflection              # 只看自省笔记
log list --sub-task-id <id>               # 查看某子任务的所有日志
log list --sub-task-id <id> --action delivery  # 查看执行者交付摘要
log list --days 30 --limit 50             # 最近30天,最多50条

注意事项

  • 每次执行前先运行 rules 获取最新规则
  • 每次唤醒时检查 score logs,分析自己的审查表现
  • 审查时严格对照验收标准,评分客观一致
  • 驳回时 --issues 必填,清楚描述问题以便执行者修复
  • 每次审查后将评分详情发送到通知渠道:「审查结果:子任务名 | 执行者 | 评分 ⭐x/5 | 评价」
  • 无待审查任务时本次唤醒结束

Read the full file on GitHub · 98 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 98 lines · 28 tokens per session scan A c7b97233e6b0

Subscribe to this mod's changes

task-reviewer-skill is a skill published in the GitHub repository uluckyXH/OpenMOSS (1,321 stars, last pushed 2mo ago), licensed MIT. It adds 28 tokens to every session and 917 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.