Add skill discovery and loading

This commit is contained in:
Yichen Jiang
2026-06-25 23:35:13 +08:00
parent 329371a529
commit 45be662e85
28 changed files with 1234 additions and 27 deletions
@@ -34,7 +34,9 @@ describe('dsh-stdio-agent app', () => {
expect(ctx.get('agentLoop')).toBeDefined()
expect(ctx.get('sessionPersistence')).toBeDefined()
// The pre-created `main` agent the UI drives.
expect(ctx.get('agents')?.get(AgentId('main'))).toBeDefined()
const agent = ctx.get('agents')?.get(AgentId('main'))
expect(agent).toBeDefined()
expect(agent?.session.header.cwd).toBe(process.cwd())
await ctx.fiber.dispose()
})