Skills caixu-check-lifecycle
Check Document Renewal Requirements. Use when the user wants a lifecycle diagnosis for an existing asset library at the lifecycle stage, including “看未来 60 天续办”“查缺件”“判断能不能提交某个目标场景”. Prefer caixu-skill when the user asks for the full end-to-end mainline or is unsure which stage to run. This skill loads assets and a versioned RuleProfileBundle, asks an agent to produce a complete CheckLifecycleData decision, validates readiness and asset references with shared rules helpers, records an audit sidecar, and persists the lifecycle run only when the decision is structurally valid.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/angjustinl/asset-library-skill/caixu-check-lifecycle" ~/.claude/skills/openclaw-skills-caixu-check-lifecycle && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/angjustinl/asset-library-skill/caixu-check-lifecycle" ~/.openclaw/skills/openclaw-skills-caixu-check-lifecycle && rm -rf "$T"
manifest:
skills/angjustinl/asset-library-skill/caixu-check-lifecycle/SKILL.mdsource content
Check Document Renewal Requirements
在用户要“看未来 60 天续办”“查缺件”“判断能不能提交某个目标场景”时使用这个 skill。
Quick flow
- 读取资产库和
RuleProfileBundle - 让 agent 产出完整
CheckLifecycleData - 校验、审计、持久化
Read next only when needed
- 要确认 goals、默认值和 agent 主判顺序时,读 references/workflow.md
- 要确认
、CheckLifecycleData
、audit 字段时,读 references/tool-contracts.mdreadiness - 要对齐
输出形状时,读 references/output-patterns.mdCheckLifecycleData - 遇到 schema 冲突、未知 goal、readiness 不一致时,读 references/failure-modes.md
Required tools
caixu-data-mcp.query_assetscaixu-data-mcp.get_rule_profilecaixu-data-mcp.write_lifecycle_run
Required input
library_idgoalas_of_datewindow_daysrun_id
Workflow
- 用
读取goal
,拿到 versionedget_rule_profile
。RuleProfileBundle - 调用
读取当前库资产。query_assets - 把相对日期先解成绝对
。YYYY-MM-DD - 让 agent 直接产出完整
。CheckLifecycleData - 在持久化前运行
预检,并结合共享规则校验器确认:scripts/validate-lifecycle-payload.mjs- schema 完整
都存在asset_id
与 blocking/warning items 自洽readiness
- 只有通过校验的结果才调用
,并附带 audit sidecar。write_lifecycle_run - 成功后推荐下一步
。build-package
Guardrails
- 不回退到旧 deterministic rule engine 作为主判来源。
- 未知
必须结构化失败。goal - 不得把 free text 建议当成
。readiness - 校验失败时不得把结果写成正式 lifecycle run。