OpenClaw全自动新对话续接
ClawHub quick install
If you found this on ClawHub and want to install it into OpenClaw immediately, use either of these:
CODEBLOCK0
or:
CODEBLOCK1
Then start a new OpenClaw session so the newly installed skill is eligible.
30-second route chooser
After install, choose one path:
- 1. Workspace-only install
- Reuse the prompts, templates, and continuity workflow without changing OpenClaw source.
- Fastest command:
-
python3 {baseDir}/scripts/install_continuity_pack.py --route workspace
- 2. Continuity-only install
- Install only the
memory / plans / status / handoff workflow files.
- Fastest command:
-
python3 {baseDir}/scripts/install_continuity_pack.py --route continuity
- 3. Full continuity install
- Scaffold the workspace layer, then apply the runtime patch to a
matching OpenClaw source tree, rebuild, and redeploy.
- Fastest command:
- INLINECODE3
The installer auto-detects the workspace from the current OpenClaw workspace when possible, and otherwise falls back to ~/.openclaw/workspace.
Once installed, treat the skill root as {baseDir} when following the bundled commands and file references.
Use this skill when the goal is to give another OpenClaw project the maximum reusable subset of a verified continuity stack without shipping a live machine snapshot.
The current runtime patch targets silent continuity preparation: ordinary chat pages no longer render continuity/context hint messages, while same-thread rollover and hidden handoff remain in place.
This skill is for three situations:
- 1. Install workspace continuity only
- scaffold reproducible prompts, continuity templates, and workspace conventions
- 2. Install full continuity
- scaffold the workspace layer, apply the runtime patch to a matching source tree, rebuild, and verify
- 3. Package / audit / publish
- review this skill for distribution without leaking secrets, logs, machine paths, or live state
Fast path
Workspace-only install
- - Read INLINECODE6
- Preferred one-shot command:
-
scripts/install_continuity_pack.py --route workspace
- - Lower-level equivalent:
-
scripts/bootstrap_workspace.py --workspace auto
- - If the user wants only continuity files and not the broader operating layer, use:
- INLINECODE9
Full continuity install
- - Preferred one-shot command:
-
scripts/install_continuity_pack.py --route full --source-root <OPENCLAW_SOURCE_ROOT> --apply-runtime-patch --rebuild
- - Lower-level equivalent:
-
scripts/bootstrap_workspace.py --workspace auto
-
scripts/apply_runtime_patch.py --source-root <OPENCLAW_SOURCE_ROOT> --apply --rebuild
-
references/deploy-notes.md
-
references/verify.md
- INLINECODE15
Bundled resources
scripts/
- - INLINECODE16
- INLINECODE17
- INLINECODE18
- INLINECODE19
assets/
- -
assets/workspace/ for the reusable operating layer and continuity templates - INLINECODE21 for a sanitized continuity-oriented config example
- INLINECODE22 for the formal runtime/UI patch
references/
- - INLINECODE23
- INLINECODE24
- INLINECODE25
- INLINECODE26
- INLINECODE27
- INLINECODE28
- INLINECODE29
- INLINECODE30
- INLINECODE31
- INLINECODE32
- INLINECODE33
- INLINECODE34
- INLINECODE35
Working rules for this skill
When using this skill:
- 1. Reuse the bundled scripts instead of hand-copying files when the scripts already fit.
- Keep the request split cleanly:
- workspace continuity only
- workspace + runtime patch
- publishing/auditing the pack itself
- 3. Do not claim this reproduces a whole live assistant.
- Do not ship real user memory, logs, secrets, API keys, channel config, hidden prompts, deploy backups, or temporary validation artifacts.
Boundaries
- - This is not an infinite-context solution.
- This is not a full
~/.openclaw snapshot. - The workspace layer reproduces public operating style and continuity discipline, but not the base model, permission policy, plugin inventory, or runtime state by itself.
- Full same-thread continuity still requires a matching OpenClaw source tree plus:
-
pnpm build
- INLINECODE38
Read only what you need
- 1. INLINECODE39
- INLINECODE40
- INLINECODE41
- INLINECODE42
- INLINECODE43
- INLINECODE44
- INLINECODE45
- INLINECODE46
- INLINECODE47
- INLINECODE48
OpenClaw全自动新对话续接
ClawHub快速安装
如果你在ClawHub上找到此技能并希望立即安装到OpenClaw中,请使用以下任一命令:
bash
openclaw skills install openclaw-continuity-pack
或:
bash
clawhub install openclaw-continuity-pack
然后启动一个新的OpenClaw会话,使新安装的技能生效。
30秒路径选择器
安装后,选择以下路径之一:
- 1. 仅工作区安装
- 复用提示词、模板和续接工作流,无需修改OpenClaw源码。
- 最快命令:
- python3 {baseDir}/scripts/install
continuitypack.py --route workspace
- 2. 仅续接安装
- 仅安装memory / plans / status / handoff工作流文件。
- 最快命令:
- python3 {baseDir}/scripts/install
continuitypack.py --route continuity
- 3. 完整续接安装
- 搭建工作区层,然后将运行时补丁应用到
匹配的OpenClaw源码树,重新构建并重新部署。
- 最快命令:
- python3 {baseDir}/scripts/install
continuitypack.py --route full --source-root
SOURCEROOT> --apply-runtime-patch --rebuild
安装程序会尽可能从当前OpenClaw工作区自动检测工作区,否则回退到~/.openclaw/workspace。
安装完成后,在执行捆绑命令和文件引用时,将技能根目录视为{baseDir}。
当目标是为另一个OpenClaw项目提供已验证续接栈的最大可复用子集,而无需传输实时机器快照时,请使用此技能。
当前运行时补丁针对静默续接准备:普通聊天页面不再显示续接/上下文提示消息,而同一线程的滚动和隐藏交接功能保持不变。
此技能适用于三种情况:
- 1. 仅安装工作区续接
- 搭建可复现的提示词、续接模板和工作区约定
- 2. 安装完整续接
- 搭建工作区层,将运行时补丁应用到匹配的源码树,重新构建并验证
- 3. 打包/审计/发布
- 审查此技能以便分发,不泄露密钥、日志、机器路径或实时状态
快速路径
仅工作区安装
- - 阅读references/install.md
- 推荐的一键命令:
- scripts/installcontinuitypack.py --route workspace
- scripts/bootstrap_workspace.py --workspace auto
- - 如果用户只需要续接文件而不需要更广泛的操作层,请使用:
- scripts/installcontinuitypack.py --route continuity
完整续接安装
- scripts/installcontinuitypack.py --route full --source-root SOURCEROOT> --apply-runtime-patch --rebuild
- scripts/bootstrap_workspace.py --workspace auto
- scripts/applyruntimepatch.py --source-root SOURCEROOT> --apply --rebuild
- references/deploy-notes.md
- references/verify.md
- references/rollback.md
捆绑资源
scripts/
- - scripts/installcontinuitypack.py
- scripts/bootstrapworkspace.py
- scripts/applyruntimepatch.py
- scripts/continuitydoctor.py
assets/
- - assets/workspace/ 用于可复用的操作层和续接模板
- assets/config/openclaw.example.json 用于经过清理的续接导向配置示例
- assets/patch/thread-continuity.patch 用于正式的运行时/UI补丁
references/
- - references/overview.md
- references/install.md
- references/usage.md
- references/capability-layers.md
- references/files-to-replace.md
- references/deploy-notes.md
- references/verify.md
- references/rollback.md
- references/release-notes.md
- references/changelog.md
- references/distribution.md
- references/source-audit.md
- references/upgrade-maintenance.md
此技能的工作规则
使用此技能时:
- 1. 当脚本已适用时,复用捆绑脚本而非手动复制文件。
- 保持请求清晰分离:
- 仅工作区续接
- 工作区 + 运行时补丁
- 发布/审计此包本身
- 3. 不要声称这能复现完整的实时助手。
- 不要传输真实的用户记忆、日志、密钥、API密钥、频道配置、隐藏提示词、部署备份或临时验证产物。
边界
- - 这不是无限上下文解决方案。
- 这不是完整的~/.openclaw快照。
- 工作区层可复现公开的操作风格和续接规范,但不包含基础模型、权限策略、插件清单或运行时状态本身。
- 完整的同一线程续接仍然需要匹配的OpenClaw源码树,外加:
- pnpm build
- pnpm ui:build
仅阅读所需内容
- 1. README.md
- references/overview.md
- references/install.md
- references/usage.md
- references/capability-layers.md
- references/verify.md
- references/rollback.md
- references/upgrade-maintenance.md
- references/distribution.md
- references/source-audit.md