DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Continuum — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
C

dsh-continuum

Continuum

为 DeepSeek Harness 提供持久化项目记忆、上下文安全的代理交接、检查点、证据跟踪和长期任务连续性

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:QuantumKuba/dsh-coninuum#890060b9cb946ff04010b19943473d6de3e9ebb8
README兼容性版本

兼容性与来源证明

Continuum 以 dsh-continuum 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/9/2

版本

0.1.0stable
2026/9/2

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 memory-context 分类下经过校验的插件。

Memory Plugin@openviking/dsh-memory-plugin适用于 DeepSeek Harness 的 OpenViking 记忆与上下文套件Contextdsh-context用于上下文洞察和管理的 DeepSeek Harness 插件,提供上下文仪表板和上下文命令,帮助了解上下文的构成及其演变过程。Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。

README

dsh-continuum

Agents are temporary. The project is continuous.

dsh-continuum is a production-grade marketplace plugin for DeepSeek Harness (DSH). It provides persistent project memory, context-safe agent handoffs, checkpointing, evidence tracking, and long-running task continuity across ephemeral LLM agent sessions.


The Problem: Ephemeral Agent Amnesia

In multi-agent and long-running workflows, individual agent processes are inherently temporary:

  • Context windows fill up, forcing context wipes or aggressive summarization.
  • Subagents die or time out, losing critical reasoning, rejected hypotheses, and uncommitted findings.
  • Successive agents repeat expensive literature/codebase research or regress already-solved bugs.
  • Uncoordinated agents overwrite each other's work or self-verify incomplete implementations.

dsh-continuum turns DeepSeek Harness from a stateless prompt runner into a resilient, state-preserving software engineering environment.


Key Capabilities

graph TD
    subgraph DSH_Runtime["DeepSeek Harness Runtime"]
        Agent["Ephemeral Agent Session"]
        Prompt["Prompt Section (order: 200)"]
        Tools["7 First-Party Tools"]
    end

    subgraph Continuum["dsh-continuum Core Engine"]
        OCC["Optimistic Concurrency (OCC)"]
        Leases["Renewable Task Leases"]
        SoD["Separation of Duty (4-Eyes)"]
        ContextEng["10-Tier Context Budgeter"]
        Lock["Liveness File Lock (PID check)"]
    end

    subgraph Storage[".continuum/ Storage Layer"]
        Log["events.jsonl (Append-Only)"]
        Snap["checkpoints/ (Snapshots)"]
        Arts["artifacts/ (Large Spilled Outputs >10KB)"]
        Backup["Backup & Restore (.continuum-backup)"]
    end

    Agent -->|Invokes| Tools
    Tools --> OCC
    OCC --> Lock
    Lock --> Log
    Log --> Snap
    Log --> Arts
    Snap --> ContextEng
    ContextEng -->|Injects Context Pack| Prompt
  1. Deterministic Event Sourcing (events.jsonl): Every state change (project creation, task claim, finding, decision, evidence, verification) is modeled as an immutable, strictly monotonically sequenced event. System state is derived deterministically by replaying the event log.
  2. Crash Resilience & Partial Line Recovery: If a host process dies mid-write (SIGKILL or power loss), Continuum automatically detects incomplete trailing JSON fragments, safely truncates to the last committed event, and continues operations without data loss.
  3. Liveness-Checked Cooperative Locking: Serializes concurrent process writes using cooperative lockfiles with defensive PID existence validation (process.kill(pid, 0)). Stale locks from terminated processes are safely broken without dangerous arbitrary timeouts.
  4. Optimistic Concurrency Control (OCC): Entity updates enforce strict version matching (expectedVersion). Concurrent writes with stale assumptions are rejected with typed VersionConflictError rather than silently overwriting state.
  5. Strict Mutation Idempotency: Retrying a network-dropped or replayed tool call with identical idempotencyKey returns the cached result without duplicating side effects. Accidental key collisions across different actions trigger an immediate IdempotencyMismatchError.
  6. Renewable Execution Leases: Tasks claimed by agents issue time-bound leases (e.g., 10 minutes). If an agent crashes or abandons a task without renewing its lease, Continuum's lease reconciler automatically releases the task back to ready with an incremented attempt counter.
  7. Four-Eyes Separation of Duty: Configurable task verification policies (independent, dual, redteam) mathematically forbid the agent who implemented a task from self-verifying it.
  8. Deterministic 10-Tier Context Budgeting: Builds token-capped system prompt sections using strict priority ranking (active task $\to$ North Star $\to$ blocker conflicts $\to$ key findings $\to$ recent handoffs). Large outputs (>10KB) are automatically spilled to disk artifacts to protect prompt budgets.
  9. Untrusted Content Encapsulation: External web scrapes, user inputs, and finding contents are sanitized and sealed in strict <continuum:untrusted-finding> boundaries to prevent prompt breakout attacks.
  10. Cryptographic Backup & Verified Restore: Exports the entire project into a self-contained .continuum-backup archive with SHA-256 integrity verification.

