DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Pi Cordis — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

pi-cordis

Pi Cordis

Pi coding agent as a lifecycle-owned Cordis runtime plugin for ACRYL.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add pi-cordis@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Pi Cordis is published as pi-cordis and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/9/2026

Versions

0.1.0stable
9/9/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
11.7 kB
Files
8
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/9/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

pi-cordis

pi-cordis packages the Pi coding agent as a Cordis runtime plugin. It provides a Pi SDK session through the host's existing Cordis tree, so an ACRYL runtime can mount, remove, or replace Pi without making Pi the owner of application composition.

Install

pnpm add pi-cordis @deepseek-ai/cordis@4.0.1

Compose

Use a stable Loader row in a host that already provides loader:

- id: pi-engine
  name: pi-cordis
  config:
    persistent: false

persistent: false keeps the Pi session in memory. Set persistent: true to use Pi's session storage in the configured working directory. ACRYL's future engine-neutral session record remains the owner of cross-engine continuity.

Runtime API

The plugin provides ctx.piEngine.

const sessionId = await ctx.piEngine.open()
ctx.piEngine.subscribe(event => observe(event))
await ctx.piEngine.prompt('Inspect this project')
await ctx.piEngine.abort()

Pi owns its agent loop, model runtime, session operations, and event stream. Cordis owns the Pi engine's service lifetime, subscriptions, cleanup, and replacement in the surrounding host.

Engineering principles

pi-cordis keeps the Pi integration narrow and lifecycle-safe.

  • Dependency inversion and separated interfaces. Consumers use ctx.piEngine; they do not create or retain Pi SDK sessions directly.
  • A capability seam for replacement. Pi becomes a provider entry that a host can observe, remove, or replace without rewriting its consumers.
  • Orthogonality over startup order. The plugin waits for loader; it does not assume a particular initialization sequence or create its own root.
  • One owner for live resources. The service owns the active Pi session and event subscription. Fiber disposal unsubscribes, aborts, and disposes them.
  • YAGNI at the integration boundary. This package uses Pi's SDK rather than recreating Pi's agent loop, model registry, extensions, or session manager.
  • Information hiding. Pi SDK details stay behind a small service surface. Pi's transitive packages, including Chord, are not used as an ACRYL composition runtime; Cordis remains the lifecycle and dependency system.
  • Fail fast and refactor safely. Invalid configuration is rejected before activation. Tests cover missing Loader behavior, service mount/unmount, and repeated activation without stale providers.

Source and provenance

The repository includes pi/ as a shallow, one-commit Git submodule from https://github.com/earendil-works/pi, pinned to upstream main.

pnpm run upstream:sync    # restore the recorded pin
pnpm run upstream:update  # deliberately fetch upstream main and update the pin

The submodule is source provenance only. The published package uses the pinned @earendil-works/pi-coding-agent SDK and does not load source directly from the checkout. See provenance.json for the exact source revision and dependency mapping.

pi-cordis is an engine provider for ACRYL's selectable runtime host. The --engine pi CLI selection, canonical cross-engine session record, and DSH+Pi hybrid engine are subsequent integration work. pi-cordis