@narrative-os/cli 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +58 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # @narrative-os/cli
2
+
3
+ AI-native narrative engine for long-form story generation.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g @narrative-os/cli
9
+ ```
10
+
11
+ ## Quick Start
12
+
13
+ ```bash
14
+ # Configure your LLM provider
15
+ nos config
16
+
17
+ # Create a new story
18
+ nos init --title "My Adventure" --chapters 10
19
+
20
+ # Generate chapters
21
+ nos generate <story-id>
22
+
23
+ # Or auto-generate all remaining chapters
24
+ nos continue <story-id>
25
+ ```
26
+
27
+ ## Commands
28
+
29
+ | Command | Description |
30
+ |---------|-------------|
31
+ | `nos init` | Create a new story |
32
+ | `nos generate <id>` | Generate next chapter |
33
+ | `nos continue <id>` | Auto-generate remaining chapters |
34
+ | `nos status [id]` | View story status |
35
+ | `nos list` | List all stories |
36
+ | `nos read <id> [chapter]` | Read chapter content |
37
+ | `nos bible <id>` | View story bible |
38
+ | `nos memories <id>` | Search narrative memories |
39
+ | `nos validate <id>` | Validate story consistency |
40
+ | `nos export <id>` | Export story to markdown |
41
+ | `nos delete <id>` | Delete a story |
42
+ | `nos config` | Configure LLM settings |
43
+
44
+ ## Features
45
+
46
+ - **Persistent Memory**: Never forgets what happened 50 chapters ago
47
+ - **Logical Consistency**: Enforces facts and character continuity
48
+ - **World Simulation**: Characters have goals and act autonomously
49
+ - **Tension Control**: Manages narrative arc and pacing
50
+ - **Multi-Story Support**: Work on multiple stories simultaneously
51
+
52
+ ## Documentation
53
+
54
+ For full documentation, visit: https://github.com/liwonder/NARRITIVE_OS
55
+
56
+ ## License
57
+
58
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narrative-os/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "AI-native narrative engine for long-form story generation",
5
5
  "main": "dist/index.js",
6
6
  "bin": {