Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计提醒

skill-system-review技能系统回顾

Agent Skill

skill-system-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

563

周安装

23

GitHub Stars

4

下载量

180
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-system-review(技能系统回顾)
来源仓库:https://github.com/arthur0824hao/skills
仓库路径:skills/skill-system-review
安装命令:
npx skills add https://github.com/arthur0824hao/skills --skill skill-system-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/arthur0824hao/skills --skill skill-system-review

简介

skill-system-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • — 取得了什么成就。讨论点[]。——用户的权衡、担忧、问题。下一个动作[]。——后续工作项目。质量评估。——结构化的质量评价。
  • 写评论收件箱。将 Prometheus 输出转换为 TKT 可摄取的票据。刷新评论收件箱()。

SKILL.md

skill-system-review

Bridge between OMO Prometheus and the TKT ticket lifecycle.

Two directions:

  1. Review — After bundle closes, assemble structured review context for Prometheus to evaluate
  2. Plan→TKT — Convert Prometheus plans into TKT roadmap bundles and worker tickets

Operations

generate-review-prompt

Generate a structured review context from a completed/active ticket for Prometheus review.

python3 "<this-skill-dir>/scripts/review_prompt.py" generate-review-prompt --ticket-id <TKT-XXX>

Input: --ticket-id (required) — the ticket to build review context for Output: JSON with review_context, prometheus_prompt, expected_output_format

Reads:

  • Bundle review.yaml (stub generated by tkt.sh close)
  • All completed ticket results in the bundle
  • Audit ticket (TKT-A00) findings
  • Current roadmap.yaml state

generate-startup-review-prompt

Generate a review overview prompt for Prometheus at session startup (no active ticket context).

python3 "<this-skill-dir>/scripts/review_prompt.py" generate-startup-review-prompt

Output: JSON with roadmap_summary, bundles, prometheus_prompt

generate-startup-review

Generate a compact startup context summary for the next session.

python3 "<this-skill-dir>/scripts/review_prompt.py" generate-startup-review

Output: JSON with context_summary, roadmap_summary, bundles

  • includes carryover_bundles[] when reviewed bundles still have carryover work

suggest-roadmap-update

Suggest roadmap changes from findings/issues without mutating roadmap.yaml.

python3 "<this-skill-dir>/scripts/review_prompt.py" suggest-roadmap-update --input findings.json

Output: JSON suggestions[] with {phase, section, change_type, description, rationale}

plan-to-bundle

