@graspful/cli 0.2.0 → 0.2.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.
- package/README.md +9 -3
- package/package.json +1 -1
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
|
-
#
|
|
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
|
-
|
|
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.
|
|
3
|
+
"version": "0.2.1",
|
|
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": {
|