@ghl-ai/aw 0.1.2 → 0.1.3
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/commands/pull.mjs +1 -1
- package/package.json +2 -2
package/commands/pull.mjs
CHANGED
|
@@ -19,7 +19,7 @@ import { generateCommands, copyInstructions } from '../integrate.mjs';
|
|
|
19
19
|
export function pullCommand(args) {
|
|
20
20
|
const input = args._positional?.[0] || '';
|
|
21
21
|
const cwd = process.cwd();
|
|
22
|
-
const workspaceDir = join(cwd, '.aw_registry');
|
|
22
|
+
const workspaceDir = args._workspaceDir || join(cwd, '.aw_registry');
|
|
23
23
|
const dryRun = args['--dry-run'] === true;
|
|
24
24
|
const verbose = args['-v'] === true || args['--verbose'] === true;
|
|
25
25
|
const renameNamespace = args._renameNamespace || null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ghl-ai/aw",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Agentic Workspace CLI — pull, push & manage agents, skills and commands from the registry",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@clack/prompts": "
|
|
43
|
+
"@clack/prompts": "0.8.2",
|
|
44
44
|
"chalk": "^5.6.2",
|
|
45
45
|
"figlet": "^1.11.0"
|
|
46
46
|
}
|