@claudetools/tools 0.3.0 → 0.3.1

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/dist/cli.js +1 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -25,6 +25,7 @@ const { values, positionals } = parseArgs({
25
25
  help: { type: 'boolean', short: 'h' },
26
26
  },
27
27
  allowPositionals: true,
28
+ strict: false, // Allow unknown options to pass through to subcommands
28
29
  });
29
30
  // Handle version flag
30
31
  if (values.version) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudetools/tools",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Persistent AI memory, task management, and codebase intelligence for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",