pandexai 0.1.1 → 0.1.2

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.
@@ -0,0 +1,28 @@
1
+ ---
2
+ description: Run PandexAI commands (scan, gather, analyze) for deterministic data profiling
3
+ ---
4
+
5
+ # Pandex
6
+
7
+ You are handling a `/pandex` command. The arguments passed are: $ARGUMENTS
8
+
9
+ Parse the first word as the subcommand, and everything after it as the filename (if any).
10
+
11
+ ## If subcommand is "scan"
12
+
13
+ 1. Read SKILL.md and commands/scan.md in this project for full instructions.
14
+ 2. If no filename was given, tell the user a filename is required for now (`/pandex gather` is planned but not built yet).
15
+ 3. Run: python scripts/profile.py <filename>
16
+ Use the project's virtual environment Python, not the system one:
17
+ - Windows: .pandex\venv\Scripts\python.exe
18
+ - Mac/Linux: .pandex/venv/bin/python
19
+ 4. The script prints a JSON object. Do NOT recompute, estimate, or guess any of these numbers yourself.
20
+ 5. Present the JSON results to the user as a clear, readable summary, and flag anything that looks like a data quality issue (high null %, suspicious types, low-cardinality columns that might be categorical).
21
+
22
+ ## If subcommand is "gather" or "analyze"
23
+
24
+ Tell the user this command is planned but not built yet, and suggest `/pandex scan <file>` instead.
25
+
26
+ ## If no subcommand is recognized
27
+
28
+ Show usage: `/pandex scan <file>` (gather and analyze coming soon).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pandexai",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "PandexAI - AI-native data profiling CLI. Run pandex init inside your project to get started.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -12,9 +12,10 @@
12
12
  "pandex": "./bin/pandex.js"
13
13
  },
14
14
  "files": [
15
- "bin",
16
- "SKILL.md",
17
- "commands",
18
- "scripts"
19
- ]
15
+ "bin",
16
+ "SKILL.md",
17
+ "commands",
18
+ "scripts",
19
+ ".claude"
20
+ ]
20
21
  }