@ghl-ai/aw 0.1.35-beta.21 → 0.1.35-beta.22

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/integrate.mjs +5 -5
  2. package/package.json +1 -1
package/integrate.mjs CHANGED
@@ -56,11 +56,13 @@ function findFiles(dir, typeName) {
56
56
  }
57
57
 
58
58
  /**
59
- * Copy CLAUDE.md and AGENTS.md to project root.
59
+ * Copy AGENTS.md to project root.
60
+ * CLAUDE.md is intentionally NOT generated — its routing rule hijacks plugin
61
+ * commands like /aw:plan, preventing proper agent dispatch.
60
62
  */
61
63
  export function copyInstructions(cwd, tempDir, namespace) {
62
64
  const createdFiles = [];
63
- for (const file of ['CLAUDE.md', 'AGENTS.md']) {
65
+ for (const file of ['AGENTS.md']) {
64
66
  const dest = join(cwd, file);
65
67
  if (existsSync(dest)) continue;
66
68
 
@@ -78,9 +80,7 @@ export function copyInstructions(cwd, tempDir, namespace) {
78
80
  }
79
81
  }
80
82
 
81
- const content = file === 'CLAUDE.md'
82
- ? generateClaudeMd(cwd, namespace)
83
- : generateAgentsMd(cwd, namespace);
83
+ const content = generateAgentsMd(cwd, namespace);
84
84
  if (content) {
85
85
  writeFileSync(dest, content);
86
86
  fmt.logSuccess(`Created ${file}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghl-ai/aw",
3
- "version": "0.1.35-beta.21",
3
+ "version": "0.1.35-beta.22",
4
4
  "description": "Agentic Workspace CLI — pull, push & manage agents, skills and commands from the registry",
5
5
  "type": "module",
6
6
  "bin": {