maestro-bundle 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.mjs +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maestro-bundle",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "One command. Full context for your AI agent. Any editor. Install governance bundles with skills, PRD, AGENTS.md and GitHub Spec Kit.",
5
5
  "bin": {
6
6
  "maestro-bundle": "./src/cli.mjs"
package/src/cli.mjs CHANGED
@@ -316,15 +316,6 @@ async function main() {
316
316
  }
317
317
  }
318
318
 
319
- // 3. Skills canonical (always, for Deep Agents and reference)
320
- const spinner2 = ora("Installing canonical skills").start();
321
- const skillsDest = join(targetDir, "skills");
322
- ensureDir(skillsDest);
323
- for (const skill of skills) {
324
- copyDir(skill.dir, join(skillsDest, skill.name));
325
- }
326
- spinner2.succeed(`${skills.length} canonical skills in skills/`);
327
-
328
319
  // 3. LangChain Skills (for AI bundles)
329
320
  if (bundleName === "ai-agents" || bundleName === "ai-agents-deep") {
330
321
  const spinnerLc = ora("Installing LangChain Skills (langchain-ai/langchain-skills)").start();