coursecast 0.2.1 → 0.2.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.
- package/README.md +1 -2
- package/bin/coursecast.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,7 +37,6 @@ The engine is what writes the content. Pick with `--engine`:
|
|
|
37
37
|
| `claude-code` *(default)* | your [Claude Code](https://claude.com/claude-code) CLI | `claude` on PATH |
|
|
38
38
|
| `codex` | your Codex CLI | `codex` on PATH |
|
|
39
39
|
| `gemini` | Google Gemini API, search-grounded | `GEMINI_API_KEY` ([free key](https://aistudio.google.com/apikey)) |
|
|
40
|
-
| `stub` | nothing — offline placeholder content | nothing |
|
|
41
40
|
|
|
42
41
|
```bash
|
|
43
42
|
coursecast "learn rust" --engine gemini
|
|
@@ -49,7 +48,7 @@ Gemini extras: `GEMINI_MODEL` overrides the model (default `gemini-3.5-flash`);
|
|
|
49
48
|
## All flags
|
|
50
49
|
|
|
51
50
|
```
|
|
52
|
-
--engine <id> claude-code (default) | gemini | codex
|
|
51
|
+
--engine <id> claude-code (default) | gemini | codex
|
|
53
52
|
--model <id> model hint passed to the engine
|
|
54
53
|
--storage <id> progress storage: local (default) | cloud
|
|
55
54
|
--provider <id> deploy target: vercel (default) | netlify
|
package/bin/coursecast.mjs
CHANGED
|
@@ -37,7 +37,7 @@ OPTIONS
|
|
|
37
37
|
-h, --help show this help
|
|
38
38
|
|
|
39
39
|
EXAMPLES
|
|
40
|
-
coursecast "kubernetes basics"
|
|
40
|
+
coursecast "kubernetes basics" # default engine (claude-code)
|
|
41
41
|
coursecast "how DNS works" --engine gemini # cheap, search-grounded
|
|
42
42
|
coursecast "intro to nuclear power" --deploy # generate + ship to your Vercel
|
|
43
43
|
`);
|
package/package.json
CHANGED