@ggcode-cli/ggcode 1.1.91 → 1.1.93
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 +30 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,9 +12,6 @@ If that directory is not on `PATH`, the installer updates your shell/user PATH a
|
|
|
12
12
|
reopen the terminal. The npm package keeps a separate `ggcode-bootstrap` helper command for manual
|
|
13
13
|
repair, but normal usage should be the real `ggcode` binary.
|
|
14
14
|
|
|
15
|
-
This package is just the release-backed installer layer. Product usage, harness workflows, and TUI
|
|
16
|
-
behavior are documented in the main repository README.
|
|
17
|
-
|
|
18
15
|
## Install
|
|
19
16
|
|
|
20
17
|
For normal CLI usage, install it globally:
|
|
@@ -59,6 +56,35 @@ or:
|
|
|
59
56
|
GGCODE_INSTALL_VERSION=X.Y.Z ggcode
|
|
60
57
|
```
|
|
61
58
|
|
|
59
|
+
## Native installers
|
|
60
|
+
|
|
61
|
+
Prefer a native package? Download directly from [GitHub Releases](https://github.com/topcheer/ggcode/releases/latest):
|
|
62
|
+
|
|
63
|
+
| Platform | Format | Install command |
|
|
64
|
+
| --- | --- | --- |
|
|
65
|
+
| macOS | `.pkg` | `sudo installer -pkg ./ggcode_*_darwin_universal.pkg -target /` |
|
|
66
|
+
| Windows | `.msi` | `msiexec /i .\ggcode_*_windows_x64.msi` |
|
|
67
|
+
| Debian / Ubuntu | `.deb` | `sudo dpkg -i ./ggcode_*_linux_*.deb` |
|
|
68
|
+
| Fedora / RHEL | `.rpm` | `sudo rpm -i ./ggcode-*-1.*.rpm` |
|
|
69
|
+
| Alpine | `.apk` | `sudo apk add --allow-untrusted ./ggcode-*-r1.*.apk` |
|
|
70
|
+
| Arch Linux | `.pkg.tar.zst` | `sudo pacman -U ./ggcode-*-1-*.pkg.tar.zst` |
|
|
71
|
+
|
|
72
|
+
## What is ggcode?
|
|
73
|
+
|
|
74
|
+
**ggcode** is a terminal-native AI coding agent — not a browser wrapper, not a VS Code extension.
|
|
75
|
+
It runs entirely in your terminal with a polished TUI:
|
|
76
|
+
|
|
77
|
+
- **Multi-provider LLM support** — OpenAI, Anthropic, Google Gemini, GitHub Copilot, DeepSeek, and more
|
|
78
|
+
- **Five permission modes** — supervised, plan, auto, bypass, autopilot — you decide how much autonomy the agent gets
|
|
79
|
+
- **LSP integration** — go-to-definition, references, rename, diagnostics, code actions via your language server
|
|
80
|
+
- **MCP tools** — connect external tool servers (browser, databases, APIs) seamlessly
|
|
81
|
+
- **Sub-agents** — spawn parallel workers for research, coding, and testing tasks
|
|
82
|
+
- **Harness workflows** — structured engineering pipelines with git worktrees, review, and promotion
|
|
83
|
+
- **IM gateway** — connect QQ, Telegram, Discord, Slack, DingTalk, or Feishu for remote coding
|
|
84
|
+
- **Bilingual UI** — full English and Chinese support
|
|
85
|
+
- **Session persistence** — resume past sessions with `ggcode --resume`
|
|
86
|
+
- **File checkpoints** — undo bad edits instantly without git
|
|
87
|
+
|
|
62
88
|
## Supported platforms
|
|
63
89
|
|
|
64
90
|
- macOS
|
|
@@ -72,5 +98,6 @@ Supported architectures:
|
|
|
72
98
|
|
|
73
99
|
## Project links
|
|
74
100
|
|
|
101
|
+
- GitHub Releases: https://github.com/topcheer/ggcode/releases
|
|
75
102
|
- Repository: https://github.com/topcheer/ggcode
|
|
76
103
|
- Issues: https://github.com/topcheer/ggcode/issues
|