agenshield 2026.7.3 → 2026.7.4-alpha.6233854

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
@@ -66,7 +66,8 @@ agenshield doctor # Diagnose issues
66
66
 
67
67
  ## Cloud Integration
68
68
 
69
- AgenShield endpoints connect to [AgenShield Cloud](https://agen.co/shield) for:
69
+ AgenShield endpoints connect to AgenShield Cloud (via your
70
+ [Frontegg portal](https://portal.frontegg.com) workspace) for:
70
71
 
71
72
  - Centralized policy management and distribution
72
73
  - AI agent catalog with version tracking
@@ -76,11 +77,10 @@ AgenShield endpoints connect to [AgenShield Cloud](https://agen.co/shield) for:
76
77
 
77
78
  ## Documentation
78
79
 
79
- - [Website](https://agen.co/shield)
80
- - [GitHub](https://github.com/agen-co/agenshield)
80
+ - [GitHub (releases + docs)](https://github.com/agen-co/agenshield)
81
81
 
82
82
  ## License
83
83
 
84
84
  Apache-2.0 — see [LICENSE](./LICENSE) for details.
85
85
 
86
- A product of [Frontegg LTD](https://frontegg.com). Learn more at [agen.co/shield](https://agen.co/shield).
86
+ A product of [Frontegg LTD](https://frontegg.com).
package/bin/install.sh CHANGED
@@ -3,6 +3,10 @@
3
3
  #
4
4
  # Downloads and installs the AgenShield SEA binaries for the current platform.
5
5
  #
6
+ # Mirror set: the version-resolution + download logic here is deliberately
7
+ # kept in sync with libs/cli/src/utils/github-releases.ts (CLI) and
8
+ # tools/build/pkg/bootstrap/scripts/postinstall (MDM bootstrap pkg).
9
+ #
6
10
  # Multi-binary layout:
7
11
  # ~/.agenshield/bin/agenshield (CLI — on PATH)
8
12
  # ~/.agenshield/libexec/agenshield-daemon (Daemon — internal)
@@ -10,8 +14,11 @@
10
14
  # ~/.agenshield/lib/v{VERSION}/native/ (Native addons)
11
15
  #
12
16
  # Usage:
13
- # curl -fsSL https://get.agenshield.com/install.sh | sh
14
- # curl -fsSL https://get.agenshield.com/install.sh | bash -s -- --cloud-url https://cloud.example.com --org my-org
17
+ # npx agenshield install (the thin npm wrapper bundles this script)
18
+ # curl -fsSL '<cloudUrl>/resources/campaigns/v1/<token>/install.sh' | bash
19
+ # (the per-campaign copy served by agencloud, pre-filled with the
20
+ # enrollment token — copy the exact command from the portal's campaign
21
+ # page; it accepts the same options below)
15
22
  #
16
23
  # CLI arguments (override environment variables):
17
24
  # --cloud-url <url> Cloud/policy server URL for automatic enrollment
@@ -209,8 +216,8 @@ main() {
209
216
  -h|--help)
210
217
  printf "AgenShield Installer\n\n"
211
218
  printf "Usage:\n"
212
- printf " curl -fsSL https://get.agenshield.com/install.sh | sh\n"
213
- printf " curl -fsSL https://get.agenshield.com/install.sh | bash -s -- [OPTIONS]\n\n"
219
+ printf " npx agenshield install\n"
220
+ printf " curl -fsSL '<your campaign install URL from the portal>' | bash -s -- [OPTIONS]\n\n"
214
221
  printf "Options:\n"
215
222
  printf " --cloud-url <url> Cloud/policy server URL for automatic enrollment\n"
216
223
  printf " --org <id> Org client ID for MDM enrollment\n"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agenshield",
3
- "version": "2026.7.3",
3
+ "version": "2026.7.4-alpha.6233854",
4
4
  "description": "AgenShield — AI Agent Security Platform",
5
5
  "bin": {
6
6
  "agenshield": "bin/agenshield"
@@ -13,7 +13,7 @@
13
13
  "type": "git",
14
14
  "url": "git+https://github.com/agen-co/agenshield.git"
15
15
  },
16
- "homepage": "https://agen.co/shield",
16
+ "homepage": "https://github.com/agen-co/agenshield",
17
17
  "bugs": {
18
18
  "url": "https://github.com/agen-co/agenshield/issues"
19
19
  },