AgentSkillsCN

logics-global-reviewer

对仓库的Logics工作流与文档进行全面审视,随后以Markdown报告的形式提出切实可行的优化与改进方案(如文件卫生、占位符设置、过时指标清理、缺失链接修复、进度分布调整)。当Codex需要审计logics/request、logics/backlog、logics/tasks以及logics/specs,并为后续行动提供建议时,这一流程尤为关键。

SKILL.md
--- frontmatter
name: logics-global-reviewer
description: Run a global review of the repository's Logics workflow and documents, then propose concrete optimizations/improvements (hygiene, placeholders, stale indicators, missing links, progress distribution) as a Markdown report. Use when Codex needs to audit `logics/request`, `logics/backlog`, `logics/tasks`, and `logics/specs` and suggest next actions.

Global Logics review

Run

Print the report to stdout:

bash
python3 logics/skills/logics-global-reviewer/scripts/logics_global_review.py

Write the report to a file:

bash
python3 logics/skills/logics-global-reviewer/scripts/logics_global_review.py --out logics/REVIEW.md

How to use the output

  • Turn high-impact recommendations into backlog items (logics/backlog/) and executable tasks (logics/tasks/).
  • Prefer small, surgical fixes (remove template placeholders, add missing links, clarify acceptance criteria, add validation commands).
  • If the review highlights structural gaps (missing index/relationships), generate them via existing scripts:
    • python3 logics/skills/logics-indexer/scripts/generate_index.py --out logics/INDEX.md
    • python3 logics/skills/logics-relationship-linker/scripts/link_relations.py --out logics/RELATIONSHIPS.md
    • python3 logics/skills/logics-duplicate-detector/scripts/find_duplicates.py --min-score 0.55