gurtcli 0.5.3 → 0.9.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 (3) hide show
  1. package/README.md +61 -0
  2. package/install.js +1 -1
  3. package/package.json +4 -4
package/README.md ADDED
@@ -0,0 +1,61 @@
1
+ # gurtcli
2
+
3
+ A coding agent in your terminal. Type what you want. It does the rest.
4
+
5
+ ```bash
6
+ npm install -g gurtcli
7
+ gurtcli
8
+ ```
9
+
10
+ Written in Go. Distributed as a single binary. The npm package is a thin installer — `npm install -g gurtcli` downloads the right binary for your OS.
11
+
12
+ **Zero config.** First run prompts for provider (OpenAI, Anthropic, or any OpenAI-compatible endpoint) and API key. Key is saved to your OS keychain. Model choice is persisted.
13
+
14
+ ## Quick start
15
+
16
+ ```bash
17
+ npm install -g gurtcli
18
+ gurtcli
19
+ ```
20
+
21
+ Pick a provider, enter your API key, select a model. You're in the chat.
22
+
23
+ ## CLI flags
24
+
25
+ | Flag | Purpose |
26
+ |---|---|
27
+ | `--model <name>` | Skip model picker |
28
+ | `--provider <provider>` | Skip provider picker (openai, anthropic) |
29
+ | `--yolo` | Skip all permission prompts |
30
+ | `--dangerously-skip-permissions` | Same as --yolo |
31
+ | `--reconfigure` | Force provider/model setup |
32
+ | `--version` | Print version and exit |
33
+
34
+ ## Slash commands
35
+
36
+ | Command | What it does |
37
+ |---|---|
38
+ | `/help` | Show available commands |
39
+ | `/model` | Change model |
40
+ | `/provider` | Change provider |
41
+ | `/auth` | Change API key |
42
+ | `/session` | Switch to a saved session |
43
+ | `/new` | Start a fresh session |
44
+ | `/reasoning` | Toggle reasoning visibility |
45
+ | `/thinking` | Set thinking type (adaptive/enabled/disabled) |
46
+ | `/effort` | Set effort level (low/medium/high/xhigh/max) |
47
+ | `/exit` | Quit |
48
+
49
+ ## How it works
50
+
51
+ 1. You describe what you want in natural language.
52
+ 2. Gurt sends it to an LLM.
53
+ 3. The LLM decides which tool to use — read, write, edit, delete, or run a shell command.
54
+ 4. Gurt executes it and shows the result.
55
+
56
+ That's the whole loop. No plugins. No MCP. No subagents.
57
+
58
+ ---
59
+
60
+ Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea).
61
+ [GitHub](https://github.com/gru/gurtcli) · [Issues](https://github.com/gru/gurtcli/issues)
package/install.js CHANGED
@@ -31,7 +31,7 @@ if (!goos || !goarch) {
31
31
 
32
32
  const binaryName = goos === "windows" ? "gurtcli.exe" : "gurtcli";
33
33
  const archive = `gurtcli_${version}_${goos}_${goarch}.tar.gz`;
34
- const url = `https://github.com/gru/gurtcli/releases/download/v${version}/${archive}`;
34
+ const url = `https://github.com/sillygru/gurtcli/releases/download/v${version}/${archive}`;
35
35
  const binDir = path.join(__dirname, "bin");
36
36
  const binPath = path.join(binDir, binaryName);
37
37
  const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "gurtcli-"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gurtcli",
3
- "version": "0.5.3",
3
+ "version": "0.9.1",
4
4
  "description": "A coding agent in your terminal. Type what you want. It does the rest.",
5
5
  "bin": {
6
6
  "gurtcli": "cli.js"
@@ -11,11 +11,11 @@
11
11
  "license": "MIT",
12
12
  "repository": {
13
13
  "type": "git",
14
- "url": "git+https://github.com/gru/gurtcli.git"
14
+ "url": "git+https://github.com/sillygru/gurtcli.git"
15
15
  },
16
- "homepage": "https://github.com/gru/gurtcli",
16
+ "homepage": "https://github.com/sillygru/gurtcli",
17
17
  "bugs": {
18
- "url": "https://github.com/gru/gurtcli/issues"
18
+ "url": "https://github.com/sillygru/gurtcli/issues"
19
19
  },
20
20
  "engines": {
21
21
  "node": ">=18"