nightralph 0.0.36 → 0.0.37
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 +15 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,6 +38,7 @@ so they can't drift as long as you install the skills with this package.
|
|
|
38
38
|
+ [Claude Sonnet 5](#claude-sonnet-5)
|
|
39
39
|
+ [`pi` + OpenRouter model](#pi--openrouter-model)
|
|
40
40
|
+ [`codex` + Luna](#codex--luna)
|
|
41
|
+
+ [`codex` + Terra](#codex--terra)
|
|
41
42
|
|
|
42
43
|
<!-- tocstop -->
|
|
43
44
|
|
|
@@ -299,23 +300,33 @@ keep the machine awake, but the display can still go dark.
|
|
|
299
300
|
#### Claude Opus 4.6
|
|
300
301
|
|
|
301
302
|
```sh
|
|
302
|
-
caffeinate -i npx nightralph claude -m claude-opus-4-6
|
|
303
|
+
caffeinate -i npx nightralph claude -m claude-opus-4-6 --effort high
|
|
303
304
|
```
|
|
304
305
|
|
|
305
306
|
#### Claude Sonnet 5
|
|
306
307
|
|
|
307
308
|
```sh
|
|
308
|
-
caffeinate -i npx nightralph claude -m claude-sonnet-5
|
|
309
|
+
caffeinate -i npx nightralph claude -m claude-sonnet-5 --effort high
|
|
309
310
|
```
|
|
310
311
|
|
|
311
312
|
#### `pi` + OpenRouter model
|
|
312
313
|
|
|
313
314
|
```sh
|
|
314
|
-
caffeinate -i npx nightralph pi -m openrouter/z-ai/glm-5.3-flash
|
|
315
|
+
caffeinate -i npx nightralph pi -m openrouter/z-ai/glm-5.3-flash --thinking high
|
|
315
316
|
```
|
|
316
317
|
|
|
318
|
+
##### pi `--thinking` levels
|
|
319
|
+
|
|
320
|
+
`off`, `minimal`, `low`, `medium`,`high`, and `xhigh`
|
|
321
|
+
|
|
317
322
|
#### `codex` + Luna
|
|
318
323
|
|
|
319
324
|
```sh
|
|
320
|
-
caffeinate -i npx nightralph codex -m gpt-5.6-luna
|
|
325
|
+
caffeinate -i npx nightralph codex -m gpt-5.6-luna --effort high
|
|
326
|
+
```
|
|
327
|
+
|
|
328
|
+
#### `codex` + Terra
|
|
329
|
+
|
|
330
|
+
```sh
|
|
331
|
+
caffeinate -i npx nightralph codex -m gpt-5.6-luna --effort medium
|
|
321
332
|
```
|