trekoon 0.3.1 → 0.3.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.
@@ -34,6 +34,7 @@ const SUPPORTED_ROOT_COMMANDS: readonly string[] = [
34
34
  "sync",
35
35
  "skills",
36
36
  "suggest",
37
+ "update",
37
38
  "wipe",
38
39
  ];
39
40
 
@@ -398,6 +399,10 @@ export async function executeShell(parsed: ParsedInvocation, cwd: string = proce
398
399
  case "suggest":
399
400
  result = await runSuggest(context);
400
401
  break;
402
+ case "update":
403
+ // Route `trekoon update` to `trekoon skills update` internally.
404
+ result = await runSkills({ ...context, args: ["update", ...context.args] });
405
+ break;
401
406
  default:
402
407
  result = failResult({
403
408
  command: "shell",