@thegitai/cli 1.0.0-beta.18 → 1.0.0-beta.19

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 CHANGED
@@ -1,7 +1,8 @@
1
1
  # TheGitAI
2
2
 
3
- Interactive terminal coding agent. Talk to your repo in plain English — it
4
- reads code, edits files, and runs commands with your approval.
3
+ Interactive terminal coding agent. Talk to your repo in plain English — it reads
4
+ your code, makes edits, runs the commands a task needs, and keeps long-running
5
+ processes going while you work, all with your approval.
5
6
 
6
7
  ## Install
7
8
 
@@ -25,6 +26,22 @@ ai --version print the version and exit
25
26
 
26
27
  Run `ai --help` for sessions, modes, keys, and chat commands.
27
28
 
29
+ ## Background jobs
30
+
31
+ Some commands are meant to keep running — a dev server, a file watcher, a local
32
+ API. TheGitAI runs these as **background jobs**, so the agent can start a server,
33
+ work against it live, and stop it when the task is done, all in one session.
34
+
35
+ - Each job's block in the transcript updates on its own with a live tail of its
36
+ latest output, and a compact indicator keeps you aware of what's still running.
37
+ - Type `/jobs` to open a picker: **↑ / ↓** to move, **Enter** to expand a job and
38
+ read its output inline, **k** to stop it, **Esc** to close.
39
+ - `/jobs output <id>` prints a job's full output, and `/jobs kill <id>` stops one
40
+ by id.
41
+ - When you end the session, TheGitAI stops its background jobs for you.
42
+
43
+ Full documentation: <https://thegit.ai/docs>
44
+
28
45
  ## License
29
46
 
30
47
  Proprietary — see the LICENSE file included in this package. Source is
@@ -73,10 +73,10 @@ const HELP_MARKDOWN = [
73
73
  '- `/model` — list supported models and pick one',
74
74
  '- `/model <id>` — switch the active model without clearing history',
75
75
  '- `/resume` — resume a saved session for this repo',
76
- '- `/jobs` — open the background jobs picker (Enter expands/collapses,',
77
- ' k kills the selected job)',
76
+ '- `/jobs` — manage long-running commands like dev servers and watchers:',
77
+ ' browse them, press Enter to expand one and read its output, k to stop it',
78
78
  '- `/jobs output <id>` — print one job\'s full captured output',
79
- '- `/jobs kill <id>` — kill one background job',
79
+ '- `/jobs kill <id>` — stop one background job',
80
80
  '- `/clear` — clear the current conversation history',
81
81
  '- `/exit` — quit the session',
82
82
  '',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thegitai/cli",
3
- "version": "1.0.0-beta.18",
3
+ "version": "1.0.0-beta.19",
4
4
  "description": "TheGitAI CLI client (source-visible, proprietary)",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "homepage": "https://thegit.ai",
@@ -25,10 +25,10 @@
25
25
  "@lydell/node-pty-linux-x64": "1.1.0",
26
26
  "@lydell/node-pty-win32-arm64": "1.1.0",
27
27
  "@lydell/node-pty-win32-x64": "1.1.0",
28
- "@thegitai/tui-darwin-arm64": "1.0.0-beta.18",
29
- "@thegitai/tui-darwin-x64": "1.0.0-beta.18",
30
- "@thegitai/tui-linux-x64": "1.0.0-beta.18",
31
- "@thegitai/tui-win32-x64": "1.0.0-beta.18",
28
+ "@thegitai/tui-darwin-arm64": "1.0.0-beta.19",
29
+ "@thegitai/tui-darwin-x64": "1.0.0-beta.19",
30
+ "@thegitai/tui-linux-x64": "1.0.0-beta.19",
31
+ "@thegitai/tui-win32-x64": "1.0.0-beta.19",
32
32
  "@vscode/ripgrep": "1.18.0"
33
33
  },
34
34
  "publishConfig": {