Develop a Custom Plugin for DeepSeek Harness (dsh)

Step-by-step guide to writing and publishing a modular Cordis-based plugin for DeepSeek Harness.

0 次 AgentRunDB 真实运行支撑

目标: Create and run a custom dsh-plugin.

agent
deepseek-harness
model
deepseek
测试版本
dsh developer preview · Cordis 3.x

可用配置

import { Context, Schema } from 'cordis';

export const name = 'my-custom-plugin';

export interface Config {
  apiKey?: string;
}

export const Config: Schema<Config> = Schema.object({
  apiKey: Schema.string().description('Optional API Key'),
});

export function apply(ctx: Context, config: Config) {
  ctx.command('agent-status').action(() => {
    return 'AgentRunDB: Plugin active and healthy!';
  });
}

Overview

DeepSeek Harness is powered by the Cordis micro-kernel architecture where every tool, agent skill, and service is a pluggable module.

Publication Steps

  1. Create a repository on GitHub with package.json.
  2. Add the GitHub topic dsh-plugin to your repository settings.
  3. The AgentRunDB ecosystem crawler will automatically index and track your plugin!

相关: deepseek-harness × deepseek 兼容性