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 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 | stub
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
@@ -37,7 +37,7 @@ OPTIONS
37
37
  -h, --help show this help
38
38
 
39
39
  EXAMPLES
40
- coursecast "kubernetes basics" --engine stub # offline test, no AI
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coursecast",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "One prompt → a full interactive course — live widgets, quizzes, a mastery dashboard — rendered to self-contained HTML and deployed live.",
5
5
  "type": "module",
6
6
  "bin": {