all-hands-cli 0.1.11 → 0.1.12
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/package.json +1 -1
- package/.allhands/README.md +0 -75
package/package.json
CHANGED
package/.allhands/README.md
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
# All Hands CLI
|
|
2
|
-
|
|
3
|
-
Internal CLI for the All Hands agentic harness.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
cd .allhands/harness
|
|
9
|
-
npm install
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
The `ah` command is automatically installed to `~/.local/bin/ah` when you run `npx all-hands init`. This shim finds and executes the project-local `.allhands/harness/ah` from any subdirectory.
|
|
13
|
-
|
|
14
|
-
For local development, copy the shim to your PATH:
|
|
15
|
-
```bash
|
|
16
|
-
cp .allhands/harness/ah ~/.local/bin/ah
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
### Universal Ctags (for `ah docs` command)
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
# macOS
|
|
23
|
-
brew install universal-ctags
|
|
24
|
-
|
|
25
|
-
# Ubuntu/Debian
|
|
26
|
-
sudo apt install universal-ctags
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
### AST-grep (for advanced code search)
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
# macOS
|
|
33
|
-
brew install ast-grep
|
|
34
|
-
|
|
35
|
-
# cargo
|
|
36
|
-
cargo install ast-grep --locked
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
### Desktop Notifications (macOS)
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
brew install --cask notifier
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
## Language Servers (for LSP tool)
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
npm install -g typescript-language-server typescript pyright
|
|
49
|
-
brew install swift
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
## Environment Variables
|
|
53
|
-
|
|
54
|
-
Check `.env.ai.example` for what you should populate `.env.ai` with.
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## Quick Start
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
ah <command>
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
The `ah` command works from any directory within an all-hands project.
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
## Project Settings
|
|
67
|
-
|
|
68
|
-
Project-specific configuration lives in `.allhands/settings.json`:
|
|
69
|
-
|
|
70
|
-
```json
|
|
71
|
-
{
|
|
72
|
-
"$schema": "./harness/src/schemas/settings.schema.json",
|
|
73
|
-
}
|
|
74
|
-
```
|
|
75
|
-
|