@agentconnect.md/setup 1.36.1-rc.1 → 1.37.0-rc.4

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,17 +1,17 @@
1
1
  # `@agentconnect.md/setup`
2
2
 
3
- Browser-based Tenant Admin for AgentConnect self-hosting. It configures Logto,
4
- GitHub, Slack, Google, Feishu, and Lark through one authenticated local admin
3
+ Browser-based Setup Server for AgentConnect self-hosting. It configures Logto,
4
+ GitHub, Slack, Google, Feishu, and Lark through one authenticated local operator
5
5
  surface. Provider identities and write-only credentials are stored in the
6
6
  deployment database; the UI never returns stored secret values.
7
7
 
8
8
  This package has no command-line setup interface. Provider creation, match
9
9
  checks, edits, secret replacement, and clearing a provider configuration all
10
- happen in Tenant Admin.
10
+ happen in Setup.
11
11
 
12
12
  ## Run with Docker Compose
13
13
 
14
- The local authentication stack includes Tenant Admin:
14
+ The local authentication stack includes Setup Server:
15
15
 
16
16
  ```bash
17
17
  docker compose -f compose.yaml -f compose.logto.yaml up -d
@@ -19,11 +19,11 @@ docker compose -f compose.yaml -f compose.logto.yaml up -d
19
19
 
20
20
  Open:
21
21
 
22
- - Tenant Admin: `http://localhost:8091`
22
+ - Setup: `http://localhost:8091`
23
23
  - Logto Console: `http://localhost:3002`
24
24
  - AgentConnect: `http://localhost:3000`
25
25
 
26
- Tenant Admin first guides the operator through Logto Management API setup. It
26
+ Setup first guides the operator through Logto Management API setup. It
27
27
  does not display deployment configuration until an administrator has signed
28
28
  in. The first signed-in user is assigned the shared `ADMIN` role; sign in once
29
29
  more so the refreshed token contains that role.
@@ -53,9 +53,9 @@ AGENTCONNECT_PUBLIC_CP_URL=http://localhost:8080
53
53
  AGENTCONNECT_PUBLIC_RELAY_URL=http://localhost:8090
54
54
  ```
55
55
 
56
- Tenant Admin shows these values at the top because GitHub and Slack manifests
57
- derive their callbacks from them. Change the environment and restart Tenant
58
- Admin before applying updated provider settings.
56
+ Setup shows these values at the top because GitHub and Slack manifests
57
+ derive their callbacks from them. Change the environment and restart Setup
58
+ Server before applying updated provider settings.
59
59
 
60
60
  ## Configuration ownership
61
61
 
@@ -70,5 +70,5 @@ Restart the consuming services after editing:
70
70
  docker compose restart control-plane relay web
71
71
  ```
72
72
 
73
- Tenant Admin is bound to loopback in the supplied Compose stack. For a remote
73
+ Setup Server is bound to loopback in the supplied Compose stack. For a remote
74
74
  host, forward the port over SSH instead of exposing this HTTP service publicly.