@autohq/cli 0.1.146 → 0.1.148
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 +6 -6
- package/dist/agent-bridge.js +217 -195
- package/dist/index.js +1278 -1167
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ ticket triage and resolution, automated incident response, custom-tailored
|
|
|
9
9
|
code review, organized fleets of agents on long-horizon tasks, and more.
|
|
10
10
|
|
|
11
11
|
This package is the `auto` command-line interface: authenticate, apply
|
|
12
|
-
resources, launch and attach to
|
|
12
|
+
resources, launch and attach to sessions, and manage your project from the
|
|
13
13
|
terminal.
|
|
14
14
|
|
|
15
15
|
> auto is an alpha project. Expect roughness around the edges.
|
|
@@ -28,7 +28,7 @@ note that both packages install an `auto` binary.)
|
|
|
28
28
|
The fastest path is agent-driven onboarding. Paste this into a coding agent
|
|
29
29
|
running in your repository (Claude Code, Cursor, Codex):
|
|
30
30
|
|
|
31
|
-
>
|
|
31
|
+
> Session `auto onboard --agent` and follow the instructions it prints.
|
|
32
32
|
|
|
33
33
|
The agent walks you through sign-in, studies your repo, and installs a
|
|
34
34
|
first workflow tailored to how your team works.
|
|
@@ -38,11 +38,11 @@ By hand:
|
|
|
38
38
|
```sh
|
|
39
39
|
auto auth login # sign in (device flow)
|
|
40
40
|
auto apply # apply .auto/ resources to your project
|
|
41
|
-
auto
|
|
41
|
+
auto start <agent> # launch a session; --attach to follow it
|
|
42
42
|
auto tui # interactive dashboard
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
Session `auto --help` for the full command tree.
|
|
46
46
|
|
|
47
47
|
## Accounts and profiles
|
|
48
48
|
|
|
@@ -55,7 +55,7 @@ auto account create staging # sign in and store under a profile name
|
|
|
55
55
|
auto account list # list stored accounts
|
|
56
56
|
auto account switch staging # make a profile (or email) active
|
|
57
57
|
auto account remove staging # delete a stored profile
|
|
58
|
-
auto --profile staging
|
|
58
|
+
auto --profile staging sessions list # use a profile for one invocation
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
The `auth` group offers the same operations with auth-centric spellings
|
|
@@ -71,7 +71,7 @@ Copyright Fractal Works. All rights reserved.
|
|
|
71
71
|
|
|
72
72
|
This package is distributed in compiled form for use with the auto
|
|
73
73
|
platform, and its use is governed by the auto Terms of Service. You may
|
|
74
|
-
install and
|
|
74
|
+
install and session this package to access the auto service. No license is
|
|
75
75
|
granted to copy, modify, reverse engineer, redistribute, or create
|
|
76
76
|
derivative works of this software, in whole or in part, except as required
|
|
77
77
|
by applicable law.
|