Files
deepseek-harness/docs/user/develop/practice/index.md
T

156 lines
5.2 KiB
Markdown
Raw Normal View History

# Three-role capability design
2026-07-09 16:07:58 +08:00
English | [中文](index.zh.md)
2026-07-09 16:07:58 +08:00
This page has two parts: a concept reference for the three-role capability pattern, followed by an advanced tutorial that builds one capability. Complete the [basic plugin path](../basic/) and [services tutorial](../framework/service.md) first.
## Concept reference
When a capability is general enough to need replaceable providers, such as Bash execution, Harness separates three roles: a **Service Definition**, a **Service provider**, and a **Consumer**. Put the roles in separate packages when they need to evolve or be replaced independently; a package may otherwise own more than one role. The complete capability is its seam. No individual role is a seam.
2026-07-09 16:07:58 +08:00
## Bash example
2026-07-09 16:07:58 +08:00
The Bash execution capability consists of:
2026-08-13 00:36:22 +08:00
- **Service Definition** (`dsh-shell`) — defines the Cordis service and Bash request and result types
2026-08-09 15:27:21 +08:00
- **Service provider** (`dsh-bash-local`) — executes commands on the local machine
- **Consumer** (`dsh-tool-bash`) — exposes the capability as a model-callable tool
2026-07-09 16:07:58 +08:00
```
┌─────────────┐ ┌──────────────────┐ ┌──────────────┐
2026-08-13 00:36:22 +08:00
│ dsh-shell │────▶│ dsh-bash-local │ │ dsh-tool-bash│
│(definition) │ │ (provider) │ │(consumer/tool)│
2026-07-09 16:07:58 +08:00
└─────────────┘ └──────────────────┘ └──────────────┘
▲ │
└────────────────────────────────────────────┘
inject: ['bash']
```
## Benefits of the split
2026-07-09 16:07:58 +08:00
### Replace providers
2026-07-09 16:07:58 +08:00
One Service Definition can have multiple providers selected through `cordis.yml`:
2026-07-09 16:07:58 +08:00
```yaml
# Local execution
2026-07-09 16:07:58 +08:00
- name: '@deepseek-ai/dsh-bash-local'
# Replace this row with another package that provides the same service.
2026-07-09 16:07:58 +08:00
```
The Service Definition and tool remain unchanged while the provider changes.
2026-07-09 16:07:58 +08:00
### Evolve independently
2026-07-09 16:07:58 +08:00
2026-08-09 15:27:21 +08:00
- The Service Definition changes rarely after callers depend on its contract.
- Service providers can improve performance and security independently.
- Consumers can change how they present the capability to the model.
2026-07-09 16:07:58 +08:00
### Decouple dependencies
2026-07-09 16:07:58 +08:00
- The Service provider depends on the Service Definition.
- The Consumer depends on the Service Definition.
- The Service provider and Consumer **do not depend on each other**.
2026-07-09 16:07:58 +08:00
The [capability-seam reference](../../../capability-seams.md) owns the current built-in families and package links.
2026-07-09 16:07:58 +08:00
## Tutorial: develop a three-role capability
2026-07-09 16:07:58 +08:00
### Step 1: write the Service Definition
2026-07-09 16:07:58 +08:00
```ts ignore-check
2026-07-09 16:07:58 +08:00
// packages/my-cap/my-cap/src/index.ts
import { Service, type Context } from '@deepseek-ai/cordis'
2026-07-09 16:07:58 +08:00
declare module '@deepseek-ai/cordis' {
2026-07-09 16:07:58 +08:00
interface Context {
myCap: MyCapService
}
}
export abstract class MyCapService extends Service {
constructor(ctx: Context) {
super(ctx, 'myCap')
}
/** Execute the capability. */
2026-07-09 16:07:58 +08:00
abstract execute(request: MyCapRequest): Promise<MyCapResult>
}
export interface MyCapRequest {
input: string
}
export interface MyCapResult {
output: string
}
```
### Step 2: write a Service provider
2026-07-09 16:07:58 +08:00
```ts ignore-check
2026-07-09 16:07:58 +08:00
// packages/my-cap/my-cap-local/src/index.ts
import type { Context } from '@deepseek-ai/cordis'
2026-07-09 16:07:58 +08:00
import { MyCapService, type MyCapRequest, type MyCapResult } from '@deepseek-ai/dsh-my-cap'
class MyCapLocal extends MyCapService {
async execute(request: MyCapRequest): Promise<MyCapResult> {
// Local provider behavior.
2026-07-09 16:07:58 +08:00
return { output: request.input.toUpperCase() }
}
}
export const name = 'my-cap-local'
export function apply(ctx: Context) {
ctx.plugin(MyCapLocal)
}
```
### Step 3: write a consumer
2026-07-09 16:07:58 +08:00
```ts ignore-check
2026-07-09 16:07:58 +08:00
// packages/my-cap/tool-my-cap/src/index.ts
import type { Context } from '@deepseek-ai/cordis'
2026-07-09 16:07:58 +08:00
import { defineTool } from '@deepseek-ai/dsh-tools'
export const name = 'tool-my-cap'
export const inject = ['tools', 'myCap']
export function apply(ctx: Context) {
ctx.tools.register(defineTool({
name: 'my_cap',
description: 'Execute my capability.',
parameters: {
input: { type: 'string', required: true },
},
2026-07-21 03:08:35 +08:00
output: {
schema: { type: 'string' },
render: (_args, value) => [{ type: 'text', text: value }],
},
2026-07-09 16:07:58 +08:00
async execute(args) {
const result = await ctx.myCap.execute({ input: args.input })
2026-07-21 03:08:35 +08:00
return result.output
2026-07-09 16:07:58 +08:00
},
}))
}
```
### Compose them in cordis.yml
2026-07-09 16:07:58 +08:00
```yaml
- name: '@deepseek-ai/dsh-my-cap-local'
- name: '@deepseek-ai/dsh-tool-my-cap'
```
## Design points
2026-07-09 16:07:58 +08:00
- **Do not split preemptively** — use separate packages only when the roles need to evolve independently. A simple tool plugin does not.
- **The Service Definition owns Request/Result types** — Service providers and Consumers depend only on the Service Definition package.
- **Explicit > implicit** — resolve defaults in an explicit `resolve(request): Spec` step rather than hiding `?? default` expressions inside `run()`.
2026-07-09 16:07:58 +08:00
## Next steps
2026-07-09 16:07:58 +08:00
- [LLM adapter](./llm-adapter.md) — implement an LLM provider