Token导航 LogoToken导航TokenDH.com
运维需要联网clawhub未标认证来源可访问clear审计提醒

openclaw-continuity-packOpenClaw continuity pack 运维

Agent Skill

openclaw-continuity-pack 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,191

周安装

223

GitHub Stars

公开资料未说明

下载量

1,820
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-continuity-pack(OpenClaw continuity pack 运维)
来源仓库:https://github.com/buasakaking/openclaw-continuity-pack
安装命令:
openclaw skills install openclaw-continuity-pack
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-continuity-pack

简介

用于给 OpenClaw 安装可复用的 continuity 模板与统一安装入口,支持 workspace-only、continuity-only 和 full continuity 三条路线;可选对匹配源码树应用 runtime patch,实现前台同一对话、后台自动续接、静默 continuity 准备的工作流。

SKILL.md

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-pack

or:

clawhub install openclaw-continuity-pack

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

  1. Continuity-only install

- Install only the memory / plans / status / handoff workflow files. - Fastest command: - python3 {baseDir}/scripts/install_continuity_pack.py --route continuity

  1. 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:

  1. Install workspace continuity only

- scaffold reproducible prompts, continuity templates, and workspace conventions

  1. Install full continuity

- scaffold the workspace layer, apply the runtime patch to a matching source tree, rebuild, and verify

  1. 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.py
  • scripts/bootstrap_workspace.py
  • scripts/apply_runtime_patch.py
  • scripts/continuity_doctor.py

assets/

  • assets/workspace/ for the reusable operating layer and continuity templates
  • assets/config/openclaw.example.json for a sanitized continuity-oriented config example
  • assets/patch/thread-continuity.patch for the formal runtime/UI patch

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

Working rules for this skill

When using this skill:

  1. Reuse the bundled scripts instead of hand-copying files when the scripts already fit.
  2. Keep the request split cleanly:

- workspace continuity only - workspace + runtime patch - publishing/auditing the pack itself

  1. Do not claim this reproduces a whole live assistant.
  2. 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 - pnpm ui:build

Read only what you need

  1. README.md
  2. references/overview.md
  3. references/install.md
  4. references/usage.md
  5. references/capability-layers.md
  6. references/verify.md
  7. references/rollback.md
  8. references/upgrade-maintenance.md
  9. references/distribution.md
  10. references/source-audit.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.25%
按下载量换算1,533

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills