@kmmao/happy-agent 0.2.2 → 0.3.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 +2 -2
- package/dist/index.cjs +1060 -97
- package/dist/index.d.cts +327 -0
- package/dist/index.d.mts +327 -0
- package/dist/index.mjs +1042 -98
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ yarn workspace happy-agent build
|
|
|
15
15
|
Or link globally:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
cd packages/happy-agent &&
|
|
18
|
+
cd packages/happy-agent && yarn link
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Authentication
|
|
@@ -119,7 +119,7 @@ Exit code 0 when agent becomes idle, 1 on timeout.
|
|
|
119
119
|
|
|
120
120
|
## Environment Variables
|
|
121
121
|
|
|
122
|
-
- `HAPPY_SERVER_URL` - API server URL (default: `https://
|
|
122
|
+
- `HAPPY_SERVER_URL` - API server URL (default: `https://happyserve.xycloud.info`)
|
|
123
123
|
- `HAPPY_HOME_DIR` - Home directory for credential storage (default: `~/.happy`)
|
|
124
124
|
|
|
125
125
|
## Session ID Matching
|