[Q&A] How to use bundles correctly? #385
What kind of help do you need?Choosing the right skills Your questionI have seen mentions of bundles, but is it not perhaps possible to use a specific bundle - i.e. "Essentials" or "Web Wizard" so that it uses all of the skills within those bundles (or whichever of them might be needed) instead of calling each skill one by one and having a discussion only with that skill? I can see that I have access to /brainstorming for example, but not access to /essentials-bundle or something to this extend. Interested to hear your thoughts on this. Environment and contextNo response What have you already tried?
Before posting
|
Replies: 1 comment 2 replies
|
Good question. The short answer is: bundles are not first-class “mega-skills” by default. So today:
That is why you can access The intended usage is:
Example:
That said, there is one practical way to use bundles more like an active subset: the activation scripts. Examples:
So the distinction is:
What bundles do not currently do is act like an automatic router that silently calls any skill inside the bundle on your behalf. If we ever add that, it would be a separate orchestration layer rather than the current bundle system. If helpful, I can also add a short note to the docs clarifying “bundles vs invokable skills vs activation scripts,” because you’re definitely not the first person to read it this way. |
Good question. The short answer is: bundles are not first-class “mega-skills” by default.
So today:
Essentials,Web Wizard, etc. are curated lists of recommended skills/essentials-bundleor@web-wizardThat is why you can access
@brainstorming, but not something like/essentials-bundle.The intended usage is:
docs/users/bundles.mdExample:
Use @brainstorming to scope this featureThen apply @react-best-practices to the component structureThen run @lint-and-validateThat said, there is one practical way to use …