# Conflicts: # docs/config-catalog.md # docs/cordis-catalog/services.md # docs/core-data-structures/skills.i18n.yaml # docs/core-data-structures/skills.md # docs/core-data-structures/skills.zh.md # packages/host/apiproxy/README.i18n.yaml # packages/skill/skill-local/README.i18n.yaml # packages/skill/skill/README.i18n.yaml # packages/skill/skill/README.md # packages/skill/skill/README.zh.md # packages/skill/skill/src/index.ts # packages/skill/skill/tests/skill.spec.ts # packages/skill/tool-skill/README.i18n.yaml # packages/skill/tool-skill/src/index.ts # packages/ui/tui/README.i18n.yaml # packages/ui/tui/README.md # packages/ui/tui/README.zh.md # packages/ui/tui/src/index.ts # packages/ui/tui/tests/tui.spec.ts
219 lines
15 KiB
Markdown
219 lines
15 KiB
Markdown
# Skills
|
||
|
||
[English](skills.md) | 中文
|
||
|
||
[skill(技能)能力族](../../packages/skill)拆分为三个包(package):注册表([dsh-skill](../../packages/skill/skill),`ctx.skills`)合并各提供方的目录;本地提供方([dsh-skill-local](../../packages/skill/skill-local))扫描并监视项目/自定义/用户目录;消费方([dsh-tool-skill](../../packages/skill/tool-skill))拥有初始目录和替换目录,以及面向模型的 `skill` 工具。skill 是可选的指令而非会话事件,因此其词汇定义在此处而非 [core.md](core.md)。
|
||
|
||
源码:[`packages/skill/skill/src/index.ts`](../../packages/skill/skill/src/index.ts)、[`packages/skill/skill-local/src/index.ts`](../../packages/skill/skill-local/src/index.ts) 与 [`packages/skill/tool-skill/src/index.ts`](../../packages/skill/tool-skill/src/index.ts)。
|
||
|
||
## 提供方注册表
|
||
|
||
`ctx.skills` 组合本地、内嵌、远程或其他提供方。注册是同步的;远程初始化与发现属于 `list()` 的 await 阶段。提供方对象、选项与候选项以只读方式借用,语义字段会被校验。
|
||
|
||
重名按 rank、提供方顺序、本地顺序依次解决;摘要按名称排序。`list()` 拒绝时会记录日志并从不完整观测中省略;显式的不完整观测会提供可用候选项,但不会使结果变得可缓存;格式错误的候选项快速失败。每个提供方工厂都会接收一项注册作用域内的控制能力;仅当该精确注册仍处于活动状态时,其 `invalidate()` 才会清除已完成目录;注册失败或释放时,其信号会中止。若提供方代次在发现进行期间发生变化,该发现会重试一次;若再次变化,则返回最新候选项,并将结果标为不完整且不予缓存。提供方和运行时变更会发出不带过滤条件的 `skills/change` 失效事件;该事件不携带 diff,因此消费方会使用自身的查找选项重新获取 `snapshot()`。
|
||
|
||
`SkillProvider.list()` 返回的数组是完整发现的简写形式。`SkillProviderObservation` 允许提供方公开仍可直接加载的候选项,同时报告该观测不具权威性。
|
||
|
||
```ts type-equiv
|
||
/** Provider candidates plus whether the current discovery is authoritative. */
|
||
interface SkillProviderObservation {
|
||
/** Candidates available from the current provider discovery. */
|
||
readonly candidates: readonly SkillCandidate[]
|
||
/** Whether discovery completed and these candidates may be cached. */
|
||
readonly complete: boolean
|
||
}
|
||
```
|
||
|
||
```ts type-equiv
|
||
/** Provider interface for one source of skills, such as local directories or a remote registry. */
|
||
interface SkillProvider {
|
||
/** Unique provider name in the `ctx.skills` registry. */
|
||
readonly name: string
|
||
/**
|
||
* List available skill candidates for the current lookup context. Provider
|
||
* plugins register synchronously during `apply()`; remote initialization,
|
||
* authentication, and discovery are awaited inside this method. Implementations
|
||
* should settle promptly when `options.signal` aborts.
|
||
* @param options - lookup options; `cwd` selects workspace-sensitive skills and `signal` cancels work.
|
||
* @returns provider candidates as a complete-array shorthand, or an explicit
|
||
* observation when usable candidates came from incomplete discovery.
|
||
*/
|
||
readonly list: (options: SkillLookupOptions) => Promise<readonly SkillCandidate[] | SkillProviderObservation>
|
||
/**
|
||
* Load a complete skill body for a previously listed candidate.
|
||
* @param candidate - the winning candidate originally returned by this provider.
|
||
* @param options - lookup options; `cwd` selects workspace-sensitive skills and `signal` cancels work.
|
||
* @returns the full skill body, or `undefined` if it is no longer loadable.
|
||
*/
|
||
readonly get: (candidate: SkillCandidate, options: SkillLookupOptions) => Promise<SkillDefinition | undefined>
|
||
}
|
||
```
|
||
|
||
```ts type-equiv
|
||
/** Registration-scoped lifecycle and invalidation capability borrowed by one provider. */
|
||
interface SkillProviderControl {
|
||
/** Aborts if registration fails or when the exact provider registration is disposed. */
|
||
readonly signal: AbortSignal
|
||
/** Invalidate completed catalogs and notify consumers only while the exact registration remains active. */
|
||
readonly invalidate: () => void
|
||
}
|
||
```
|
||
|
||
## 本地发现优先级
|
||
|
||
内置的本地提供方按 rank 顺序扫描各根目录:
|
||
|
||
| Rank | Source | Root |
|
||
|---|---|---|
|
||
| 100 | `project-dsh` | `<projectRoot>/.dsh/skills` |
|
||
| 200 | `project-agents` | `<projectRoot>/.agents/skills` |
|
||
| 300 | `custom` | `Config.customSkillDirs` |
|
||
| 400 | `user-dsh` | `<dshHome>/skills` |
|
||
| 500 | `user-agents` | `<agentsHome>/skills` |
|
||
| 600 | `bundled` | 配置了 `Config.bundledSkillDir` 时使用该目录 |
|
||
|
||
项目根目录为包含 `.git` 的最近祖先目录;找不到时使用当前 cwd。当 `ctx.fs` 可用时,git-root 向上查找通过文件系统服务探测 `.git`,使远程或沙箱工作区不会回退到宿主文件系统边界。用户 DSH 根目录会跳过其 `.system` 子目录。本地提供方不附带内置系统 skill;部署方通过另一个提供方提供内置 skill。
|
||
|
||
Chokidar 会监视现有根目录中直属 bundle 和平铺条目的添加与移除,以及直属 skill 条目的变更。缺失的根目录会从最近的现有祖先开始,逐个跟踪缺失路径段,直至 Chokidar 可以附加。bundle 下的资源文件变更不属于目录变更。面向模型的 `write` 和 `edit` 观测会在目标路径相关时同步使提供方目录失效,而宿主 watcher 覆盖 IDE、Git、shell 和外部进程产生的变更。watcher 失败会使当前观测不完整,但不会在直接加载时隐藏可读候选项;项目作用域 watcher 使用按配置设限的 LRU。
|
||
|
||
## Skill 身份
|
||
|
||
skill 名称为 kebab-case(`^[a-z0-9]+(?:-[a-z0-9]+)*$`)。本地提供方接受目录包(`<name>/SKILL.md`)和扁平 Markdown 文件(`<name>.md`)。嵌套递归的 `**/SKILL.md` 发现有意不在 v1 范围内。
|
||
|
||
```ts type-equiv
|
||
/** Origin bucket for a skill contribution. The value is prompt-visible metadata, not precedence by itself. */
|
||
type SkillSource = 'project-dsh' | 'project-agents' | 'runtime' | 'user-dsh' | 'user-agents' | 'custom' | 'bundled' | (string & {})
|
||
```
|
||
|
||
## 摘要、候选项与完整定义
|
||
|
||
`SkillSummary` 是注册表中与调用策略无关的摘要形状。消费方自行选择渲染哪些条目和字段;模型会话目录仅使用模型可调用 skill 的 `name` 和 `description`,从不使用正文或绝对文件路径。`SkillInvocationPolicy` 将两个独立调用控制规范化为正向布尔值,且每个已解析的摘要、候选项和定义都携带该策略,而不会把任意 frontmatter 纳入领域模型。
|
||
|
||
```ts type-equiv
|
||
/** Invocation controls shared by skill discovery consumers. */
|
||
interface SkillInvocationPolicy {
|
||
/** Whether model-facing catalogs and loaders include this skill. */
|
||
readonly modelInvocable: boolean
|
||
/** Whether human-facing command catalogs and loaders include this skill. */
|
||
readonly userInvocable: boolean
|
||
}
|
||
```
|
||
|
||
```ts type-equiv
|
||
/** Invocation-neutral skill metadata returned by `ctx.skills.list()`. */
|
||
interface SkillSummary {
|
||
/** Kebab-case identifier used to address the skill. */
|
||
readonly name: string
|
||
/** Short routing description shown by discovery consumers. */
|
||
readonly description: string
|
||
/** Optional extra routing guidance. */
|
||
readonly whenToUse?: string
|
||
/** Resolved model and user invocation controls. */
|
||
readonly invocation: SkillInvocationPolicy
|
||
/** Discovery source that produced this winning skill. */
|
||
readonly source: SkillSource
|
||
/** Provider that owns this skill body. */
|
||
readonly provider: string
|
||
/** Provider-specific base for relative resources. */
|
||
readonly resourceBase?: SkillResourceBase
|
||
}
|
||
```
|
||
|
||
`ctx.skills.list()` 保留全部四种策略组合。`isModelInvocable(skill)` 和 `isUserInvocable(skill)` 分别读取对应的必填字段。仅供模型调用的 skill 设置 `{ modelInvocable: true, userInvocable: false }`,仅供用户调用的 skill 设置 `{ modelInvocable: false, userInvocable: true }`,两个字段均设为 `false` 后,该 skill 只能由受信的 `ctx.skills.get()` 调用方获取。本地提供方读取名称完全匹配的 kebab-case frontmatter 键 `disable-model-invocation` 和 `user-invocable`,将省略的字段默认为 `true`,并为每个解析出的 skill 生成这个规范化策略。
|
||
|
||
`SkillCatalogSnapshot` 用于区分已确定的不存在与提供方的瞬时失败或发现期间持续变化的目录。`skills` 包含该次观测中收集、排序且与调用策略无关的摘要;只有每个已注册提供方都在没有并发目录修订时完成发现,`complete` 才为 true。不完整快照不会缓存,因此每个消费方可以保留上一份经过自身过滤的可用目录并重试。
|
||
|
||
```ts type-equiv
|
||
/** One catalog observation plus whether discovery completed within a stable catalog revision. */
|
||
interface SkillCatalogSnapshot {
|
||
/** Sorted invocation-neutral summaries collected in this observation. */
|
||
readonly skills: SkillSummary[]
|
||
/** Whether every registered provider completed without a concurrent catalog revision. */
|
||
readonly complete: boolean
|
||
}
|
||
```
|
||
|
||
`SkillCandidate` 是提供方到注册表的形状。`locator` 是提供方的不透明状态;注册表只存储它并在调用获胜提供方的 `get()` 时传回。
|
||
|
||
```ts type-equiv
|
||
/** Provider catalog entry used by the registry to merge and later load skills. */
|
||
interface SkillCandidate extends SkillSummary {
|
||
/** Lower ranks win duplicate skill names before provider registration order is considered. */
|
||
readonly rank: number
|
||
/** Opaque provider-owned handle passed back to `provider.get()`. */
|
||
readonly locator: unknown
|
||
/** Absolute file path when the provider has one. */
|
||
readonly path?: string
|
||
/** Parsed optional metadata object from provider-specific skill frontmatter. */
|
||
readonly metadata?: Readonly<Record<string, unknown>>
|
||
}
|
||
```
|
||
|
||
`SkillDefinition` 是 `ctx.skills.get()` 返回的完整解析结果,供 `skill` 工具使用。`resourceBase` 告知工具如何为本地、URL 或提供方管理的 skill 渲染相对资源引导。
|
||
|
||
```ts type-equiv
|
||
/** Optional provider-specific base used by loaded skill bodies to resolve relative resources. */
|
||
type SkillResourceBase =
|
||
| { readonly kind: 'directory'; readonly path: string }
|
||
| { readonly kind: 'url'; readonly url: string }
|
||
| { readonly kind: 'opaque'; readonly description: string }
|
||
```
|
||
|
||
```ts type-equiv
|
||
/** Complete parsed skill definition, including the body loaded by `ctx.skills.get()`. */
|
||
interface SkillDefinition extends SkillSummary {
|
||
/** Markdown instruction body after any provider-specific metadata removal. */
|
||
readonly content: string
|
||
/** Absolute file path when the skill came from disk. */
|
||
readonly path?: string
|
||
/** Parsed optional metadata object from frontmatter. */
|
||
readonly metadata?: Readonly<Record<string, unknown>>
|
||
}
|
||
```
|
||
|
||
运行时 skill 输入可以省略调用控制和提供方标签。注册表会一次性补全这两项默认值,随后使用与提供方相同的完整定义形状和先到先得收集顺序。返回的 disposer 移除该贡献并使发现缓存失效。
|
||
|
||
```ts type-equiv
|
||
/** Runtime skill contribution accepted by `ctx.skills.register()`. */
|
||
type SkillRegistration = Omit<SkillDefinition, 'invocation' | 'provider'> & {
|
||
/** Invocation controls; omission permits both model and user surfaces. */
|
||
readonly invocation?: SkillInvocationPolicy
|
||
/** Provider label; omission uses the registry-owned runtime provider. */
|
||
readonly provider?: string
|
||
}
|
||
```
|
||
|
||
## 查找与配置
|
||
|
||
skill 查找对 cwd 敏感,因为提供方可能暴露工作区本地的 skill;可选的 signal 为调用方取消提供方的工作。提供方接收与缓存标识和加载相同的只读选项对象。取消在目录选择前后(包括缓存命中时)都会检查,并与发现和完整定义加载竞争。如果找不到 git root,本地提供方将所提供的 cwd 本身视为项目根目录。
|
||
|
||
注册表不缓存完整定义。每次调用 `get()` 都会携所选候选项调用胜出提供方,因此本地提供方会重新读取当前正文。名称与该候选项不再匹配的定义会被拒绝,并使该提供方实例失效以便重新发现。
|
||
|
||
```ts type-equiv
|
||
/** Caller context used for cwd-sensitive and abortable provider work. */
|
||
interface SkillLookupOptions {
|
||
/** Workspace selector for the current lookup. */
|
||
readonly cwd?: string | undefined
|
||
/** Abort discovery or loading work for the current caller. */
|
||
readonly signal?: AbortSignal | undefined
|
||
}
|
||
```
|
||
|
||
注册表只拥有其发现缓存上限。本地提供方拥有文件系统根目录(`dshHome`、`agentsHome`、`customSkillDirs`,以及可选的 `bundledSkillDir`/`DSH_BUNDLED_SKILL_DIR`),以及 watcher 启用、轮询、稳定性、符号链接和项目容量控制。消费方拥有其目录描述上限。确切的默认值和校验规则见自动生成的[插件配置目录](../config-catalog.md)。
|
||
|
||
```ts type-equiv
|
||
/** Skill registry configuration. */
|
||
interface Config {
|
||
/** Maximum number of completed cwd/provider catalogs kept in memory. */
|
||
readonly collectCacheMaxEntries?: number
|
||
}
|
||
```
|
||
|
||
## 会话目录与工具契约
|
||
|
||
`dsh-tool-skill` 在存活会话中第一个观察到非空完整视图的 `agent/step` 注入初始的持久 user-role `<system-reminder>`。目录只包含已排序的 skill `name` 和规范化、经 XML 转义的 `description`;不包含正文、路径、来源、提供方或路由提示。发现通过 `SkillLookupOptions` 转发该步骤的 abort signal。`catalogDescriptionMaxLength` 是消费方用于 description 上限的配置,默认值为 `500`,整数最小值为 `3`。
|
||
|
||
在后续每个模型步骤之前,消费方都会应用精确的工具可见性,并对完整快照中 `<available_skills>` 标签之间精确渲染的条目计算 digest。它以该插件所发布、最新一条可识别且仍可见的目录消息中的相同条目作为比较基线。digest 发生变化时,会通过 `agent.inject()` 追加一条持久的完整目录替换;删除所有 skill 时会追加一条显式的空替换。不完整快照会保留上一份可用模型视图。如果压缩(compaction)隐藏了所有历史目录消息,下一份完整快照会重新建立当前目录;如果视图为空且从未发布目录,则不发送任何内容。这些目录消息属于会话历史,而非 World State。
|
||
|
||
面向模型的 `skill({ name })` 工具校验 kebab-case 名称,在与调用策略无关的目录中查找摘要,并在加载前通过 `isModelInvocable` 拒绝无权访问的 skill;随后它为调用方 agent 的 cwd 重新读取完整定义,并在返回内容前再次检查策略。该工具将未解析的 skill 报告为 unknown 或 no longer available,并返回包含 `<skill_content name="...">`、`<skill_resources>` 和 `<skill_instructions>` 的工具结果。`resourceBase` 仅按需解析显式引用的脚本、参考资料和资产;加载结果不枚举 skill 目录。因此,仅修改正文会改变后续工具调用,而不会生成目录消息或改写先前工具结果。
|