2026-07-15 18:08:28 +08:00
# Build a tool
English | [中文 ](tool.zh.md )
2026-08-05 12:46:38 +08:00
This tutorial adds a `greet` tool to the Web UI. Complete [Your first plugin ](./ ) first and keep its `scratch-plugin` directory.
2026-07-15 18:08:28 +08:00
2026-08-05 12:46:38 +08:00
## Create the tool plugin
Replace `scratch-plugin/src/my-plugin.ts` with:
2026-07-15 18:08:28 +08:00
``` ts
import type { Context } from 'cordis'
import { defineTool } from '@deepseek-ai/dsh-tools'
2026-08-05 12:46:38 +08:00
export const name = 'greet-tool'
2026-07-15 18:08:28 +08:00
export const inject = [ 'tools' ]
export function apply ( ctx : Context ) {
ctx . tools . register ( defineTool ( {
name : 'greet' ,
description : 'Greet someone by name.' ,
parameters : {
name : { type : 'string' , required : true , description : 'The name to greet' } ,
} ,
2026-07-21 03:08:35 +08:00
output : {
schema : { type : 'string' } ,
render : ( _args , value ) = > [ { type : 'text' , text : value } ] ,
} ,
2026-07-15 18:08:28 +08:00
async execute ( args ) {
2026-07-21 03:08:35 +08:00
return ` Hello, ${ args . name } ! `
2026-07-15 18:08:28 +08:00
} ,
} ) )
}
```
2026-08-05 12:46:38 +08:00
`inject` makes Cordis wait for the tool registry. `defineTool` infers and validates `args` from `parameters` ; `execute` returns the canonical value declared by `output.schema` , and `output.render` converts that value to model-facing content.
2026-07-15 18:08:28 +08:00
2026-08-05 12:46:38 +08:00
## Run and call the tool
2026-07-15 18:08:28 +08:00
2026-08-05 12:46:38 +08:00
Restart the development command if it is not running:
2026-07-15 18:08:28 +08:00
2026-08-05 12:46:38 +08:00
``` sh
2026-08-06 04:40:40 +08:00
pnpm run dsh web --patch ./scratch-plugin/cordis.yml
2026-07-15 18:08:28 +08:00
```
2026-08-05 12:46:38 +08:00
Open `http://127.0.0.1:3080` and ask: `Use the greet tool to greet Ada.` The model can call `greet` and receives `Hello, Ada!` as the tool result.
2026-07-15 18:08:28 +08:00
## Next steps
2026-08-05 12:46:38 +08:00
- [Plugin configuration ](./config.md ) — make the greeting configurable.
- [Tool authoring reference ](../../../cookbook/adding-a-tool.md ) — look up nested schemas, canonical values, background work, policy hooks, Code Mode, and UI cards.
- [Capability layering ](../practice/ ) — split a replaceable capability into interface, implementation, and consumer packages.