Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

hot-swap-context热插拔上下文

Agent Skill

hot-swap-context 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,596

周安装

104

GitHub Stars

公开资料未说明

下载量

840
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install hot-swap-context

简介

hot-swap-context 用于查找、检索和筛选相关信息,支持快速定位候选结果。

  • 适用于构建可自带的上下文系统,包括上下文库和类型化内存管理。
  • 通过关键词或任务场景调用,灵活适配不同信息检索需求。
  • 安装前需确认权限范围和维护状态,注意是否涉及联网或文件操作。
  • 建议参考原始 README 和仓库文档了解具体实现和使用细节。

SKILL.md

name
portable-context-os
description
>

Portable Context OS

Use this skill to build, audit, or migrate a Bring Your Own Context system for agents. Treat durable context as infrastructure that should outlive any one model, chat product, or agent runtime.

Use this skill when the user wants any of the following:

  1. A real context vault or external memory layer for agents.
  2. A move from vendor-native memory to user-owned or organization-owned context.
  3. Chat history, artifacts, and preferences turned into typed memory objects.
  4. An MCP-native or otherwise model-agnostic context interface.
  5. A portable bundle that can move working context between runtimes.
  6. An audit of whether an existing memory system is brittle, noisy, or weakly governed.

Do not use this skill for simple one-chat personalization. Use it when the problem is architectural, portable, or long-running.

Core rule

Do not stop at guidance when the user wants a working system. Build the workspace, generate the MCP server, validate the output, and leave behind runnable artifacts.

The six paradigm shifts

Apply these shifts before building anything.

  1. Move from prompt state to context infrastructure. Treat durable context as a system layer, not as hidden prompt residue.
  2. Move from vendor memory to owned context. Separate memory ownership from model usage.
  3. Move from chat logs to typed memory objects. Store preferences, workflows, artifacts, state, and evaluations as distinct classes.
  4. Move from full-context loading to just-in-time retrieval. Route only what the active task needs.
  5. Move from personalization to governed memory contracts. Add review, permissions, deletion, auditability, and portability.
  6. Move from static agents to context flywheels. Improve memory schema, routing quality, and evaluation after every run.

Workflow decision

Choose the path that matches the task.

SituationAction
Building a new context systemFollow the Creation workflow and run the builder script
Auditing an existing agent or productFollow the Audit workflow
Packaging or migrating context between tools or teamsFollow the Migration workflow

Creation workflow

Follow these steps in order.

Step 1: Map the context surface

Identify the ownership mode first: personal, team, or enterprise.

Then map the six minimum design inputs:

  1. Primary actor.
  2. Core workflows.
  3. Artifact types.
  4. Memory types.
  5. Governance constraints.
  6. Portability target.

Read references/context_architecture.md before proposing any storage or retrieval design.

Step 2: Define the memory taxonomy

Do not allow the system to collapse into one generic memory blob.

Define at least these categories unless there is a clear reason not to:

  • identity memory
  • preference memory
  • workflow memory
  • domain memory
  • relationship memory
  • artifact memory
  • execution memory
  • evaluative memory

Use templates/memory_object.md to define each memory object class.

Step 3: Build the runtime, not just the documents

Specify the following components explicitly:

  • context vault
  • retrieval router
  • writeback or update engine
  • artifact store
  • policy layer
  • interface layer such as MCP, API, or CLI

Use templates/context_manifest.yaml to record the architecture and ownership model.

When the user wants a real system, run:

python /home/ubuntu/skills/portable-context-os/scripts/init_context_os.py <output_dir> --name <system_name> --ownership <personal|team|enterprise> --goal <goal> --source-runtime <source> --target-runtime <target>

This builder must generate all of the following inside the target workspace:

OutputPurpose
context_manifest.yamlArchitecture, ownership, routing, and runtime definition
governance_policy.mdMemory rules and policy surface
eval_scorecard.mdEvaluation and feedback-loop baseline
feedback_log.mdRetrieval misses, corruption risks, governance failures, portability failures
memory_objects/Typed memory storage
artifacts/First-class artifact store
tools/build_context_bundle.pyLocal bundle rebuild utility
mcp_server/server.pyWorking MCP server scaffold
mcp_server/requirements.txtRuntime dependency list

Step 4: Define governance before automation

