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

process-automated-builder流程自动化构建器

Agent Skill

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

总安装

306

周安装

13

GitHub Stars

4

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tiangong-lca/skills --skill process-automated-builder

简介

process-automated-builder 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据任务线索快速定位内容。
  • 可用于支持自动化流程构建与优化。
  • 建议确认权限范围和维护状态,避免误触敏感操作。
  • 可结合原始 README 了解其检索机制和使用限制。

SKILL.md

Process Automated Builder

Scope

  • Prepare one local process_from_flow run from a request or reference-flow input.
  • Reopen an existing run to write deterministic resume metadata.
  • Prepare one local publish bundle from an existing run.
  • Prepare a deterministic batch of local process-build runs.

This skill uses the CLI only. Legacy alternate runtimes are not part of the supported path.

Canonical Runtime

  1. Read references/workflow-map.md and references/operations-playbook.md.
  2. Choose an explicit output directory, for example /abs/path/artifacts/<case_slug>/....
  3. Use node scripts/run-process-automated-builder.mjs auto-build... --out-dir <dir> to create one local run root.
  4. Continue with resume-build, publish-build, or batch-build as needed, passing --run-dir or --out-dir explicitly.
  5. If a missing capability is discovered, add a native tiangong process... command in tiangong-lca-cli first. Do not add new business runtime inside this skill.

Parallel Execution Contract

  • Run-level parallel: multiple flow inputs can run concurrently, but each run must use a distinct run_id.
  • In-run parallel: do not run multiple writers against the same run_id.
  • Single-writer rule:

- never let multiple agents write the same <run_dir>/cache/process_from_flow_state.json - within one run_id, only one active writer process is allowed at a time - enforcement is code-level through the CLI state lock

Canonical Node Wrapper Commands

node scripts/run-process-automated-builder.mjs auto-build --help
node scripts/run-process-automated-builder.mjs resume-build --help
node scripts/run-process-automated-builder.mjs publish-build --help
node scripts/run-process-automated-builder.mjs batch-build --help

node scripts/run-process-automated-builder.mjs auto-build \
  --flow-file /abs/path/reference-flow.json \
  --operation produce \
  --out-dir /abs/path/artifacts/<case_slug>/process_from_flow/<run_id> \
  --json

node scripts/run-process-automated-builder.mjs resume-build --run-dir /abs/path/artifacts/<case_slug>/process_from_flow/<run_id> --run-id <run_id> --json
node scripts/run-process-automated-builder.mjs publish-build --run-dir /abs/path/artifacts/<case_slug>/process_from_flow/<run_id> --run-id <run_id> --json
node scripts/run-process-automated-builder.mjs batch-build --input /abs/path/batch-request.json --out-dir /abs/path/artifacts/<case_slug>/process_batch/<batch_id> --json

Runtime Requirements

  • The wrapper runs the published CLI by default through npm exec --yes --package=@tiangong-lca/cli@latest -- tiangong.
  • Set TIANGONG_LCA_CLI_DIR or pass --cli-dir only when you need a local CLI working tree for dev/CI.
  • The wrapper requires explicit output paths instead of relying on cwd/artifacts/... defaults.
  • For repeatable runs, use an explicit output root such as /abs/path/artifacts/<case_slug>/....
  • The current canonical commands prepare local run outputs and do not depend on legacy private runtimes.
  • If a future native CLI command needs additional env, document it in tiangong-lca-cli first and keep this skill as a thin caller only.

Process Name Contract

  • Any generated process payload must preserve the four-part process name object: name.baseName, name.treatmentStandardsRoutes, name.mixAndLocationTypes, name.functionalUnitFlowProperties.
  • baseName, treatmentStandardsRoutes, and mixAndLocationTypes are schema-required in current TianGong process payloads. Keep the keys even when one field is semantically empty; do not collapse the whole reference-flow short description back into baseName.
  • When name splitting is ambiguous, align with ../lifecycleinventory-review/profiles/process/references/process-review-rules.md instead of inventing a one-off local convention.

Fast Troubleshooting

  • Local CLI override issues: set TIANGONG_LCA_CLI_DIR or pass --cli-dir only when you intentionally need an unpublished working tree.
  • Missing --out-dir or --run-dir: the wrapper requires an explicit output path such as /abs/path/artifacts/<case_slug>/....
  • Missing --input / --flow-file: new runs need one explicit request or reference-flow input.
  • Run-level conflicts: do not reuse the same run_id across concurrent writers.
  • Publish preparation issues: inspect stage_outputs/10_publish/ and cache/agent_handoff_summary.json before touching downstream publish flow.
  • If a required step is missing, add it as a native tiangong process... command instead of reintroducing a legacy runtime here.

Load References On Demand

  • references/workflow-map.md: current CLI-only execution map and output layout.
  • references/operations-playbook.md: concise command examples and troubleshooting.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.77%
按下载量换算37

Claude

31.45%
按下载量换算34

Cursor

16.59%
按下载量换算18

Gemini CLI

10.12%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills