Ship the Turborepo Agent Skill inside the turbo npm package
#12661
gtbuchanan
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
|
Do you have examples of harnesses or chats where the agent went looking into node_modules to find the Skill? It's a nice proposal, but if its not actually getting used by the community, I don't see any utility. |
Beta Was this translation helpful? Give feedback.
4 replies
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.
-
The Turborepo Agent Skill at
skills/turborepocurrently lives only in the source repo, so consumers reach it out-of-band —npx skills add vercel/turborepo, manual download, third-party installers, etc. Bundling it into the publishedturbopackage would let tools that discover skills undernode_modules/*/skills/(e.g.skills-npm, per this proposal) pick it up automatically — versioned with the sameturboyou're already running, no extra install step, no per-machine drift.Current state
skills/skills/turborepo/), outsidepackages/turbo/, so the publish manifest can't reach it as-isProposed change
skills/turborepo/intopackages/turbo/skills/turborepo/at publish time"skills"tofilesinpackages/turbo/package.jsonAfter this, consumers using
skills-npm(or any equivalent discovery tool) get the skill simply by depending onturbo, and the skill version is guaranteed to match the binary version.Why this matters
metadata.version: 2.9.7-canary.11; bundling makes that promise concrete instead of relying on independent install timingBeta Was this translation helpful? Give feedback.
All reactions