Agent Skillshuisezhiyin/sdd-riper › new-chat-ready

new-chat-ready

GitHub

用于安全、紧凑地准备新会话交接,保护Git状态并沉淀项目知识。支持自动创建新对话或生成可粘贴的恢复提示,实现上下文重置与无缝续接。

skills/new-chat-ready/SKILL.md huisezhiyin/sdd-riper

Trigger Scenarios

用户请求新开会话或换对话 需要上下文压缩、总结或交接给下个Agent 尝试恢复丢失的对话或从日志恢复

Install

npx skills add huisezhiyin/sdd-riper --skill new-chat-ready -g -y
More Options

Use without installing

npx skills use huisezhiyin/sdd-riper@new-chat-ready

指定 Agent (Claude Code)

npx skills add huisezhiyin/sdd-riper --skill new-chat-ready -a claude-code -g -y

安装 repo 全部 skill

npx skills add huisezhiyin/sdd-riper --all -g -y

预览 repo 内 skill

npx skills add huisezhiyin/sdd-riper --list

SKILL.md

Frontmatter
{
    "name": "new-chat-ready",
    "version": "0.3.0",
    "description": "Prepare safe, compact new-chat handoffs when a user wants a fresh chat, resume pack, context reset, recovery, or agent handoff. Before creating a new conversation, preserve durable project knowledge and protect dirty Git work with a verified local snapshot branch and commit; optionally push that branch when explicitly authorized. Create the next Codex thread directly when supported, otherwise provide a paste-ready fallback prompt."
}

New Chat Ready

Core Position

This skill turns an active or recoverable past conversation into an execution handoff, protects the current Git state before any thread transition, and starts the next Codex conversation when the runtime supports it.

It is not a generic chat summary. It should preserve only the next agent's operating context: the current goal, latest recap checkpoint, workspace, decisions, files, validation evidence, risks, constraints, and the exact next action.

Use it as a cross-cutting handoff layer with SDD-RIPER, CodeMap, expcap, ordinary coding tasks, local conversation recovery, and project-level Markdown sync. SDD skills may route to this skill, but the handoff, recovery, and project sync format lives here.

Project-level sync and Git protection are core gates, not optional afterthoughts. Move stable knowledge into the right long-lived files, keep transient state in the handoff/spec, then capture the resulting worktree in a recoverable local Git commit before creating the next conversation.

Trigger

Use this skill when the user asks for or implies:

  • new chat, fresh chat, 换对话, 开新会话, 另开一轮
  • handoff, resume pack, 交接, 接着做, 无缝续接
  • 上下文快满, 压缩上下文, 总结给下个 chat
  • 对话丢了, 恢复对话, 找回上次对话, 从 Codex/Claude 日志恢复
  • 沉淀到项目文档, 更新 AGENTS/README, 避免反复踩坑, 把经验写进项目 memory
  • a durable pause point for a long or risky task

If the user only asks whether this capability is a good idea, answer the design question first. Create a handoff only after the user asks to do it, or when a running task clearly needs a pause/resume artifact.

For detailed trigger boundaries, read references/trigger-policy.md.

Delivery Mode

Before generating any manual prompt, explicitly check whether the current agent/runtime can create or continue Codex conversations itself. Prefer the lowest-friction continuation path that the current runtime actually supports:

  1. Capability check: in Codex, discover thread tools such as create_thread and send_message_to_thread with tool_search when they are not already loaded. Record whether direct creation is available, unavailable, or skipped for safety.
  2. Direct Codex continuation: if direct creation is available and the user wants a new chat / handoff / resume continuation, create the new conversation only after the handoff, project sync scan, and Git snapshot gate pass. Send the compact continuation prompt into that thread.
  3. Paste-ready fallback: generate a manual prompt only when thread tools are unavailable, blocked, unsafe for the current content, or the user explicitly wants a reusable prompt/document instead of a created thread.
  4. Inline-only fallback: if writing files is not appropriate, provide an inline handoff and compact prompt, and state that no file or new conversation was created.

Never invent tool availability. Prefer the same local project environment; do not allocate another worktree merely to create a fresh chat. If direct creation succeeds, provide the created thread identifier or link required by the host UI and keep the visible summary short.

