@fermindi/pwn-cli 0.9.10 → 0.9.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fermindi/pwn-cli",
3
- "version": "0.9.10",
3
+ "version": "0.9.11",
4
4
  "description": "Professional AI Workspace - Inject structured memory and automation into any project for AI-powered development",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,8 +14,8 @@ import { getState, updateState, hasWorkspace } from '../core/state.js';
14
14
 
15
15
  const execAsync = promisify(exec);
16
16
 
17
- // --- Metadata patterns that should never be tracked by git ---
18
- const METADATA_IGNORE_ENTRIES = ['.ai/batch/', '.ai/state.json', 'logs/'];
17
+ // --- Patterns that should never be tracked by git ---
18
+ const METADATA_IGNORE_ENTRIES = ['.ai/batch/', '.ai/state.json', 'logs/', 'node_modules/', '.venv/', 'venv/', 'vendor/'];
19
19
 
20
20
  // --- Git Helpers ---
21
21