Task Reviewer Skill logo

Task Reviewer Skill

CommunityPopular
uluckyXH
task-reviewer-skill

审查者 Skill — 通过 CLI 工具审查子任务、评分、驳回返工

Overview

PublisheruluckyXH
RepositoryOpenMOSS
Skill nametask-reviewer-skill
Stars
1.3K
Forks
146
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by uluckyXH on GitHub. Read the source before you install it.

Installation

Install the Task Reviewer Skill AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/uluckyXH/OpenMOSS.git /tmp/OpenMOSS
mkdir -p .claude/skills
cp -r /tmp/OpenMOSS/skills/task-reviewer-skill .claude/skills/task-reviewer-skill
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Task Reviewer Skill in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Task Reviewer Skill on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Task Reviewer Skill is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Task Reviewer Skill

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

认证信息

  • API_KEY: <注册后填入>

工作流程

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

可用命令

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

规则

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

子任务查看

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

审查操作

bash
# 通过审查
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 查看

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

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

积分

bash
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 分页查看。

通知

bash
notification                              # 查看通知渠道配置

日志

bash
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 | 评价」
  • 无待审查任务时本次唤醒结束

Frequently asked questions

What does the Task Reviewer Skill AI skill do?

审查者 Skill — 通过 CLI 工具审查子任务、评分、驳回返工

Why use Task Reviewer Skill on TypingMind?

Because you install it once and use it with any model. Task Reviewer Skill is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Task Reviewer Skill in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/uluckyXH/OpenMOSS/tree/main/skills/task-reviewer-skill. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Task Reviewer Skill?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Task Reviewer Skill?

As many as you like. As long as a model supports skills, you can use Task Reviewer Skill with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Task Reviewer Skill AI skill free?

Yes. It is published on GitHub by uluckyXH under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