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.

Think Like Codex — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
T

think-like-codex

Think Like Codex

Codex-inspired planning, evidence, goal, and anti-loop policy plugin for DeepSeek Harness.

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

npx -y @deepseek-ai/dsh plugin --profile web add think-like-codex@0.1.2
READMECompatibilityVersions

Compatibility and provenance

Think Like Codex is published as think-like-codex and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.1.2stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
37.5 kB
Files
6
Surface
any
License
MIT
Source
npm
GitHub
★ 2
Weekly downloads
0
Last push
8/20/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

think-like-codex

English | 简体中文

A Codex-inspired behavior policy and Profile Bundle for DeepSeek Harness (DSH).

It helps coding agents make deliberate decisions, avoid unproductive loops, ask the user for help when evidence is insufficient, and follow a structured plan → goal → implementation workflow for complex tasks.

Features

  • Injects practical collaboration, code-generation, validation, and safety guidance.
  • Applies equivalent task detection and policy guidance to both English and Chinese requests.
  • Detects complex implementation requests and automatically enters DSH Plan mode.
  • Adds an exploration checkpoint after 8 tools in Plan mode and enforces a hard limit after 12 tools.
  • Requires an approved plan to be followed by a goal and todo list before mutation tools may run.
  • Detects repeated tool failures and prompts the agent to change approach or ask the user for help.
  • Adds periodic decision checkpoints during long turns.
  • Distinguishes verified facts, inferences, and assumptions.
  • Limits repeated attempts when an issue cannot be reproduced in the available environment.

Simple questions and explicitly read-only tasks do not automatically enter Plan mode. Users can also override automatic planning by clearly asking the agent not to plan. A direct user follow-up resets the exploration budget so a changed direction can be investigated normally.

The plugin reuses DSH's built-in planMode, create_goal, todo_write, ask_user_question, and repeat-tool-reminder capabilities. It does not register duplicate tools or modify session files directly.

Installation

dsh plugin --profile web add -w think-like-codex
dsh --profile web

This package is a DSH Profile Bundle. Its bundled cordis.patch.yml mounts the plugin automatically. Replace web with another profile name when needed. Restart the profile host after updating host-side code.

Configuration

The bundle installs the following defaults:

- id: think-like-codex
  name: think-like-codex
  config:
    autoPlan: true
    complexityMinChars: 120
    stepReminderAt: 12
    stepReminderEvery: 8
    planCheckpointToolAt: 8
    planHardToolLimit: 12
    enforceGoalAfterPlan: true
    failureReminderCount: 2

Override the complete config object for think-like-codex in your profile's cordis.patch.yml if you need different thresholds.

Uninstallation

dsh plugin --profile web remove think-like-codex

License

MIT