workos 0.12.3 → 0.13.0

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/README.md CHANGED
@@ -59,7 +59,7 @@ Commands:
59
59
  doctor Diagnose WorkOS integration issues
60
60
  skills Manage WorkOS skills for coding agents (install, uninstall, list)
61
61
 
62
- Skills are automatically installed to detected coding agents when you run `workos install`. Use `workos skills list` to check status.
62
+ Skills auto-install to detected coding agents on `workos install` and `workos auth login`. Use `workos skills list` to check status, `workos doctor` to detect stale skills, or `workos doctor --fix` to refresh them in place (constrained to `workos/` and `workos-widgets/`).
63
63
 
64
64
  Resource Management:
65
65
  organization (org) Manage organizations
package/dist/bin.js CHANGED
@@ -280,6 +280,11 @@ yargs(rawArgs)
280
280
  default: false,
281
281
  description: 'Copy report to clipboard',
282
282
  },
283
+ fix: {
284
+ type: 'boolean',
285
+ default: false,
286
+ description: 'Auto-update stale WorkOS skills (writes to <agent>/skills/workos/ and workos-widgets/ only)',
287
+ },
283
288
  }), async (argv) => {
284
289
  const { handleDoctor } = await import('./commands/doctor.js');
285
290
  await handleDoctor(argv);