agi 0.1.0 → 0.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # AGI Browser
2
2
 
3
- AGI - Your magical browser agent assistant 🦄
3
+ AGI - Your intelligent browser worker
4
4
 
5
5
  ## Installation
6
6
 
@@ -12,7 +12,7 @@ npm install agi
12
12
 
13
13
  ## What it does
14
14
 
15
- This package automatically downloads and installs the AGI desktop application to your `~/Applications` folder during installation. The AGI app provides an intelligent browser automation assistant that can help you navigate and interact with web pages.
15
+ The AGI app provides an intelligent browser automation assistant that can help you navigate and interact with web pages.
16
16
 
17
17
  ## Requirements
18
18
 
@@ -21,11 +21,7 @@ This package automatically downloads and installs the AGI desktop application to
21
21
 
22
22
  ## Post-install
23
23
 
24
- After installation, the AGI app will:
25
- 1. Download the latest AGI.app DMG file
26
- 2. Mount the DMG
27
- 3. Copy AGI.app to your ~/Applications folder
28
- 4. Open the AGI app automatically
24
+ Install the AGI app
29
25
 
30
26
  ## License
31
27
 
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "agi",
3
- "version": "0.1.0",
4
- "description": "AGI - Your magical browser agent assistant 🦄",
3
+ "version": "0.2.1",
4
+ "description": "AGI - Your intelligent browser worker",
5
5
  "keywords": [
6
6
  "agi",
7
7
  "browser",
8
8
  "agent",
9
9
  "automation",
10
- "assistant"
10
+ "assistant",
11
+ "worker"
11
12
  ],
12
13
  "homepage": "https://agi.app",
13
14
  "license": "MIT",
@@ -20,8 +21,7 @@
20
21
  "LICENSE"
21
22
  ],
22
23
  "scripts": {
23
- "postinstall": "node scripts/install-dmg.js",
24
- "publish": "npm publish"
24
+ "postinstall": "node scripts/install-dmg.js"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=18.0.0"
@@ -6,7 +6,7 @@ const { execSync } = require("child_process");
6
6
  const path = require("path");
7
7
  const os = require("os");
8
8
 
9
- const DMG_URL = "https://agi-app.s3.us-east-1.amazonaws.com/agi-app/v1.0.0/AGI-1.0.0-arm64.dmg";
9
+ const DMG_URL = "https://agi-app.s3.us-east-1.amazonaws.com/agi-app/AGI-latest-mac.dmg";
10
10
  const dmgPath = path.join(os.tmpdir(), "AGI.dmg");
11
11
 
12
12
  (async () => {