技能 编程开发 智能体项目收尾与路线图生成

智能体项目收尾与路线图生成

v20260826
wrap-up
用于正式收尾已上线的智能体项目。功能包括:盘点所有已构建的原语(如内存、环境和部署);生成可分享、单文件的概览页面;并根据记录的延期和加固步骤,提出未来1-2个最具价值的升级建议,帮助创始人构建清晰的后续发展路线图。
获取技能
338 次下载
概览

Wrap-up — close it out

The explicit close-out. Confirm what's live, regenerate the shareable overview, and name the next 1–2 upgrades so the founder leaves with a clear roadmap. The ./my-agent/ folder keeps working after the session ends.

Workflow

  1. Inventory what they own.
    python3 scripts/primitives_inventory.py \
      --sheet ./my-agent/build-sheet.json --goal ./my-agent/goal.json
    
    Tables agent / environment / session / memory / outcome / deployment and the phases completed.
  2. Regenerate the overview page.
    python3 scripts/overview_page.py \
      --sheet ./my-agent/build-sheet.json --out-dir ./my-agent \
      --status live --loop-shape cron-loop --last-verdict satisfied
    
    Self-contained agent-overview.html (inline CSS, theme-aware, no external assets) — shareable as-is.
  3. Suggest the next moves.
    python3 scripts/upgrade_suggester.py --sheet ./my-agent/build-sheet.json --top 2
    
    Ranks recorded deferrals (v1 before v2, real-integration first) plus standing hardening (tighten networking, pin the agent version, nest an outcome).
  4. Finalize. Ensure NEXT-DIRECTIONS.md is current (Phase-4 tool), then goal_state.py advancephase=done.

Hard rules

  • Recap what's actually live — read it from the sheet + goal state, never assert primitives that weren't created.
  • The overview is single-file — no external assets, so it shares cleanly.
  • Every next move names the exact mechanism.

Forcing-question library (recommend + cite)

  1. "Confirm what's live vs still a plan?" Recommend: inventory from the sheet. Cite: this SKILL.
  2. "Which single upgrade has the highest payoff?" Recommend: the top-ranked v1 deferral. Cite: upgrade_suggester ranking.
  3. "Is the overview page current?" Recommend: regenerate after any change. Cite: this SKILL.

Tools

  • scripts/primitives_inventory.py — recap every owned primitive.
  • scripts/overview_page.py — regenerate single-file agent-overview.html.
  • scripts/upgrade_suggester.py — next 1–2 upgrades with mechanisms.
信息
Category 编程开发
Name wrap-up
版本 v20260826
大小 7.05KB
更新时间 2026-09-06
语言