Write rules for:

  • memory creation
  • human review
  • redaction
  • retention
  • forgetting or deletion
  • export and import
  • access control
  • audit trail

Use templates/governance_policy.md and read references/evaluation_and_governance.md.

Step 5: Validate the generated MCP server

Do not declare success after file generation alone. Validate that the generated server loads and can inspect the workspace.

Run:

python <workspace>/mcp_server/server.py --dry-run

If the user wants the server fully runnable in the current environment, install runtime dependencies and validate again.

Step 6: Build a portable bundle

Run:

python <workspace>/tools/build_context_bundle.py <workspace>

Use the generated bundle manifest for handoff, migration, or review.

Step 7: Customize the seeded workspace

Replace placeholder values, refine routing rules, add real memory objects, and populate the artifact store. Treat the generated workspace as a working starter system, not as final truth.

Audit workflow

Use this path when the user already has an agent, product, or memory system.

  1. Read references/evaluation_and_governance.md.
  2. Identify where durable context currently lives.
  3. Determine whether the memory is platform-scoped, user-scoped, or organization-scoped.
  4. Identify whether retrieval is typed and just-in-time or indiscriminate and prompt-heavy.
  5. Check whether artifacts, preferences, and execution state are separated.
  6. Check whether deletion, export, and audit semantics are real or only nominal.
  7. Produce a gap analysis against the six paradigm shifts.
  8. Convert the findings into a revised context_manifest.yaml and eval_scorecard.md.
  9. If the user wants a fix, build a replacement workspace and MCP server with init_context_os.py.

Migration workflow

Use this path when the user wants to move context across models, tools, teams, or employers.

  1. Identify the source memories and artifacts.
  2. Separate raw exports from live operational context.
  3. Normalize the memories into typed objects.
  4. Redact or re-scope organization-bound memories when ownership changes.
  5. Package the result as a portable bundle.
  6. Define what the receiving agent may read, update, or not retain.
  7. If the target environment needs an active interface, generate a new MCP server-backed workspace and import the normalized materials into it.

Use scripts/build_context_bundle.py after normalizing the source materials.

Generated MCP server expectations

The generated MCP server should expose a usable BYOC interface rather than a placeholder.

At minimum, the generated server should support:

CapabilityWhy it matters
Describe context systemConfirms the server sees the manifest and workspace
List memory objectsEnables typed retrieval
Get memory objectEnables precise inspection
Upsert memory objectEnables writeback into the context vault
Delete or tombstone memory objectEnables governance and forgetting
List artifactsPreserves artifacts as first-class memory
Build portable bundleKeeps portability live, not theoretical
Append feedback logMaintains the self-improving loop

Prefer tools for state changes, resources for readable workspace files, and prompts for controlled memory-review flows.

Self-improving feedback loop

Activate this loop whenever the skill runs.

  1. Record retrieval misses: what the agent needed but did not retrieve.
  2. Record memory corruption risks: stale, duplicated, or over-generalized memories.
  3. Record governance failures: missing deletion paths, weak permissions, weak auditability.
  4. Record portability failures: what could not move cleanly between runtimes.
  5. Update the context manifest, memory taxonomy, routing rules, and server defaults.
  6. Re-run the evaluation scorecard before declaring the design stable.

Output requirements

When using this skill, produce deliverables that are inspectable, editable, and runnable.

At minimum, aim to leave behind:

DeliverablePurpose
context_manifest.yamlArchitecture, ownership, interfaces, and routing summary
memory object definitionsTyped memory model
governance policyRules for creation, retention, access, and deletion
evaluation scorecardRetrieval, portability, and trust metrics
portable bundle manifestReviewable handoff and migration artifact
working MCP server scaffoldLive interface into the owned context system

Resources

Read resources only when needed.

  • Read references/context_architecture.md when designing the system shape.
  • Read references/paradigm_shifts.md when the user wants the deeper conceptual framing or a strategy memo.
  • Read references/evaluation_and_governance.md when auditing trust, deletion, portability, or evaluation.
  • Use templates/ files as editable starting points.
  • Run scripts/init_context_os.py to build a new workspace and MCP server.
  • Run scripts/build_context_bundle.py to summarize and package a workspace.

Working rule

Optimize for owned, typed, governed, portable context. Do not optimize for the illusion of memory if the resulting system still traps the user inside one runtime.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.34%
按下载量换算641

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills