fix: harden skill discovery

This commit is contained in:
Yichen Jiang
2026-07-05 18:33:27 +08:00
parent f626e569a4
commit dca2cc257d
29 changed files with 555 additions and 61 deletions

View File

@@ -176,7 +176,7 @@ async get(name: string, options: SkillLookupOptions = {}): Promise<SkillDefiniti
async renderModelListing(options: SkillLookupOptions = {}): Promise<string>
```
Source: [`packages/core/skill/src/index.ts:128`](../../packages/core/skill/src/index.ts)
Source: [`packages/core/skill/src/index.ts:132`](../../packages/core/skill/src/index.ts)
## `ctx.subagents` — `SubagentService`

View File

@@ -79,6 +79,8 @@ interface Config {
agentsHome?: string
extraRoots?: string[]
installSystemSkills?: boolean
promptFieldMaxLength?: number
collectCacheMaxEntries?: number
}
```