higherup 1.0.0 → 2.0.1
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 +13 -11
- package/dist/agent.d.ts +1 -1
- package/dist/agent.js +757 -60
- package/dist/agent.js.map +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Higherup
|
|
2
2
|
|
|
3
3
|
**Give AI agents full access to your development machine.**
|
|
4
4
|
|
|
@@ -8,10 +8,10 @@ A CLI agent that connects your local environment to Higherup, enabling AI platfo
|
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
# Install globally from npm
|
|
11
|
-
npm install -g higherup
|
|
11
|
+
npm install -g higherup
|
|
12
12
|
|
|
13
13
|
# Or clone and build locally
|
|
14
|
-
git clone https://github.com/
|
|
14
|
+
git clone https://github.com/hnibbo/HUagent
|
|
15
15
|
cd agent
|
|
16
16
|
npm install
|
|
17
17
|
npm run build
|
|
@@ -174,18 +174,20 @@ See [API Documentation](https://higherup.ai/api) for details.
|
|
|
174
174
|
## Troubleshooting
|
|
175
175
|
|
|
176
176
|
### Connection Issues
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
# Check if agent can reach the server
|
|
180
|
+
curl https://pltlcpqtivuvyeuywvql.supabase.co/functions/v1/agent-relay
|
|
181
|
+
```
|
|
180
182
|
|
|
181
183
|
### Screen Capture Not Working
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
184
|
+
|
|
185
|
+
macOS: Grant Screen Recording permission in System Preferences
|
|
186
|
+
Linux: Install `scrot` or `imagemagick`
|
|
185
187
|
|
|
186
188
|
### Permission Errors
|
|
187
|
-
|
|
188
|
-
|
|
189
|
+
|
|
190
|
+
Ensure your API token is valid and has access to the workspace.
|
|
189
191
|
|
|
190
192
|
## License
|
|
191
193
|
|
package/dist/agent.d.ts
CHANGED