Workflow

  1. Run New Chat Capability Check: identify the active task, workspace, intended next-chat scope, and whether the current agent can create/send to Codex threads directly.
  2. Gather only evidence needed for continuity:
    • project instructions such as AGENTS.md;
    • the latest recap checkpoint if one exists;
    • current spec, handoff, context bundle, or codemap if already active;
    • git status and touched files when in a repo;
    • validation commands and results already run;
    • unresolved decisions, blockers, and explicit user constraints.
  3. If the active conversation is unavailable, stale, or incomplete, enter Recovery Mode:
    • read references/recovery-from-local-logs.md;
    • translate the user's natural-language recovery request into search anchors;
    • search local Codex / Claude Code logs and show a short candidate list first;
    • wait for the user to choose candidate session(s) before reading deeply, unless there is exactly one obvious high-confidence match;
    • extract only continuity facts needed for the handoff, not the full transcript.
  4. Run a Context Diet before writing:
    • keep only facts that affect the next action, validation, safety, or project memory;
    • replace long history with links to source files, specs, codemaps, commits, logs, or commands;
    • separate stable project knowledge from task-local state;
    • delete duplicate explanations between handoff and next-chat prompt.
  5. Choose where to persist:
    • If an SDD spec is active, update its Resume / Handoff area and optionally create a separate handoff file.
    • Otherwise write mydocs/handoff/YYYY-MM-DD_hh-mm_<task>_new-chat.md when the user wants a durable artifact and the workspace is writable.
    • If there is no suitable workspace, output the handoff inline.
  6. Start from a short recap checkpoint, then write the handoff using references/handoff-template.md.
  7. Always run Project MD Sync Scan before finishing a handoff:
    • read references/project-md-sync.md to classify reusable project knowledge from this conversation, recovered logs, spec, codemap, validation, and diff;
    • first inspect AGENTS.md and existing root project knowledge files (PROJECT_KNOWLEDGE.md, PROJECT_MEMORY.md, PROJECT_SPEC.md) to find the local source of truth;
    • treat stable system-level experience, repeated user corrections, durable project facts, reusable debugging/validation knowledge, and knowledge that would otherwise be repeatedly pasted into new chats as sync candidates;
    • prefer small scoped edits or candidate notes over dumping task history into project docs;
    • report Synced, Candidates not synced, and Skipped even when no files are updated;
    • propose Project MD Sync Candidates before editing durable project docs unless the user explicitly asked to update them or current approval includes reverse sync;
    • distinguish a local safety snapshot from publication: follow repository rules before committing specs, handoffs, project memory, or user preferences locally, and never push such content without explicit approval plus sanitization;
    • update only scoped sections in project-level Markdown, not task execution logs.
  8. Run Git Snapshot Protection before any new thread is created:
    • read references/git-snapshot-protection.md;
    • if the repository is clean, record the current branch and HEAD;
    • if it is dirty, create or reuse a codex/new-chat-snapshot-* branch and make a reviewed local snapshot commit;
    • treat staging without a commit as incomplete protection;
    • push the snapshot branch only when explicitly authorized; remote protection is optional;
    • if the local snapshot cannot be verified, stop before thread creation and report the blocker.
  9. Produce a compact next-chat prompt using references/new-chat-prompt-template.md. Treat this as the direct-thread payload first and a manual paste artifact only as fallback.
  10. If direct Codex continuation is available and the Git snapshot gate passed, create the new thread in the same local project environment and send the compact prompt there. Otherwise provide the prompt for manual paste and explain the fallback reason in one line.
  11. If expcap is available and the project asks for durable experience capture, run the appropriate finish/save step after the handoff is correct. Do not make expcap a dependency for the handoff.

Output Rules

  • Default to Chinese unless the active project or user uses another language.
  • Separate Confirmed, Inferred, and Unknown facts when continuity depends on them.
  • Include exact paths for files, specs, codemaps, tests, and validation evidence.
  • When recovering from logs, include session/source paths and mark recovered facts as confirmed from logs, inferred from logs, or unknown.
  • Do not dump long logs, private data, credentials, tokens, or .env contents.
  • Do not expose raw transcripts unless the user explicitly asks; summarize and cite local source paths instead.
  • Do not claim a task is done unless the handoff includes validation evidence.
  • Preserve dirty-work awareness: list existing uncommitted changes, and mark which ones were made by the current agent if known.
  • Prefer recap-first handoff: begin with the shortest accurate state summary, then expand only the details needed for continuity.
  • Project MD Sync scan is mandatory for every handoff; Project MD Sync write is conditional. Separate durable project knowledge from task-specific state; keep edits small, cited, and reviewable. If no durable knowledge exists, say so explicitly.
  • Git protection is mandatory before direct thread creation in a repository. A dirty worktree requires a verified local snapshot commit; remote push remains optional.
  • Keep both handoff and prompt compact. Default targets: handoff under about 120 lines, next-chat prompt under about 60 lines. Exceed these only when the next agent would otherwise be unable to continue safely.
  • Always report the New Chat Capability Check result: direct thread created, direct creation unavailable, or direct creation skipped with reason.
  • The final next-chat prompt must be directly pasteable even when it is also sent into a created Codex thread. It should tell the next agent what to read first and what to do next, not retell the whole conversation.

References

  • references/trigger-policy.md: when to proactively offer or create a new-chat handoff.
  • references/recovery-from-local-logs.md: how to recover a lost or stale conversation from local Codex / Claude Code records.
  • references/project-md-sync.md: how to update project-level Markdown so future chats avoid repeated learning and repeated correction.
  • references/git-snapshot-protection.md: how to protect dirty work on a local snapshot branch before creating another conversation.
  • references/handoff-template.md: durable handoff document shape.
  • references/new-chat-prompt-template.md: paste-ready prompt for the next chat.

Version History

  • 0369cc4 Current 2026-08-19 21:35

    新增在创建新聊天前保护工作区状态的机制,确保Git数据安全。

  • 837ddf7 2026-07-24 21:06

Same Skill Collection

skills/sdd-riper-one-light/SKILL.md
skills/sdd-riper-one/SKILL.md
skills/codemap/SKILL.md

Metadata

Files
0
Version
0369cc4
Hash
bdaf19e6
Indexed
2026-07-24 21:06

- 위키
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 23:40
浙ICP备14020137号-1 $방문자$