ultra-dex 1.2.0 → 1.2.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.
- package/README.md +20 -0
- package/bin/ultra-dex.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,11 +40,25 @@ Shows links to fully filled Ultra-Dex examples:
|
|
|
40
40
|
- InvoiceFlow (Invoicing)
|
|
41
41
|
- HabitStack (Habit Tracking)
|
|
42
42
|
|
|
43
|
+
### Audit your project
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npx ultra-dex audit
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Checks your project for completeness:
|
|
50
|
+
- Required files (QUICK-START.md, CONTEXT.md, etc.)
|
|
51
|
+
- Key sections (idea, problem, MVP, tech stack)
|
|
52
|
+
- Implementation details (database, API, auth)
|
|
53
|
+
|
|
54
|
+
Outputs a score and grade (A-F) with suggestions.
|
|
55
|
+
|
|
43
56
|
## Commands
|
|
44
57
|
|
|
45
58
|
| Command | Description |
|
|
46
59
|
|---------|-------------|
|
|
47
60
|
| `ultra-dex init` | Initialize a new project |
|
|
61
|
+
| `ultra-dex audit` | Audit project for completeness |
|
|
48
62
|
| `ultra-dex examples` | List available examples |
|
|
49
63
|
| `ultra-dex --help` | Show help |
|
|
50
64
|
| `ultra-dex --version` | Show version |
|
|
@@ -58,6 +72,12 @@ Shows links to fully filled Ultra-Dex examples:
|
|
|
58
72
|
| `-n, --name <name>` | Project name (skips prompt) |
|
|
59
73
|
| `-d, --dir <directory>` | Output directory (default: current) |
|
|
60
74
|
|
|
75
|
+
### audit
|
|
76
|
+
|
|
77
|
+
| Option | Description |
|
|
78
|
+
|--------|-------------|
|
|
79
|
+
| `-d, --dir <directory>` | Directory to audit (default: current) |
|
|
80
|
+
|
|
61
81
|
## Example
|
|
62
82
|
|
|
63
83
|
```bash
|
package/bin/ultra-dex.js
CHANGED