@howssatoshi/quantumcss 1.11.1 → 1.11.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Quantum CSS - Next-Generation Utility Framework
2
2
 
3
- ![Quantum CSS](https://img.shields.io/badge/Quantum%20CSS-v1.11.1-blue)
3
+ ![Quantum CSS](https://img.shields.io/badge/Quantum%20CSS-v1.11.4-blue)
4
4
  ![License](https://img.shields.io/badge/license-MIT-green)
5
5
  ![Bundle Size](https://img.shields.io/badge/bundle%20size-29%20KB%20(gzipped)-brightgreen)
6
6
 
@@ -58,11 +58,32 @@ npm install @howssatoshi/quantumcss
58
58
  ### Command Line Interface
59
59
  QuantumCSS includes a powerful CLI for project orchestration:
60
60
 
61
- - **`npx quantumcss init`** - Generate a default `quantum.config.json`.
62
- - **`npx quantumcss build [output]`** - Generate the JIT CSS bundle (default: `dist/quantum.css`).
63
- - **`npx quantumcss watch [output]`** - Automatically rebuild when your HTML or config changes.
64
- - **`npx quantumcss scaffold <type>`** - Generate a starter template (`gaming`, `blog`, `travel`, etc.).
65
- - **`npx quantumcss manifest [output]`** - Generate an AI-optimized design system manifest.
61
+ ```bash
62
+ # Using npx (recommended)
63
+ npx quantumcss <command>
64
+
65
+ # Or run directly
66
+ node src/cli.js <command>
67
+ ```
68
+
69
+ **Commands:**
70
+
71
+ - **`init`** - Generate a default `quantum.config.json` with full theme structure (colors, spacing, plugins, presets, componentPresets).
72
+ - **`build [output]`** - Generate the JIT CSS bundle (default: `dist/quantum.css`).
73
+ - **`watch [output]`** - Automatically rebuild when your HTML or config changes.
74
+ - **`scaffold <type> [file]`** - Generate a starter template (`gaming`, `blog`, `travel`, `shopping`, `starlight`, `news`, `docs`).
75
+ - **`manifest [output]`** - Generate an AI-optimized design system manifest (colors, spacing, utilities, componentPresets). Use this when starting new projects so AI agents understand available tokens.
76
+
77
+ ```bash
78
+ # Examples
79
+ npx quantumcss init # Create quantum.config.json
80
+ npx quantumcss build # Build dist/quantum.css
81
+ npx quantumcss build custom.css # Custom output path
82
+ npx quantumcss watch # Watch for changes
83
+ npx quantumcss scaffold blog index.html # Scaffold blog template
84
+ npx quantumcss manifest design-system.json # Generate manifest file
85
+ npx quantumcss manifest # Output manifest to stdout
86
+ ```
66
87
 
67
88
  ## ⚙️ Configuration
68
89