agentstuff 0.1.1 → 0.1.3
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 -2
- package/dist/index.js +3550 -519
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -11,7 +11,9 @@ bun add --global agentstuff
|
|
|
11
11
|
agentstuff setup
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Setup
|
|
14
|
+
Setup starts with two paths: a complete guided setup or a fast desktop repair. Complete setup walks through the iPhone, desktop integration, and terminal shortcut as separate numbered steps. Existing configuration is detected at every step, so you can show the current pairing code, rotate it, keep a healthy integration, or change the shortcut without redoing unrelated setup.
|
|
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
|
|
|
@@ -32,6 +34,8 @@ Use a different shortcut or leave your shell configuration untouched:
|
|
|
32
34
|
```sh
|
|
33
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 NAME] [--no-alias] [--relay URL]
|
|
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
|