Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

lifecycleinventory-review生命周期库存审查

Agent Skill

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

总安装

240

周安装

10

GitHub Stars

4

下载量

80
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tiangong-lca/skills --skill lifecycleinventory-review

简介

lifecycleinventory-review 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前建议核验是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

lifecycleinventory-review

当前保留 processlifecyclemodel 两个 CLI-backed review profile;规则文档按 profile 收敛在各自的 profiles/*/references/ 下。

Profiles

  • process(默认):通过统一 CLI 执行 process_from_flow 产物复审。
  • lifecyclemodel:通过统一 CLI 执行 lifecyclemodel build run 复审。

统一入口

  • node scripts/run-review.mjs:本地 process_from_flow / lifecyclemodel review 入口,通过 --profile 选择子能力。
  • node scripts/run-remote-process-review.mjs:远端 process snapshot freeze + review 的推荐 wrapper。

运行模型:

  • canonical path 为 skill -> Node.mjs wrapper -> tiangong review process | review lifecyclemodel
  • 两个 profile 都不再走 skill 私有 Python / OpenAI 入口
  • 没有 shell 兼容壳

默认 profile

若未显式传入 --profile,默认使用 process

process profile

使用 tiangong review process 执行 process 维度复审:

  • 统一规则与输出合同见 profiles/process/references/process-review-rules.md
  • 当前默认 process rubric 已移除 ILCD taxonomy 分类映射语义检查,但会检查 schema-required 结构完整性;重点放在 schema-required 字段存在性、命名、dataset type / flow 引用结构完整性、定量参考、单位与平衡、代表性、前景系统语境和工具生成语言清理。
  • 命名检查默认按 name.baseNamename.treatmentStandardsRoutesname.mixAndLocationTypesname.functionalUnitFlowProperties 四字段拆分执行;其中 baseName / treatmentStandardsRoutes / mixAndLocationTypes 作为 schema-required 字段必须保留,禁止把整串 reference flow short description 直接塞进 baseName,也不要把 required 键省略掉。
  • 当任务是复审当前认证可访问的远端 process(例如 state_code=0/100)时:

- 先选择一个输出目录并冻结远端 snapshot。 - canonical 路径是优先使用 node scripts/run-remote-process-review.mjs --out-dir... --list... [--review...]。 - 该 wrapper 会冻结 tiangong process list --json 的原始报告到 inputs/process-list-report.json,并额外落盘 inputs/processes.snapshot.rows.jsonl 后再调用 node scripts/run-review.mjs --profile process --rows-file...。 - 当 tiangong process list 的现有过滤维度不足以表达任务(例如缺少某类反向引用或更复杂筛选)时,可使用补充 bridge,并在 review 备注中记录该限制。

  • 输入:(--rows-file | --run-root) --out-dir [--run-id] [--start-ts] [--end-ts] [--logic-version] [--enable-llm] [--llm-model] [--llm-max-processes]
  • 输出:

- review-input-summary.json - review-input/materialization-summary.json(仅 --rows-file 模式) - one_flow_rerun_timing.md - one_flow_rerun_review_v2_1_zh.md - one_flow_rerun_review_v2_1_en.md - flow_unit_issue_log.md - review_summary_v2_1.json - process-review-report.json

lifecyclemodel profile

使用 tiangong review lifecyclemodel 执行 lifecyclemodel 维度复审:

  • 输入:--run-dir --out-dir [--start-ts] [--end-ts] [--logic-version]
  • 输出:

- model_summaries.jsonl - findings.jsonl - lifecyclemodel_review_summary.json - lifecyclemodel_review_zh.md - lifecyclemodel_review_en.md - lifecyclemodel_review_timing.md - lifecyclemodel_review_report.json

运行示例

tiangong process list \
  --state-code 100 \
  --limit 20 \
  --json > /abs/path/process-list-report.json

node scripts/run-review.mjs \
  --profile process \
  --rows-file /abs/path/process-list-report.json \
  --out-dir /abs/path/review

node scripts/run-remote-process-review.mjs \
  --out-dir /abs/path/review-runs/process-review \
  --list --state-code 0 --state-code 100 --all

node scripts/run-remote-process-review.mjs \
  --out-dir /abs/path/review-runs/process-review \
  --list --user-id <owner> --state-code 0 --all \
  --review --logic-version 2026-04-14

node scripts/run-review.mjs \
  --profile process \
  --run-root /path/to/process_from_flow/<run_id> \
  --run-id <run_id> \
  --out-dir /abs/path/review \
  --start-ts 2026-02-22T16:01:51+00:00 \
  --end-ts 2026-02-22T16:21:40+00:00

node scripts/run-review.mjs \
  --profile lifecyclemodel \
  --run-dir /path/to/lifecyclemodel_auto_build/<run_id> \
  --out-dir /abs/path/lifecyclemodel-review

后续扩展

  • flow review 已完全移出本 skill,由 flow-governance-review 单独承担。
  • profiles/process/references/process-review-rules.md:沉淀 process 维度的默认 review rubric、输出合同和远端 snapshot 特殊约束。
  • profiles/lifecyclemodel:沉淀 lifecycle model 维度复审规则与 CLI 输出约定。

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.66%
按下载量换算29

Claude

29.69%
按下载量换算24

Cursor

20.36%
按下载量换算16

Gemini CLI

10.32%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/tiangong-lca/skills --skill lifecycleinventory-review 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills