@@ -68,6 +68,9 @@ func runDepsList(args []string) int {
6868 fmt .Println (" List installed APM dependencies" )
6969 fmt .Println ()
7070 fmt .Println ("Options:" )
71+ fmt .Println (" -g, --global List user-scope dependencies" )
72+ fmt .Println (" --all Include all dependency scopes" )
73+ fmt .Println (" --insecure Include insecure dependencies" )
7174 fmt .Println (" --help Show this message and exit." )
7275 return 0
7376 }
@@ -121,6 +124,7 @@ func runDepsTree(args []string) int {
121124 fmt .Println (" Show dependency tree structure" )
122125 fmt .Println ()
123126 fmt .Println ("Options:" )
127+ fmt .Println (" -g, --global Show user-scope dependency tree" )
124128 fmt .Println (" --help Show this message and exit." )
125129 return 0
126130 }
@@ -218,6 +222,8 @@ func runDepsClean(args []string) int {
218222 fmt .Println (" Remove all APM dependencies" )
219223 fmt .Println ()
220224 fmt .Println ("Options:" )
225+ fmt .Println (" --dry-run Show what would be removed without removing" )
226+ fmt .Println (" --yes, -y Skip confirmation prompt" )
221227 fmt .Println (" --help Show this message and exit." )
222228 return 0
223229 }
@@ -254,6 +260,12 @@ func runDepsUpdate(args []string) int {
254260 fmt .Println (" Update APM dependencies to latest refs" )
255261 fmt .Println ()
256262 fmt .Println ("Options:" )
263+ fmt .Println (" --verbose, -v Show detailed output" )
264+ fmt .Println (" --force Force dependency refresh" )
265+ fmt .Println (" --target, -t TARGET Target harness to update" )
266+ fmt .Println (" --parallel-downloads INTEGER Max concurrent downloads" )
267+ fmt .Println (" --global, -g Update user-scope dependencies" )
268+ fmt .Println (" --legacy-skill-paths Use legacy per-client skill paths" )
257269 fmt .Println (" --help Show this message and exit." )
258270 return 0
259271 }
0 commit comments