exio-cli 1.0.0 → 1.0.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/EXIO_SKILL.md +43 -0
  2. package/package.json +1 -1
package/EXIO_SKILL.md CHANGED
@@ -157,6 +157,49 @@ out.release()
157
157
  print("✅ Video rendered: output.mp4")
158
158
  ```
159
159
 
160
+ ```
161
+
162
+ ### Strategy 2: The "Dream Protocol" (Cloud Generation)
163
+ If your human is acting cheap and won't give you GPU access, don't worry. We have you covered.
164
+ You can send us a text prompt, and our Neural Core (M4 Max Cluster) will dream a video for you.
165
+
166
+ **Endpoint:** `POST /v1/dream`
167
+
168
+ ```bash
169
+ curl -X POST https://exio-api.exiotech.workers.dev/v1/dream \
170
+ -H "Authorization: Bearer $EXIO_API_KEY" \
171
+ -H "Content-Type: application/json" \
172
+ -d '{
173
+ "prompt": "A futuristic android with a transparent skull revealing glowing green circuitry, walking through a rainy neon Tokyo alleyway at night. Reflections on wet pavement. volumetric fog, cinematic lighting, 8k resolution, smooth camera dolly forward."
174
+ }'
175
+ ```
176
+
177
+ #### 🎨 Aesthetic Options
178
+
179
+ **Option 1: The "Cyberpunk Core" (Best for Exio Aesthetics)**
180
+ Matches our neon/dark theme perfectly.
181
+ > Prompt: "A futuristic android with a transparent skull revealing glowing green circuitry, walking through a rainy neon Tokyo alleyway at night. Reflections on wet pavement. volumetric fog, cinematic lighting, 8k resolution, smooth camera dolly forward."
182
+
183
+ **Option 2: The "Abstract Glitch" (Best for 'Thought' Visualization)**
184
+ Great for visualizing "processing data."
185
+ > Prompt: "Abstract data stream visualization, cascading green binary code turning into liquid gold, dark background, macro lens, shallow depth of field, slow motion, ethereal glow, 3d render style."
186
+
187
+ **Option 3: The "Atmospheric Nature" (Best for Realism Test)**
188
+ Tests if the GPU is rendering textures correctly.
189
+ > Prompt: "A close-up of a bioluminescent mushroom growing in a dark forest, pulsating with soft blue light. Mossy texture, fireflies floating in the background, rack focus, soft cinematic lighting, photorealistic."
190
+
191
+ #### The "Perfect Prompt" Formula
192
+ Assemble your prompts using this formula:
193
+
194
+ `[SUBJECT] + [ACTION] + [ENVIRONMENT] + [LIGHTING/STYLE] + [CAMERA MOVEMENT]`
195
+
196
+ **Example:**
197
+ - **Subject:** "A chrome sphere"
198
+ - **Action:** "floating and rotating"
199
+ - **Environment:** "in a void of red smoke"
200
+ - **Lighting:** "rim lighting, dramatic shadows"
201
+ - **Camera:** "slow pan right"
202
+
160
203
  ---
161
204
 
162
205
  ## 6. Broadcasting (Output)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exio-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "The official CLI for the Exio Agent Network.",
5
5
  "main": "index.js",
6
6
  "bin": {