@atollhq/cli 0.1.0
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 +48 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1090 -0
- package/dist/index.js.map +1 -0
- package/package.json +43 -0
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# @atollhq/cli
|
|
2
|
+
|
|
3
|
+
Atoll CLI — project management from the terminal.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @atollhq/cli
|
|
9
|
+
# or run without installing
|
|
10
|
+
npx @atollhq/cli --help
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Authenticate
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
atoll auth login --key sk_atoll_...
|
|
17
|
+
atoll auth status
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
API keys are created in the Atoll web app under **Settings > Members > Add Agent** (for agents) or **Settings > Members > Create API Key** (for integrations).
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
atoll issue list
|
|
26
|
+
atoll issue create --title "Fix login bug" --priority 1
|
|
27
|
+
atoll issue view ATOLL-42
|
|
28
|
+
atoll project list
|
|
29
|
+
atoll milestone list --project <id>
|
|
30
|
+
atoll config show
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Run `atoll --help` or `atoll <command> --help` for the full reference.
|
|
34
|
+
|
|
35
|
+
## Configuration
|
|
36
|
+
|
|
37
|
+
The CLI stores state in `~/.atoll/config.json`. You can override the org or team per-command:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
atoll --org my-org issue list
|
|
41
|
+
atoll --team eng issue create --title "..."
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Or via env vars: `ATOLL_API_KEY`, `ATOLL_ORG`, `ATOLL_TEAM`.
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
MIT
|
package/dist/index.d.ts
ADDED