Convert a Prometheus plan file (.sisyphus/drafts/*.md) into TKT bundle creation commands.

python3 "<this-skill-dir>/scripts/review_prompt.py" plan-to-bundle --plan-file <path>

Input: --plan-file (required) — path to Prometheus plan markdown Output: JSON with route, goal, tickets[], tkt_commands[] (ready-to-execute shell commands)

Parsing rules:

  • ## or ### headings with TODO/task keywords → ticket titles
  • - [] checkboxes → individual worker tickets
  • Dependency markers (depends on, after, blocks) → depends_on fields
  • Effort estimates → ticket description metadata
  • Categories (visual-engineering, deep, quick, etc.) → ticket category
  • ### WAVE N headings → ticket wave metadata for following tasks
  • Structured ticket metadata lines (category, effort, acceptance, source metadata, skills, QA scenarios) → preserved into ticket objects and generated TKT commands
  • Tiny plans can route to express without filename mentions when they stay within the no-dependency, no-effort fast path

write-review-inbox

Write Prometheus review feedback into the Review Agent Inbox format for refresh_review_inbox() ingestion.

python3 "<this-skill-dir>/scripts/review_prompt.py" write-review-inbox --input <json-file>

Input: JSON file with discussion_points[], next_actions[], batch_id Output: Appends ## Review Agent Inbox + # TICKET_BATCH section to note/note_tasks.md

generate-dispatch

Generate a worker dispatch view from bundle ticket state.

python3 "<this-skill-dir>/scripts/review_prompt.py" generate-dispatch --bundle B-001 [--tickets TKT-001,TKT-002]
python3 "<this-skill-dir>/scripts/review_prompt.py" generate-dispatch --auto

Input: --bundle (required), optional --tickets comma list Output: human-readable wave summary plus last-line JSON containing grouped dispatch waves

Rules:

  • without --tickets, emit currently open worker tickets only
  • preserve bundle dependency order into dispatch_wave
  • include one-line summary and effort estimate for each ticket
  • --auto creates the suggested next bundle from suggest-next-bundle and immediately emits dispatch for it

suggest-next-bundle

Suggest the next bundle goal and seed tickets from roadmap/open work/carryover.

python3 "<this-skill-dir>/scripts/review_prompt.py" suggest-next-bundle

Output: JSON with goal, suggested_tickets[], open_issues[]

Integration with OMO Prometheus

Prometheus as Review Agent

When a TKT bundle closes:

  1. tkt.sh close generates review.yaml stub
  2. PM Agent calls generate-review-prompt to assemble review context
  3. Prometheus receives the structured context and produces:

- summary — what was accomplished - discussion_points[] — trade-offs, concerns, questions for user - next_actions[] — follow-up work items - quality_assessment — structured quality evaluation

  1. write-review-inbox converts Prometheus output into TKT-ingestible tickets
  2. refresh_review_inbox() picks up new tickets automatically

Prometheus as Roadmap Planner

When a user makes a new request through Prometheus:

  1. Prometheus conducts structured interview (OMO default behavior)
  2. Prometheus writes plan to .sisyphus/drafts/
  3. plan-to-bundle reads the plan and generates TKT commands
  4. PM Agent executes the commands to create roadmap goal + bundle + worker tickets
  5. OMO dispatches agents to claim and execute tickets

Prompt Reference

  • prompts/prometheus-tkt-integration.md — Instructions for Prometheus on how to use TKT roadmap/bundle system
  • prompts/question-protocol.md — Structured questioning guide for all scenarios (requirements, branch decisions, review discussion, roadmap planning). Implements the question_tool_first policy from config/tkt.yaml.

Compatibility

  • tickets.py alignment: review_prompt.py path matches the hardcoded reference at tickets.py:2468-2470
  • Review Inbox format: Output matches parse_review_agent_inbox() expected format (## Review Agent Inbox + # TICKET_BATCH)
  • Scope rules: Referenced in 14+ ticket scope allowed_prefixes entries in tickets.py
{
  "schema_version": "2.0",
  "id": "skill-system-review",
  "version": "1.0.0",
  "capabilities": [
    "review-generate",
    "review-startup",
    "review-startup-summary",
    "review-roadmap-suggestion",
    "review-plan-to-bundle",
    "review-generate-dispatch",
    "review-suggest-next-bundle",
    "review-write-inbox"
  ],
  "effects": ["fs.read", "fs.write"],
  "operations": {
    "generate-review-prompt": {
      "description": "Assemble structured review context from completed ticket/bundle for Prometheus",
      "input": { "ticket_id": { "type": "string", "required": true } },
      "output": { "description": "Review context JSON", "fields": { "review_context": "object", "prometheus_prompt": "string" } },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/review_prompt.py", "generate-review-prompt", "--ticket-id", "{ticket_id}"]
      }
    },
    "generate-startup-review-prompt": {
      "description": "Generate Prometheus review overview at session startup",
      "input": {},
      "output": { "description": "Startup review context JSON", "fields": { "roadmap_summary": "object", "bundles": "array", "prometheus_prompt": "string" } },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/review_prompt.py", "generate-startup-review-prompt"]
      }
    },
    "generate-startup-review": {
      "description": "Generate compact startup context summary from roadmap and recent bundle reviews",
      "input": {},
      "output": { "description": "Startup summary JSON", "fields": { "context_summary": "string", "roadmap_summary": "object", "bundles": "array" } },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/review_prompt.py", "generate-startup-review"]
      }
    },
    "suggest-roadmap-update": {
      "description": "Suggest roadmap updates from findings/issues without mutating roadmap.yaml",
      "input": {
        "input": { "type": "string", "required": false }
      },
      "output": {
        "description": "Roadmap suggestion payload",
        "fields": { "suggestions": "array" }
      },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/review_prompt.py", "suggest-roadmap-update"]
      }
    },
    "plan-to-bundle": {
      "description": "Convert Prometheus plan markdown into TKT bundle or express creation commands with metadata preservation",
      "input": { "plan_file": { "type": "string", "required": true } },
      "output": { "description": "Bundle or express creation commands", "fields": { "route": "string", "goal": "string", "tickets": "array", "tkt_commands": "array" } },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/review_prompt.py", "plan-to-bundle", "--plan-file", "{plan_file}"]
      }
    },
    "generate-dispatch": {
      "description": "Generate a human-readable + JSON dispatch prompt from bundle ticket state",
      "input": {
        "bundle": { "type": "string", "required": false },
        "tickets": { "type": "string", "required": false },
        "auto": { "type": "boolean", "required": false }
      },
      "output": {
        "description": "Dispatch payload grouped by waves",
        "fields": { "bundle": "string", "tickets": "array", "waves": "array" }
      },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/review_prompt.py", "generate-dispatch", "--bundle", "{bundle}"]
      }
    },
    "suggest-next-bundle": {
      "description": "Suggest the next bundle goal and seed tickets from roadmap/open work/carryover",
      "input": {},
      "output": {
        "description": "Suggested next bundle payload",
        "fields": { "goal": "string", "suggested_tickets": "array", "open_issues": "array" }
      },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/review_prompt.py", "suggest-next-bundle"]
      }
    },
    "write-review-inbox": {
      "description": "Write Prometheus review feedback into Review Agent Inbox for ticket ingestion",
      "input": { "input_file": { "type": "string", "required": true } },
      "output": { "description": "Inbox write confirmation", "fields": { "inbox_path": "string", "tickets_written": "integer" } },
      "entrypoints": {
        "unix": ["python3", "{skill_dir}/scripts/review_prompt.py", "write-review-inbox", "--input", "{input_file}"]
      }
    }
  }
}

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.63%
按下载量换算62

Claude

29.01%
按下载量换算52

Cursor

20.7%
按下载量换算37

Gemini CLI

9.28%
按下载量换算17

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills