@graspful/cli 0.2.0 → 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.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,15 +8,21 @@ CLI for creating adaptive learning courses from YAML knowledge graphs. Designed
8
8
  ## Quick Start
9
9
 
10
10
  ```bash
11
- # Scaffold a course
11
+ # 1. Create an account (gets you an org + API key)
12
+ npx @graspful/cli register --email you@example.com --password your-password
13
+
14
+ # 2. Scaffold a course
12
15
  npx @graspful/cli create course --topic "CKA Exam" -o cka.yaml
13
16
 
14
- # Validate and review
17
+ # 3. Validate and review
15
18
  npx @graspful/cli validate cka.yaml
16
19
  npx @graspful/cli review cka.yaml
20
+
21
+ # 4. Import and publish
22
+ npx @graspful/cli import cka.yaml --org <your-org> --publish
17
23
  ```
18
24
 
19
- No account needed for `create`, `validate`, `review`, or `describe`. These run offline.
25
+ Steps 2-3 work offline — no account needed. You only need to register before importing or publishing.
20
26
 
21
27
  ## Install
22
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graspful/cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Create adaptive learning courses from YAML. CLI and MCP server for AI agents.",
5
5
  "keywords": ["course", "learning", "adaptive", "mcp", "mcp-server", "ai", "ai-agent", "agent", "cli", "education", "edtech", "knowledge-graph", "spaced-repetition", "course-creation", "yaml", "adaptive-learning", "lms"],
6
6
  "repository": {
@@ -21,7 +21,7 @@
21
21
  "lint": "echo 'no lint configured yet'"
22
22
  },
23
23
  "dependencies": {
24
- "@graspful/shared": "0.0.1",
24
+ "@graspful/shared": "0.2.1",
25
25
  "chalk": "^5.4.0",
26
26
  "commander": "^13.0.0",
27
27
  "js-yaml": "^4.1.0",