mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Machine-produced by `pnpm run rescope-vendor --apply` plus the regeneration it prints: `pnpm install` for the lockfile, `pnpm run gen-third-party-notices`, `verify-translation-pairing --write` for the touched bilingual pairs, `gen-doc-graphs`, and one typert snapshot whose ids embed character offsets. `pnpm run rescope-vendor --check` verifies the result. Renames nine vendored packages (cordis, cosmokit, schemastery and the six @cordisjs plugins) and every reference that resolves them: manifest names and dependency keys, module specifiers including declare-module merges, cordis.yml plugin names, tsconfig paths, every Markdown fence, and `docs/` prose. Directory names, upstream versions, and dependency ranges are unchanged, so vendor/README.md still reads as an upstream snapshot; its manifest table gains an upstream-name column so THIRD_PARTY_NOTICES keeps MIT attribution pointed at each fork's origin. The tutorial tier follows the rename end to end: its yaml fences named plugins the Loader can no longer resolve, its `ts ignore-check` fences disagreed with the compiled fences beside them, and its prose quoted both. The contracts that told readers to keep upstream names — the root convention and the vendoring cookbook's tree comment and manifest invariant — now say to rescope instead. Two rules read `@deepseek-ai/` as "another workspace plugin": the client bundle purity gate now names the vendored libraries a browser bundle inlines, and the files where a bare `cordis` is an agent-preset id keep that product data.
107 lines
3.1 KiB
Markdown
107 lines
3.1 KiB
Markdown
# Plugin configuration
|
|
|
|
English | [中文](config.zh.md)
|
|
|
|
Accept configuration supplied through `cordis.yml`.
|
|
|
|
## Define the Config type
|
|
|
|
Export a `Config` type and a same-named Schemastery schema. Put defaults directly on the schema fields:
|
|
|
|
```ts
|
|
import type { Context } from '@deepseek-ai/cordis'
|
|
import Schema from '@deepseek-ai/schemastery'
|
|
|
|
export const name = 'my-plugin'
|
|
|
|
export interface Config {
|
|
greeting: string
|
|
maxRetries: number
|
|
verbose?: boolean
|
|
}
|
|
|
|
export const Config: Schema<Config> = Schema.object({
|
|
greeting: Schema.string().default('Hello'),
|
|
maxRetries: Schema.number().default(3),
|
|
verbose: Schema.boolean().default(false),
|
|
})
|
|
|
|
export function apply(ctx: Context, config: Config) {
|
|
console.log(config.greeting) // User value or schema default.
|
|
}
|
|
```
|
|
|
|
Add the configuration to the inserted local plugin row in `scratch-plugin/cordis.yml`:
|
|
|
|
```yaml
|
|
- insert:
|
|
- id: hello
|
|
name: './src/my-plugin.ts'
|
|
config:
|
|
greeting: 'Hi there'
|
|
maxRetries: 5
|
|
```
|
|
|
|
When loading the plugin, Cordis uses the exported schema to validate configuration and fill defaults. Do not export a plain object as `Config`; it does not implement the Standard Schema interface required by Cordis.
|
|
|
|
## Schema validation
|
|
|
|
Use Schemastery to express stricter validation:
|
|
|
|
```ts
|
|
import type { Context } from '@deepseek-ai/cordis'
|
|
import Schema from '@deepseek-ai/schemastery'
|
|
|
|
export const name = 'validated-plugin'
|
|
|
|
export interface Config {
|
|
apiKey: string
|
|
timeout: number
|
|
mode: 'fast' | 'accurate'
|
|
}
|
|
|
|
export const Config = Schema.object({
|
|
apiKey: Schema.string().required(),
|
|
timeout: Schema.number().default(30000),
|
|
mode: Schema.union(['fast', 'accurate']).default('fast'),
|
|
})
|
|
|
|
export function apply(ctx: Context, config: Config) {
|
|
// config is validated and type-safe.
|
|
}
|
|
```
|
|
|
|
The schema runs while the plugin loads. Invalid configuration fails the load with an actionable error.
|
|
|
|
## Design principles
|
|
|
|
### Do not hardcode tunable values
|
|
|
|
Harness requires **anything that two deployments may want to set differently to be a configuration field**.
|
|
|
|
```ts
|
|
// Wrong: hardcoded timeout.
|
|
const TIMEOUT = 30000
|
|
|
|
// Correct: configurable.
|
|
export interface Config {
|
|
timeoutMs: number // Defaults to 30000.
|
|
}
|
|
```
|
|
|
|
The test is whether `cordis.yml` can change the value without a code edit.
|
|
|
|
### Fail loudly on invalid configuration
|
|
|
|
Express self-contained constraints in the schema so invalid configuration fails while the plugin loads. References to services or registered resources require dependency injection; the [services tutorial](../framework/service.md) introduces that contract.
|
|
|
|
## Work with HMR
|
|
|
|
A configuration edit hot-replaces the plugin: the framework unloads the old instance and loads a new one. Because registrations are effects and clean themselves up, replacement does not retain the old instance's registrations.
|
|
|
|
## Next steps
|
|
|
|
- [Package and install a plugin](./publish.md) — ship the plugin as an installable package
|
|
- [Plugins and lifecycle](../framework/) — understand the full plugin lifecycle
|
|
- [Services and dependencies](../framework/service.md) — provide a service to other plugins
|