openwriter 0.36.0 → 0.36.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/dist/bin/pad.js CHANGED
@@ -52,7 +52,10 @@ import { createConnection } from 'net';
52
52
  import { readConfig, saveConfig } from '../server/helpers.js';
53
53
  const args = process.argv.slice(2);
54
54
  // Subcommands (run and exit, don't start server)
55
- if (args[0] === 'install-skill') {
55
+ // `setup` is the canonical one-time bootstrap verb (installs the package,
56
+ // wires MCP, drops the skill). `install-skill` is kept as a hidden alias for
57
+ // backwards compatibility with existing links/docs.
58
+ if (args[0] === 'setup' || args[0] === 'install-skill') {
56
59
  import('../server/install-skill.js').then(m => m.installSkill());
57
60
  }
58
61
  else if (args[0] === 'plugin') {