agentstuff 0.1.0 → 0.1.2
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 +10 -6
- package/dist/index.js +3420 -523
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,27 +11,31 @@ bun add --global agentstuff
|
|
|
11
11
|
agentstuff setup
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Setup
|
|
14
|
+
Setup opens an interactive wizard. It can perform a complete setup, repair only the desktop integration, pair another iPhone, or change the terminal shortcut. The complete flow checks prerequisites, installs the background service and terminal integration, selects an available short command, prepares the mobile app, displays the private pairing QR, and waits for connection confirmation.
|
|
15
|
+
|
|
16
|
+
When run from an Agentstuff development checkout, the wizard can build and install the iOS development app with Xcode. A configured `AGENTSTUFF_MOBILE_INSTALL_URL` enables the public mobile-download option. Until a TestFlight or App Store build is configured, npm cannot install a signed iOS app by itself.
|
|
15
17
|
|
|
16
18
|
Open a new terminal and start a live session:
|
|
17
19
|
|
|
18
20
|
```sh
|
|
19
21
|
cd your-project
|
|
20
|
-
|
|
22
|
+
agt
|
|
21
23
|
```
|
|
22
24
|
|
|
23
25
|
Arguments are forwarded unchanged:
|
|
24
26
|
|
|
25
27
|
```sh
|
|
26
|
-
|
|
27
|
-
|
|
28
|
+
agt --resume
|
|
29
|
+
agt --model opus
|
|
28
30
|
```
|
|
29
31
|
|
|
30
32
|
Use a different shortcut or leave your shell configuration untouched:
|
|
31
33
|
|
|
32
34
|
```sh
|
|
33
|
-
agentstuff setup --alias
|
|
35
|
+
agentstuff setup --alias myagent
|
|
34
36
|
agentstuff setup --no-alias
|
|
37
|
+
agentstuff setup --yes
|
|
38
|
+
agentstuff setup --no-pair
|
|
35
39
|
```
|
|
36
40
|
|
|
37
41
|
Without a shortcut, launch a connected session with `agentstuff claude`.
|
|
@@ -39,7 +43,7 @@ Without a shortcut, launch a connected session with `agentstuff claude`.
|
|
|
39
43
|
## Commands
|
|
40
44
|
|
|
41
45
|
```text
|
|
42
|
-
agentstuff setup [--alias
|
|
46
|
+
agentstuff setup [--alias NAME] [--no-alias] [--no-pair] [--relay URL] [--yes]
|
|
43
47
|
agentstuff claude [arguments...]
|
|
44
48
|
agentstuff pair [--reset] [--relay URL]
|
|
45
49
|
agentstuff status
|