Support file-backed skill consumption mode for sandbox-mounted agents #467
astrobot-houston
started this conversation in
Feature Request
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Summary
skillMode: "files"agent/profile settingSKILL.mdpaths in the system promptactivate_skillandread_skill_resourcein files modeactivateas the default for compatibilityreadtoolWhy
Some coding-agent runtimes mount selected skill bundles into their sandbox filesystem. In that architecture, skills should behave exactly like local files: the model reads
SKILL.mdwith its existing file tool and resolves bundle resources relative to the skill directory. A separate activation protocol adds an unnecessary tool surface and diverges from local behavior.Verification
pnpm --dir packages/runtime run buildpnpm --dir packages/runtime run check:typespnpm --dir packages/runtime run test— 776 passed, 1 skippedOriginal implementation from #466 by @rpenmatc04
All reactions