@ghl-ai/aw 0.1.25-beta.12 → 0.1.25-beta.13

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 +1 -3
  2. package/package.json +1 -1
package/integrate.mjs CHANGED
@@ -34,13 +34,11 @@ export function generateCommands(cwd) {
34
34
  const namespaces = getTeamNamespaces(awDir);
35
35
 
36
36
  for (const ns of namespaces) {
37
- const commandsDir = join(awDir, ns, 'commands');
37
+ const commandsDir = join(awDir, ns, 'shared', 'commands');
38
38
  mkdirSync(commandsDir, { recursive: true });
39
39
 
40
- // 1. CLI commands
41
40
  for (const cmd of AW_COMMANDS) {
42
41
  const fileName = `${cmd.name}.md`;
43
- // Skip if a hand-written command with same name exists
44
42
  if (existsSync(join(commandsDir, fileName))) continue;
45
43
 
46
44
  const content = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghl-ai/aw",
3
- "version": "0.1.25-beta.12",
3
+ "version": "0.1.25-beta.13",
4
4
  "description": "Agentic Workspace CLI — pull, push & manage agents, skills and commands from the registry",
5
5
  "type": "module",
6
6
  "bin": {