Skills
提供方注册表
Section titled “提供方注册表”ctx.skills 组合本地、内嵌、远程或其他提供方。注册是同步的;远程初始化与发现属于 list() 的 await 阶段。提供方对象、选项与候选项以只读方式借用,语义字段会被校验。
注册表采用宿主 + 按 scope 的分层结构,即工具注册表在 dsh-scope 之上确立的形态:注册会落入调用方上下文 scope 对应的层——宿主行与 repository 插件落入全局层,由 agent(智能体) preset 常驻组合挂载的插件落入该 preset 的层——提供方名称在每层内唯一,而非进程级唯一。读取时将全局层与观察 scope 的链合并:最近层的条目直接赢得重名 skill,下文的 rank 顺序只在单层内裁决重名。发现缓存以解析后的 scope 链为键,因此重设 scope 父级(空会话重组)无需注册表变更即可被下一次读取看到。
在单层内,重名项依次按 rank、提供方顺序和本地顺序确定优先级;摘要按名称排序。提供方的 list() 被拒绝时,系统会记录日志,并从不完整观测中省略该提供方的结果;显式的不完整观测会提供可用候选项,但不会使结果变得可缓存;格式错误的候选项快速失败。每个提供方工厂都会接收一项注册作用域内的控制能力;仅当该精确注册仍处于活动状态时,其 invalidate() 才会清除已完成目录;注册失败或 dispose(资源释放)时,其信号会中止。若提供方代次在发现进行期间发生变化,该发现会重试一次;若再次变化,则返回最新候选项,并将结果标为不完整且不予缓存。提供方和运行时变更会发出不带过滤条件的 skills/change 失效事件;该事件不携带 diff,因此消费方会使用自身的查找选项重新获取 snapshot()。
SkillProvider.list() 返回的数组是完整发现的简写形式。SkillProviderObservation 允许提供方公开仍可直接加载的候选项,同时报告该观测不具权威性。
/** 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}/** 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>}/** 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}本地发现优先级
Section titled “本地发现优先级”随附的本地提供方按 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;部署方通过已配置的 bundled 根目录或专用提供方提供随包 skill。
dsh-skill-badge 在 BUNDLED_SKILL_RANK 注册一个不可变的 bundled 候选项,并通过 resourceBase 公开其随包资产目录。交付的 CLI(命令行界面)将该插件声明为禁用,因此启用其组合配置行即为显式选择加入。
Chokidar 会监视现有根目录中直属 bundle 和平铺条目的添加与移除,以及直属 skill 条目的变更。缺失的根目录会从最近的现有祖先开始,逐个跟踪缺失路径段,直至 Chokidar 可以附加。bundle 下的资源文件变更不属于目录变更。面向模型的 write 和 edit 观测会在目标路径与目录相关时同步使提供方目录失效,而宿主 watcher 覆盖 IDE、Git、shell 和外部进程产生的变更。watcher 失败会使当前观测不完整,但不会在直接加载时隐藏可读候选项;项目作用域 watcher 使用按配置设限的 LRU。
skill 身份
Section titled “skill 身份”skill 名称为 kebab-case(^[a-z0-9]+(?:-[a-z0-9]+)*$)。本地提供方接受目录包(<name>/SKILL.md)和扁平 Markdown 文件(<name>.md)。嵌套递归的 **/SKILL.md 发现不受支持。
/** 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 & {})摘要、候选项与完整定义
Section titled “摘要、候选项与完整定义”SkillSummary 是注册表中与调用策略无关的摘要形状。消费方自行选择渲染哪些条目和字段;模型会话目录仅使用模型可调用 skill 的 name 和 description,从不使用正文或绝对文件路径。SkillInvocationPolicy 将两个独立调用控制规范化为正向布尔值,且每个已解析的摘要、候选项和定义都携带该策略,而不会把任意 frontmatter 纳入领域模型。
/** 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}/** 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。不完整快照不会缓存,因此每个消费方可以保留上一份经过自身过滤的可用目录并重试。
/** 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() 时传回。
/** 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 渲染相对资源引导。
/** 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 }/** 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 移除该贡献并使发现缓存失效。
/** 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 为调用方取消提供方的工作。注册表读取还通过 SkillViewOptions 携带观察 scope——消费方传入调用中的 agent,agent 本身就是自己的 scope key;注册表消费 scope 做层选择,提供方只从同一个借用的选项对象中读取其 SkillLookupOptions 约定。取消在目录选择前后(包括缓存命中时)都会检查,并与发现和完整定义加载竞争。如果找不到 git root,本地提供方将所提供的 cwd 本身视为项目根目录。
注册表不缓存完整定义。每次调用 get() 都会携所选候选项调用胜出提供方,因此本地提供方会重新读取当前正文。名称与该候选项不再匹配的定义会被拒绝,并使该提供方实例失效以便重新发现。
/** 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}/** * Registry read options: provider lookup context plus the viewing scope. * The registry consumes `scope` to select layers; providers receive the same * borrowed options object and read only their {@link SkillLookupOptions} * contract from it. */interface SkillViewOptions extends SkillLookupOptions { /** Viewing scope (the calling agent); omitted reads the global layer alone. */ readonly scope?: ScopeKey | undefined}注册表只拥有其发现缓存上限。本地提供方拥有文件系统根目录(dshHome、agentsHome、customSkillDirs,以及可选的 bundledSkillDir/DSH_BUNDLED_SKILL_DIR),以及 watcher 启用、轮询、稳定性、符号链接和项目容量控制。消费方拥有其目录描述上限。确切的默认值和校验规则见自动生成的插件配置目录。
/** Skill registry configuration. */interface Config { /** Maximum number of completed cwd/provider catalogs kept in memory. */ readonly collectCacheMaxEntries?: number}会话目录与工具约定
Section titled “会话目录与工具约定”dsh-tool-skill 在存活会话中第一个观察到非空完整视图的 agent/pre-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 报告为未知或已不可用,并返回包含 <skill_content name="...">、<skill_resources> 和 <skill_instructions> 的工具结果。resourceBase 仅按需解析显式引用的脚本、参考资料和资产;加载结果不枚举 skill 目录。因此,仅修改正文会改变后续工具调用,而不会生成目录消息或改写先前工具结果。
Cordis API
Section titled “Cordis API”Generated from source by scripts/gen-cordis-catalog.ts (verified fresh by pnpm run verify-cordis-catalog in doc-sync; regenerate with pnpm run gen-cordis-catalog) — this section is byte-identical in both language sides of the page. Signature blocks use a ts cordis-catalog fence and keep the original source JSDoc; dispatch modes are defined in the primer, and the framework-inherited ctx API lives in cordis-api/inherited.md.
ctx.skills — SkillRegistry
Section titled “ctx.skills — SkillRegistry”Layered registry of skill providers, the host+per-scope shape the tools registry established. A registration files into the layer of its calling context’s scope (scopeOf): host rows and repository plugins land in the global layer, while a plugin mounted by an agent preset’s standing composition lands in that preset’s layer. A read merges the global layer with the viewing scope’s chain — the nearest layer’s entry wins a duplicate name outright, and the rank order decides duplicates only within one layer. It exposes sorted invocation-neutral summaries and loads full skill bodies on demand.
/** * Register a borrowed same-process provider synchronously during plugin * apply, into the calling context's layer: a scoped context (an agent * preset's standing mount) registers for that scope alone, an unscoped * context registers globally. Duplicate names within one layer and reserved * names throw; remote initialization belongs in `list()`. Fiber disposal * unregisters the provider and invalidates catalog caches. * @param create - synchronous factory receiving this registration's lifecycle and invalidation control. * @returns the exact Cordis effect disposer that unregisters this provider; * composite effects may yield it directly to preserve teardown ordering. */registerProvider(create: (control: SkillProviderControl) => SkillProvider): () => void
/** * Register a borrowed readonly runtime skill into the calling context's * layer. Project entries outrank runtime entries, which outrank user * entries, within one layer. Same-name runtime entries in one layer are * first-wins; a duplicate logs a warning and receives a no-op disposer so * it cannot remove the winner. * @param skill - the skill definition input; omitted invocation and provider fields receive defaults. * @returns the exact Cordis effect disposer, preserving composite teardown order and invalidating caches. */register(skill: SkillRegistration): () => void
/** * List invocation-neutral skill summaries for a workspace. Consumers apply * model or user invocation policy at their operational boundary. Lookup * options and provider candidates are readonly same-process values borrowed * throughout discovery. * @param options - view options; `scope` selects the viewing agent's layers, `cwd` selects project roots, and `signal` cancels discovery. * @returns all sorted winning summaries. */async list(options: SkillViewOptions = {}): Promise<SkillSummary[]>
/** * Observe the current invocation-neutral catalog and whether discovery completed within a stable revision. * Incomplete observations are never cached, allowing consumers to retain last-good state and * retry on their next request boundary. * @param options - view options; `scope` selects the viewing agent's layers, `cwd` selects project roots, and `signal` cancels discovery. * @returns sorted summaries plus discovery-completeness state. */async snapshot(options: SkillViewOptions = {}): Promise<SkillCatalogSnapshot>
/** * Load and validate the winning candidate, passing its opaque discovery locator back to the * provider. Cancellation is rechecked after selection, including cache hits, and raced against * loading so an uncooperative provider cannot hang the caller. * @param name - kebab-case skill name. * @param options - view options; `scope` selects the viewing agent's layers, * `cwd` selects workspace-sensitive skills, and `signal` cancels work. * @returns the full skill, including body content, or `undefined`. */async get(name: string, options: SkillViewOptions = {}): Promise<SkillDefinition | undefined>Source: packages/skill/skill/src/index.ts:357
skills/* events
Section titled “skills/* events”skills/change — emit
Section titled “skills/change — emit”A skill provider, runtime contribution, or provider-backed catalog may have changed. This is an unfiltered invalidation notification; consumers refetch the catalog for their own lookup options. Listener failures are contained and cannot veto the registry mutation.
/** * A skill provider, runtime contribution, or provider-backed catalog may * have changed. This is an unfiltered invalidation notification; consumers * refetch the catalog for their own lookup options. Listener failures are * contained and cannot veto the registry mutation. * @mode emit */'skills/change'(): void