@1667-ai/cli 0.0.0

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 (3) hide show
  1. package/README.md +28 -0
  2. package/bin/1667.js +7 -0
  3. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # 1667
2
+
3
+ A full-screen terminal environment for writing fiction with language models.
4
+
5
+ Source: <https://github.com/1667-ai/1667>
6
+
7
+ ## This version is not a release
8
+
9
+ Version 0.0.0 is a placeholder that reserves this package name. It
10
+ contains no program. Running it prints an explanation and exits non-zero.
11
+
12
+ 1667 is pre-release. Build it from source:
13
+
14
+ ```sh
15
+ git clone https://github.com/1667-ai/1667.git
16
+ cd 1667 && npm ci && npm run build
17
+ ```
18
+
19
+ ## What 1667 is
20
+
21
+ - A keyboard-driven terminal interface for drafting long-form fiction.
22
+ - A story model with alternative takes: any passage can have siblings, and the
23
+ selected path through them is the story line.
24
+ - A direct connection to OpenAI-compatible or Anthropic Messages endpoints.
25
+ - An embedded backend that stores stories in a project directory.
26
+
27
+ When a release is published, this package becomes a launcher that selects the
28
+ native executable for the host platform. See the repository for current status.
package/bin/1667.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ process.stderr.write(
3
+ "1667 is not released yet.\n" +
4
+ "This package name is reserved. It contains no program.\n" +
5
+ "Build from source: https://github.com/1667-ai/1667\n"
6
+ );
7
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@1667-ai/cli",
3
+ "version": "0.0.0",
4
+ "description": "A full-screen terminal environment for writing fiction with language models. This version reserves the name; it is not a release.",
5
+ "keywords": ["cli", "tui", "terminal", "writing", "fiction", "llm"],
6
+ "license": "Apache-2.0",
7
+ "repository": { "type": "git", "url": "git+https://github.com/1667-ai/1667.git" },
8
+ "homepage": "https://github.com/1667-ai/1667",
9
+ "bugs": { "url": "https://github.com/1667-ai/1667/issues" },
10
+ "type": "module",
11
+ "bin": { "1667": "bin/1667.js" },
12
+ "files": ["bin/1667.js", "README.md"],
13
+ "engines": { "node": ">=22" },
14
+ "publishConfig": { "access": "public" }
15
+ }