tabminal 2.0.8 → 2.0.10
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/.dockerignore +7 -0
- package/AGENTS.md +9 -1
- package/README.md +7 -2
- package/package.json +1 -1
package/.dockerignore
ADDED
package/AGENTS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Tabminal Agent Notes
|
|
2
2
|
|
|
3
|
-
Last updated: 2026-
|
|
3
|
+
Last updated: 2026-03-23
|
|
4
4
|
|
|
5
5
|
This file is for future AI/code agents working in this repo.
|
|
6
6
|
Goal: keep context accurate, avoid reintroducing old bugs, and preserve current UX
|
|
@@ -12,6 +12,9 @@ contracts after the multi-host refactor.
|
|
|
12
12
|
- Backend entry: `src/server.mjs`.
|
|
13
13
|
- Frontend entry: `public/app.js` (plus modules in `public/modules/`).
|
|
14
14
|
- PWA shell: `public/index.html` + `public/sw.js`.
|
|
15
|
+
- Native app workspace: `apps/`
|
|
16
|
+
- Apple client: `apps/Apple`
|
|
17
|
+
- Ghostty vendor tooling: `apps/ghostty-vendor`
|
|
15
18
|
- Multi-host registry persistence: `~/.tabminal/cluster.json` via backend API.
|
|
16
19
|
|
|
17
20
|
Core idea now:
|
|
@@ -261,6 +264,11 @@ Frontend:
|
|
|
261
264
|
- `public/index.html`: shell DOM, runtime versioned loader, SW register.
|
|
262
265
|
- `public/sw.js`: runtime-versioned caching strategy.
|
|
263
266
|
|
|
267
|
+
Native apps:
|
|
268
|
+
- `apps/README.md`: native app architecture and rollout plan.
|
|
269
|
+
- `apps/Apple`: Apple-platform app, Swift package, CLI launch scripts.
|
|
270
|
+
- `apps/ghostty-vendor`: Ghostty xcframework build and verification helpers.
|
|
271
|
+
|
|
264
272
|
## 6) Logs and Debug Guidance
|
|
265
273
|
|
|
266
274
|
Expected, low-noise warnings:
|
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ As a long-time terminal user who frequently needs to step away from my computer
|
|
|
40
40
|
|
|
41
41
|
### 🧠 AI-Native Intelligence
|
|
42
42
|
Powered by **modern AI models** (via OpenRouter or OpenAI), `t> Tabminal` understands your context.
|
|
43
|
-
*(Defaults to **Gemini 3 Flash** for OpenRouter or **GPT-5.
|
|
43
|
+
*(Defaults to **Gemini 3 Flash** for OpenRouter or **GPT-5.4** for OpenAI if not configured)*
|
|
44
44
|
* **Context-Aware Chat**: Type `# how do I...` to ask questions. The AI knows your **CWD**, **Environment**, and **Recent History**.
|
|
45
45
|
* **Auto-Fix**: Command failed? `t> Tabminal` automatically analyzes the exit code and error output to suggest fixes. No copy-pasting required.
|
|
46
46
|
* **Web Search**: Enable Google Search integration to let the AI fetch real-time answers from the web.
|
|
@@ -52,6 +52,11 @@ Built from the ground up for **iPadOS**, **iOS** and **Android**.
|
|
|
52
52
|
* **Responsive Layout**: Auto-adapts to landscape/portrait modes, respecting Safe Areas and Notches.
|
|
53
53
|
* **PWA Ready**: Install to Home Screen for a full-screen, native app feel.
|
|
54
54
|
|
|
55
|
+
Native app work now lives under:
|
|
56
|
+
|
|
57
|
+
- `apps/Apple`: Apple-platform native client
|
|
58
|
+
- `apps/ghostty-vendor`: Ghostty xcframework vendor/build tooling
|
|
59
|
+
|
|
55
60
|
### 💻 Powerful Desktop Features
|
|
56
61
|
* **Persistent Sessions**: Your terminal state lives on the server. Refresh or switch devices without losing your work.
|
|
57
62
|
* **Built-in Editor**: Integrated **Monaco Editor** (VS Code core) allows you to edit files directly on the server.
|
|
@@ -124,7 +129,7 @@ You can configure `t> Tabminal` via command-line arguments, environment variable
|
|
|
124
129
|
| `-k`, `--openrouter-key` | `TABMINAL_OPENROUTER_KEY` | OpenRouter API Key (Mutually exclusive with OpenAI) | `null` |
|
|
125
130
|
| `-o`, `--openai-key` | `TABMINAL_OPENAI_KEY` | OpenAI API Key (Mutually exclusive with OpenRouter) | `null` |
|
|
126
131
|
| `-u`, `--openai-api` | `TABMINAL_OPENAI_API` | OpenAI Base API URL (Optional) | `null` |
|
|
127
|
-
| `-m`, `--model` | `TABMINAL_MODEL` | AI Model ID | `gpt-5.
|
|
132
|
+
| `-m`, `--model` | `TABMINAL_MODEL` | AI Model ID | `gpt-5.4` (OpenAI) / `gemini-3-flash-preview` (OpenRouter) |
|
|
128
133
|
| `-f`, `--cloudflare-key` | `TABMINAL_CLOUDFLARE_KEY` | Cloudflare Tunnel Token | `null` |
|
|
129
134
|
| `-g`, `--google-key` | `TABMINAL_GOOGLE_KEY` | Google Search API Key | `null` |
|
|
130
135
|
| `-c`, `--google-cx` | `TABMINAL_GOOGLE_CX` | Google Search Engine ID (CX) | `null` |
|