Installation

Install into your DeepSeek Harness project:

pnpm add dsh-continuum
# or
npm install dsh-continuum

DeepSeek Harness Configuration (cordis.patch.yml)

Add dsh-continuum to your Cordis configuration file:

plugins:
  dsh-continuum:
    storageMode: workspace # 'workspace' (.continuum/) | 'home' (~/.continuum/) | 'custom'
    autoInjectContext: true
    maxContextPackTokens: 8000
    defaultLeaseTtlMinutes: 10

The 7 First-Party Continuum Tools

dsh-continuum exposes 7 first-party tools defined using @deepseek-ai/dsh-tools:

ToolAction OptionsDescription
continuum_projectinit, get, status, history, exportInitializes projects, updates North Star requirements, and exports backup bundles.
continuum_taskcreate, claim, renew_lease, submit, verify, reopen, getManages task lifecycle, leases, deliverables, and 4-eyes verification.
continuum_memoryrecord_finding, record_decision, ask_question, raise_conflict, attach_evidence, getRecords facts, architectural choices (with supersession), conflicts, and evidence.
continuum_checkpointcreate, listCaptures named milestone snapshots for fast replay and rollback.
continuum_handoffcreate, get_latestTransfers state cleanly from one agent role to another with context notes.
continuum_contextrenderInspects or re-renders the active token-budgeted Context Pack.
continuum_statuscheckDiagnostics, lock status, lease expirations, and event log health.

Concurrency & Actor Safety

  • Authenticated Principal Enforcement: Actor identities (id, role) are derived securely from exec.agent.id and runtime context; caller JSON cannot spoof principal IDs.
  • Tool Concurrency Annotations: Safe read actions (get, history, render, check) are declared isConcurrencySafe: true, while mutating operations are serialized.

Programmatic API Usage

You can also use Continuum directly in standalone Node.js / TypeScript code:

import { ContinuumEngine, FileSystemStorageBackend, StorageResolver } from 'dsh-continuum'

// 1. Initialize storage backend
const resolver = new StorageResolver({ mode: 'workspace' })
const storage = new FileSystemStorageBackend(resolver)
const engine = new ContinuumEngine(storage)

// 2. Initialize project & North Star
await engine.initProject('proj-alpha', 'Project Alpha', 'Core Engine', {
  id: 'agent-orchestrator',
  role: 'orchestrator'
})

await engine.setNorthStar(
  'Build resilient distributed consensus',
  ['Linearizable reads', 'Crash recovery'],
  { id: 'agent-orchestrator', role: 'orchestrator' }
)

// 3. Create task with independent verification policy
const task = await engine.createTask({
  title: 'Implement WAL Appender',
  description: 'Write write-ahead log with fsync flush barrier',
  acceptanceCriteria: ['Pass crash fault tests'],
  verificationPolicy: 'independent' // Four-eyes principle
}, {
  actor: { id: 'agent-orchestrator', role: 'orchestrator' }
})

// 4. Implementer claims task (lease issued)
const claim = await engine.claimTask(task.data.id, {
  actor: { id: 'agent-implementer', role: 'implementer' }
})
console.log('Claimed task with lease:', claim.data.leaseId)

Task State Machine

Tasks strictly adhere to the following transition graph:

       ┌──────────┐
       │  queued  │
       └────┬─────┘
            │
       ┌────▼─────┐
       │  ready   │◄───────────────────────┐
       └────┬─────┘                        │
            │ claimTask                    │
       ┌────▼─────┐                        │
       │ claimed  │                        │
       └────┬─────┘                        │
            │ startTask                    │ (rejection / lease expired)
       ┌────▼─────┐                        │
       │ running  │                        │
       └────┬─────┘                        │
            │ submitTask                   │
       ┌────▼─────┐                        │
       │submitted │                        │
       └────┬─────┘                        │
            │ verifyTask                   │
            ├───────────────┐              │
            │ (passed)      │ (rejected)   │
       ┌────▼───────┐  ┌────┴────────┐     │
       │ completed  │  │  rejected   ├─────┘
       └────────────┘  └─────────────┘

Quality & Verification

dsh-continuum is thoroughly tested against the actual DeepSeek Harness runtime and Node.js 24:

  • 14 Test Suites, 31 Automated Tests: 100% passing across unit, property, integration, and E2E tiers.
  • Property-Based Invariant Testing (fast-check): Verified sequence monotonicity, deterministic replay, and snapshot-tail equivalence across 100 randomized event streams.
  • Zero Third-Party Code Bleed: Fully Permissive MIT License. Verified complete conceptual independence from non-permissive academic skills.

Run the test suite:

pnpm test

Inspect the full verification trace in docs/VERIFICATION.md and the end-to-end multi-agent scenario in docs/E2E-DEMO.md.


License

MIT License. See LICENSE and NOTICE.md for details.