@autohq/cli 0.1.82
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 +63 -0
- package/dist/agent-bridge.js +46745 -0
- package/dist/index.js +31007 -0
- package/package.json +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# auto
|
|
2
|
+
|
|
3
|
+
auto lets you program software factories the same way you program CI/CD.
|
|
4
|
+
|
|
5
|
+
Compose agents and triggers into workflows using simple YAML files, and
|
|
6
|
+
deploy them into the cloud on merge. Anything that can be described in a
|
|
7
|
+
standard operating procedure can become a chart of agents and triggers:
|
|
8
|
+
ticket triage and resolution, automated incident response, custom-tailored
|
|
9
|
+
code review, organized fleets of agents on long-horizon tasks, and more.
|
|
10
|
+
|
|
11
|
+
This package is the `auto` command-line interface: authenticate, apply
|
|
12
|
+
resources, launch and attach to runs, and manage your project from the
|
|
13
|
+
terminal.
|
|
14
|
+
|
|
15
|
+
> auto is an alpha project. Expect roughness around the edges.
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
npm install -g @autohq/cli
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
This provides the `auto` command. (If you use Intuit's `auto` release tool,
|
|
24
|
+
note that both packages install an `auto` binary.)
|
|
25
|
+
|
|
26
|
+
## Get started
|
|
27
|
+
|
|
28
|
+
The fastest path is agent-driven onboarding. Paste this into a coding agent
|
|
29
|
+
running in your repository (Claude Code, Cursor, Codex):
|
|
30
|
+
|
|
31
|
+
> Run `auto onboard --agent` and follow the instructions it prints.
|
|
32
|
+
|
|
33
|
+
The agent walks you through sign-in, studies your repo, and installs a
|
|
34
|
+
first workflow tailored to how your team works.
|
|
35
|
+
|
|
36
|
+
By hand:
|
|
37
|
+
|
|
38
|
+
```sh
|
|
39
|
+
auto auth login # sign in (device flow)
|
|
40
|
+
auto apply # apply .auto/ resources to your project
|
|
41
|
+
auto run <session> # launch a session run; --attach to follow it
|
|
42
|
+
auto tui # interactive dashboard
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Run `auto --help` for the full command tree.
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
Copyright Fractal Works. All rights reserved.
|
|
50
|
+
|
|
51
|
+
This package is distributed in compiled form for use with the auto
|
|
52
|
+
platform, and its use is governed by the auto Terms of Service. You may
|
|
53
|
+
install and run this package to access the auto service. No license is
|
|
54
|
+
granted to copy, modify, reverse engineer, redistribute, or create
|
|
55
|
+
derivative works of this software, in whole or in part, except as required
|
|
56
|
+
by applicable law.
|
|
57
|
+
|
|
58
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
59
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
60
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
61
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
62
|
+
LIABILITY ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
63
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|