- name
- openclaw-continuity-pack
- description
- 用于给 OpenClaw 安装可复用的 continuity 模板与统一安装入口,支持 workspace-only、continuity-only 和 full continuity 三条路线;可选对匹配源码树应用 runtime patch,实现前台同一对话、后台自动续接、静默 continuity 准备的工作流。
- license
- MIT
OpenClaw全自动新对话续接
ClawHub quick install
If you found this on ClawHub and want to install it into OpenClaw immediately, use either of these:
openclaw skills install openclaw-continuity-packor:
clawhub install openclaw-continuity-packThen start a new OpenClaw session so the newly installed skill is eligible.
30-second route chooser
After install, choose one path:
- 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
- Continuity-only install
- Install only the memory / plans / status / handoff workflow files. - Fastest command: - python3 {baseDir}/scripts/install_continuity_pack.py --route continuity
- Full continuity install
- Scaffold the workspace layer, then apply the runtime patch to a matching OpenClaw source tree, rebuild, and redeploy. - Fastest command: - python3 {baseDir}/scripts/install_continuity_pack.py --route full --source-root <OPENCLAW_SOURCE_ROOT> --apply-runtime-patch --rebuild
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:
- Install workspace continuity only
- scaffold reproducible prompts, continuity templates, and workspace conventions
- Install full continuity
- scaffold the workspace layer, apply the runtime patch to a matching source tree, rebuild, and verify
- Package / audit / publish
- review this skill for distribution without leaking secrets, logs, machine paths, or live state
Fast path
Workspace-only install
- Read
references/install.md - 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:
- scripts/install_continuity_pack.py --route continuity
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
- Then follow:
- references/deploy-notes.md - references/verify.md - references/rollback.md
Bundled resources
scripts/
scripts/install_continuity_pack.pyscripts/bootstrap_workspace.pyscripts/apply_runtime_patch.pyscripts/continuity_doctor.py
assets/
assets/workspace/for the reusable operating layer and continuity templatesassets/config/openclaw.example.jsonfor a sanitized continuity-oriented config exampleassets/patch/thread-continuity.patchfor the formal runtime/UI patch
references/
references/overview.mdreferences/install.mdreferences/usage.mdreferences/capability-layers.mdreferences/files-to-replace.mdreferences/deploy-notes.mdreferences/verify.mdreferences/rollback.mdreferences/release-notes.mdreferences/changelog.mdreferences/distribution.mdreferences/source-audit.mdreferences/upgrade-maintenance.md
Working rules for this skill
When using this skill:
- 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
- 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
~/.openclawsnapshot. - 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 - pnpm ui:build
Read only what you need
README.mdreferences/overview.mdreferences/install.mdreferences/usage.mdreferences/capability-layers.mdreferences/verify.mdreferences/rollback.mdreferences/upgrade-maintenance.mdreferences/distribution.mdreferences/source-audit.md