@sourcegraph/amp 0.0.1778718002-g664bf7-singleexe → 0.0.1778718002-g664bf7
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/LICENSE.md +1 -0
- package/README.md +44 -4
- package/dist/main.js +7830 -0
- package/package.json +27 -10
package/LICENSE.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
© Sourcegraph Inc. All rights reserved. Use of Amp is subject to Amp's [Terms of Service](https://ampcode.com/terms), or separate Amp terms that you have signed with Sourcegraph Inc.
|
package/README.md
CHANGED
|
@@ -1,11 +1,51 @@
|
|
|
1
1
|
# Amp CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[Amp](https://ampcode.com) is the frontier coding agent.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
- **Multi-Model:** Claude Opus 4.7, GPT-5.5, fast models—Amp uses them all, for what each model is best at.
|
|
6
|
+
- **Opinionated:** You're always using the good parts of Amp. If we don't use and love a feature, we kill it.
|
|
7
|
+
- **On the Frontier:** Amp goes where the models take it. No backcompat, no legacy features.
|
|
8
|
+
- **Threads:** You can save and share your interactions with Amp. You wouldn't code without version control, would you?
|
|
9
|
+
|
|
10
|
+
Amp has [3 agent modes](https://ampcode.com/models):
|
|
11
|
+
|
|
12
|
+
- `smart`: unconstrained state-of-the-art model use (Claude Opus 4.7, GPT-5.5, and more)
|
|
13
|
+
- `rush`: fast and efficient, for narrowly defined tasks (Claude Haiku 4.5)
|
|
14
|
+
- `deep`: deep reasoning with GPT-5.5 for extended thinking on complex problems
|
|
15
|
+
|
|
16
|
+
<br/>
|
|
17
|
+
|
|
18
|
+
<img src="https://static.ampcode.com/content/amp-cli-20251026-1.gif" width="800" height="463" alt="Amp CLI">
|
|
19
|
+
|
|
20
|
+
## Get Started
|
|
21
|
+
|
|
22
|
+
1. Sign into [ampcode.com/install](https://ampcode.com/install) and follow the instructions to install the Amp CLI.
|
|
23
|
+
2. Run `amp` and ask Amp to do something in your codebase.
|
|
24
|
+
|
|
25
|
+
See the [Amp Owner's Manual](https://ampcode.com/manual) for more information, and see [ampcode.com/news](https://ampcode.com/news) for what we've recently shipped.
|
|
26
|
+
|
|
27
|
+
## Recommended Installation
|
|
28
|
+
|
|
29
|
+
We recommend using our install script for macOS, Linux and WSL. It supports auto-updating and fast launch via Bun:
|
|
6
30
|
|
|
7
31
|
```bash
|
|
8
|
-
|
|
32
|
+
curl -fsSL https://ampcode.com/install.sh | bash
|
|
9
33
|
```
|
|
10
34
|
|
|
11
|
-
|
|
35
|
+
## npm Distribution
|
|
36
|
+
|
|
37
|
+
See the [`@ampcode/cli` package](https://www.npmjs.com/package/@ampcode/cli) on npm.
|
|
38
|
+
|
|
39
|
+
## Usage
|
|
40
|
+
|
|
41
|
+
After installation, run `amp`.
|
|
42
|
+
|
|
43
|
+
For non-interactive environments (e.g. scripts, CI/CD pipelines), set your API key in the `AMP_API_KEY` environment variable.
|
|
44
|
+
|
|
45
|
+
See `amp --help` and the [Amp CLI documentation](https://ampcode.com/manual#cli) for more information.
|
|
46
|
+
|
|
47
|
+
## Support
|
|
48
|
+
|
|
49
|
+
For help and feedback: mention [@AmpCode](https://x.com/AmpCode) on X, or email [amp-devs@ampcode.com](mailto:amp-devs@ampcode.com). You can also join our [Amp Insiders](https://ampcode.com/insiders) community.
|
|
50
|
+
|
|
51
|
+
For account and billing help, contact [amp-devs@ampcode.com](mailto:amp-devs@ampcode.com).
|