@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.
- package/integrate.mjs +1 -3
- 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 = [
|