@telagod/nocode 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.
package/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # @telagod/nocode
2
+
3
+ Terminal-native AI coding assistant built in Rust. Connects to Claude, OpenAI, Gemini, or any compatible endpoint.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @telagod/nocode
9
+ ```
10
+
11
+ ## Features
12
+
13
+ - Interactive REPL and 4-pane TUI with Markdown rendering and syntax highlighting
14
+ - 25 built-in tools (Read, Edit, Write, Bash, Glob, Grep, WebFetch, Agent, Tasks, Teams, MCP, LSP, Memory...)
15
+ - Multi-provider support: Claude, OpenAI, Gemini, or custom endpoints
16
+ - Session compaction with structured summaries
17
+ - SQL-backed storage with date-based volume partitioning
18
+ - Persistent memory system with auto-detection signals
19
+ - MCP client (JSON-RPC over stdio) for tool extensibility
20
+ - Plugin system with lifecycle management
21
+
22
+ ## Usage
23
+
24
+ ```bash
25
+ nocode --repl # interactive REPL
26
+ nocode --tui # 4-pane terminal UI
27
+ nocode --status # system diagnostics
28
+ ```
29
+
30
+ ## Configuration
31
+
32
+ Set your provider API key:
33
+
34
+ ```bash
35
+ export ANTHROPIC_API_KEY=sk-... # Claude
36
+ export OPENAI_API_KEY=sk-... # OpenAI
37
+ export GEMINI_API_KEY=... # Gemini
38
+ ```
39
+
40
+ Override provider or model:
41
+
42
+ ```bash
43
+ export NOCODE_MODEL_PROVIDER=claude # claude|openai|gemini|custom
44
+ export NOCODE_MODEL=claude-opus-4-6
45
+ ```
46
+
47
+ ## Supported Platforms
48
+
49
+ | Platform | Package |
50
+ |----------|---------|
51
+ | Linux x64 | `@telagod/nocode-linux-x64` |
52
+ | macOS x64 | `@telagod/nocode-darwin-x64` |
53
+ | macOS ARM64 | `@telagod/nocode-darwin-arm64` |
54
+ | Windows x64 | `@telagod/nocode-win32-x64` |
55
+
56
+ ## License
57
+
58
+ MIT
package/bin/nocode CHANGED
@@ -10,6 +10,7 @@ const PLATFORM_PACKAGES = {
10
10
  "linux-x64": "@telagod/nocode-linux-x64",
11
11
  "darwin-x64": "@telagod/nocode-darwin-x64",
12
12
  "darwin-arm64": "@telagod/nocode-darwin-arm64",
13
+ "win32-x64": "@telagod/nocode-win32-x64",
13
14
  };
14
15
 
15
16
  function getBinaryPath() {
@@ -38,7 +39,8 @@ function getBinaryPath() {
38
39
  process.exit(1);
39
40
  }
40
41
 
41
- const bin = path.join(pkgDir, "bin", "nocode");
42
+ const binName = process.platform === "win32" ? "nocode.exe" : "nocode";
43
+ const bin = path.join(pkgDir, "bin", binName);
42
44
  if (!fs.existsSync(bin)) {
43
45
  console.error(`Binary not found at ${bin}`);
44
46
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telagod/nocode",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Terminal-native AI coding assistant built in Rust",
5
5
  "license": "MIT",
6
6
  "author": "telagod",
@@ -16,9 +16,10 @@
16
16
  "postinstall": "node scripts/postinstall.js"
17
17
  },
18
18
  "optionalDependencies": {
19
- "@telagod/nocode-linux-x64": "0.1.0",
20
- "@telagod/nocode-darwin-x64": "0.1.0",
21
- "@telagod/nocode-darwin-arm64": "0.1.0"
19
+ "@telagod/nocode-linux-x64": "0.1.1",
20
+ "@telagod/nocode-darwin-x64": "0.1.1",
21
+ "@telagod/nocode-darwin-arm64": "0.1.1",
22
+ "@telagod/nocode-win32-x64": "0.1.1"
22
23
  },
23
24
  "engines": {
24
25
  "node": ">=16"
@@ -11,6 +11,7 @@ const PLATFORMS = {
11
11
  "linux-x64": "@telagod/nocode-linux-x64",
12
12
  "darwin-x64": "@telagod/nocode-darwin-x64",
13
13
  "darwin-arm64": "@telagod/nocode-darwin-arm64",
14
+ "win32-x64": "@telagod/nocode-win32-x64",
14
15
  };
15
16
 
16
17
  const key = `${os.platform()}-${os.arch()}`;