ai-nexus 1.3.6 → 1.3.7

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.
Files changed (2) hide show
  1. package/bin/ai-rules.cjs +2 -2
  2. package/package.json +1 -1
package/bin/ai-rules.cjs CHANGED
@@ -20,7 +20,7 @@ program
20
20
  .option('-q, --quick', 'Quick mode (skip interactive wizard)')
21
21
  .option('-y, --yes', 'Skip prompts and use defaults')
22
22
  .action(async (options) => {
23
- if (options.quick || options.yes) {
23
+ if (options.quick || options.yes || options.rules) {
24
24
  const { init } = await import('../dist/commands/init.js');
25
25
  await init({ scope: 'project', ...options });
26
26
  } else {
@@ -36,7 +36,7 @@ program
36
36
  .option('--copy', 'Copy files instead of symlink')
37
37
  .option('-q, --quick', 'Quick mode (skip interactive wizard)')
38
38
  .action(async (options) => {
39
- if (options.quick) {
39
+ if (options.quick || options.rules) {
40
40
  const { init } = await import('../dist/commands/init.js');
41
41
  await init({ scope: 'global', ...options });
42
42
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-nexus",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "AI coding assistant rule manager for Claude Code, Codex, and Cursor",
5
5
  "main": "dist/index.js",
6
6
  "bin": {