@enterpriseai/cli 3.8.3 → 3.10.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 +36 -29
- package/dist/commands/deploy.d.ts +5 -2
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/deploy.js +75 -15
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/init.d.ts +69 -0
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +516 -35
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/template.js +1 -1
- package/dist/commands/template.js.map +1 -1
- package/dist/commands/user.js +93 -7
- package/dist/commands/user.js.map +1 -1
- package/dist/commands/verify.d.ts +2 -0
- package/dist/commands/verify.d.ts.map +1 -1
- package/dist/commands/verify.js +13 -4
- package/dist/commands/verify.js.map +1 -1
- package/dist/commands/vertical.d.ts.map +1 -1
- package/dist/commands/vertical.js +155 -3
- package/dist/commands/vertical.js.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/lib/api.d.ts +2 -0
- package/dist/lib/api.d.ts.map +1 -1
- package/dist/lib/api.js +4 -0
- package/dist/lib/api.js.map +1 -1
- package/dist/lib/error-guidance/catalog.d.ts +47 -31
- package/dist/lib/error-guidance/catalog.d.ts.map +1 -1
- package/dist/lib/error-guidance/catalog.js +77 -4
- package/dist/lib/error-guidance/catalog.js.map +1 -1
- package/dist/lib/error-guidance/match.d.ts.map +1 -1
- package/dist/lib/error-guidance/match.js +59 -1
- package/dist/lib/error-guidance/match.js.map +1 -1
- package/dist/lib/gofer-refresh.d.ts +2 -0
- package/dist/lib/gofer-refresh.d.ts.map +1 -1
- package/dist/lib/gofer-refresh.js +4 -4
- package/dist/lib/gofer-refresh.js.map +1 -1
- package/dist/lib/output.d.ts +3 -0
- package/dist/lib/output.d.ts.map +1 -1
- package/dist/lib/output.js +21 -0
- package/dist/lib/output.js.map +1 -1
- package/dist/lib/project-manifest.js +4 -4
- package/dist/lib/project-manifest.js.map +1 -1
- package/dist/lib/runtime-contract.d.ts +3 -0
- package/dist/lib/runtime-contract.d.ts.map +1 -1
- package/dist/lib/runtime-contract.js +7 -0
- package/dist/lib/runtime-contract.js.map +1 -1
- package/dist/lib/splash.d.ts +13 -0
- package/dist/lib/splash.d.ts.map +1 -0
- package/dist/lib/splash.js +151 -0
- package/dist/lib/splash.js.map +1 -0
- package/dist/lib/update-check.d.ts +2 -2
- package/dist/lib/update-check.d.ts.map +1 -1
- package/dist/lib/update-check.js +1 -1
- package/dist/lib/update-check.js.map +1 -1
- package/dist/lib/update-maintenance.js +1 -1
- package/dist/lib/update-maintenance.js.map +1 -1
- package/package.json +5 -5
- package/resources/gofer/.gofer-version +1 -1
- package/resources/gofer/agents-skills/0_gofer_start/SKILL.md +6 -6
- package/resources/gofer/agents-skills/1_gofer_research/SKILL.md +5 -5
- package/resources/gofer/agents-skills/gofer_bootstrap_workspace/SKILL.md +1 -1
- package/resources/gofer/agents-skills/gofer_eai_first_run/SKILL.md +2 -2
- package/resources/gofer/claude-commands/0_gofer_start.md +6 -6
- package/resources/gofer/claude-commands/1_gofer_research.md +5 -5
- package/resources/gofer/claude-commands/gofer_bootstrap_workspace.md +1 -1
- package/resources/gofer/claude-commands/gofer_eai_first_run.md +2 -2
- package/resources/gofer/commands/0_gofer_start.md +6 -6
- package/resources/gofer/commands/1_gofer_research.md +5 -5
- package/resources/gofer/commands/gofer_bootstrap_workspace.md +1 -1
- package/resources/gofer/commands/gofer_eai_first_run.md +2 -2
- package/resources/gofer/copilot-prompts/0_gofer_start.prompt.md +6 -6
- package/resources/gofer/copilot-prompts/1_gofer_research.prompt.md +5 -5
- package/resources/gofer/copilot-prompts/gofer_bootstrap_workspace.prompt.md +1 -1
- package/resources/gofer/copilot-prompts/gofer_eai_first_run.prompt.md +2 -2
- package/resources/gofer/gemini/commands/gofer/0_gofer_start.md +6 -6
- package/resources/gofer/gemini/commands/gofer/1_gofer_research.md +5 -5
- package/resources/gofer/gemini/commands/gofer/gofer_bootstrap_workspace.md +1 -1
- package/resources/gofer/gemini/commands/gofer/gofer_eai_first_run.md +2 -2
- package/resources/gofer/gemini/extension.json +7 -7
- package/resources/gofer/node-scripts/generate-commands.mjs +1 -1
- package/resources/gofer/node-scripts/package-agent-plugin.mjs +2 -2
- package/resources/gofer/references/platform/eai-app-template.md +1 -1
- package/resources/gofer/references/platform/eai-config-driven-ui.md +1 -1
- package/resources/gofer/references/platform/eai-error-catalog.yaml +1 -1
- package/resources/gofer/references/platform/vertical-template.md +1 -1
- package/resources/gofer/specify-commands/0_gofer_start.md +6 -6
- package/resources/gofer/specify-commands/1_gofer_research.md +5 -5
- package/resources/gofer/specify-commands/gofer_bootstrap_workspace.md +1 -1
- package/resources/gofer/specify-commands/gofer_eai_first_run.md +2 -2
- package/resources/gofer/system-skills/0_gofer_start/SKILL.md +6 -6
- package/resources/gofer/system-skills/1_gofer_research/SKILL.md +5 -5
- package/resources/gofer/system-skills/gofer_bootstrap_workspace/SKILL.md +1 -1
- package/resources/gofer/system-skills/gofer_eai_first_run/SKILL.md +2 -2
- package/resources/gofer/templates/eai-preflight-template.md +5 -5
- package/resources/linked-sources.json +2 -2
|
@@ -87,11 +87,11 @@ the EAI Gofer app-delivery path before continuing.
|
|
|
87
87
|
|
|
88
88
|
Use current public EAI documentation as the safe source of truth:
|
|
89
89
|
|
|
90
|
-
- EAI CLI docs: `https://eai-
|
|
91
|
-
- EAI API reference: `https://eai-
|
|
92
|
-
- EAI static registry: `https://eai-
|
|
93
|
-
- EAI scenario library: `https://eai-
|
|
94
|
-
- EAI app template: `https://github.com/eai-
|
|
90
|
+
- EAI CLI docs: `https://eai-support.github.io/eai/docs/overview`
|
|
91
|
+
- EAI API reference: `https://eai-support.github.io/eai/docs/api-reference`
|
|
92
|
+
- EAI static registry: `https://eai-support.github.io/eai/registry/`
|
|
93
|
+
- EAI scenario library: `https://eai-support.github.io/eai/scenarios`
|
|
94
|
+
- EAI app template: `https://github.com/eai-support/eai-app-template`
|
|
95
95
|
|
|
96
96
|
### EAI Platform And Azure App Stack Policy
|
|
97
97
|
|
|
@@ -152,7 +152,7 @@ with an unrelated non-EAI stack.
|
|
|
152
152
|
```bash
|
|
153
153
|
npm install -g eai-cli
|
|
154
154
|
# If npmjs is unavailable:
|
|
155
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
155
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
156
156
|
eai --version
|
|
157
157
|
```
|
|
158
158
|
- On Windows, use the same npm commands in PowerShell and avoid shell
|
|
@@ -455,11 +455,11 @@ explicitly `enterpriseai`, generate:
|
|
|
455
455
|
4. `{FEATURE_DIR}/eai-preflight.md` (EAI app delivery only, created by
|
|
456
456
|
`/0_gofer_start` when possible and updated here when missing or stale)
|
|
457
457
|
- Verify the safe public EAI source set used for research:
|
|
458
|
-
`https://eai-
|
|
459
|
-
`https://eai-
|
|
460
|
-
`https://eai-
|
|
461
|
-
`https://eai-
|
|
462
|
-
`https://github.com/eai-
|
|
458
|
+
`https://eai-support.github.io/eai/docs/overview`,
|
|
459
|
+
`https://eai-support.github.io/eai/docs/api-reference`,
|
|
460
|
+
`https://eai-support.github.io/eai/registry/`,
|
|
461
|
+
`https://eai-support.github.io/eai/scenarios`, and
|
|
462
|
+
`https://github.com/eai-support/eai-app-template`.
|
|
463
463
|
- Record whether `eai --describe` found the expected scaffolding,
|
|
464
464
|
authentication, tenant, app, resource schema, workflow
|
|
465
465
|
readiness, block catalog, diagnostics, Gofer-refresh, and template-check
|
|
@@ -48,7 +48,7 @@ Use the first source that exists:
|
|
|
48
48
|
3. Download the latest public bundle zip and extract it to a temporary folder:
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
curl -fsSL https://eai-
|
|
51
|
+
curl -fsSL https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-latest.zip \
|
|
52
52
|
-o /tmp/eai-gofer-agent-plugin-latest.zip
|
|
53
53
|
rm -rf /tmp/eai-gofer-bootstrap
|
|
54
54
|
mkdir -p /tmp/eai-gofer-bootstrap
|
|
@@ -91,14 +91,14 @@ If `eai` is missing, or if the user asks to update it, ask for approval and run:
|
|
|
91
91
|
```bash
|
|
92
92
|
npm install -g eai-cli
|
|
93
93
|
# If npmjs is unavailable:
|
|
94
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
94
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
95
95
|
eai --version
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
Use the same commands in PowerShell. Do not edit `.npmrc` by shell redirection.
|
|
99
99
|
|
|
100
100
|
Use the static fallback command only when npmjs is unavailable. If `npm config get @enterpriseai:registry` already equals
|
|
101
|
-
`https://eai-
|
|
101
|
+
`https://eai-support.github.io/eai/registry/`, do not rewrite it. If it points
|
|
102
102
|
somewhere else, show the current value and ask before changing it.
|
|
103
103
|
|
|
104
104
|
If `eai` is already installed, run:
|
|
@@ -82,11 +82,11 @@ the EAI Gofer app-delivery path before continuing.
|
|
|
82
82
|
|
|
83
83
|
Use current public EAI documentation as the safe source of truth:
|
|
84
84
|
|
|
85
|
-
- EAI CLI docs: `https://eai-
|
|
86
|
-
- EAI API reference: `https://eai-
|
|
87
|
-
- EAI static registry: `https://eai-
|
|
88
|
-
- EAI scenario library: `https://eai-
|
|
89
|
-
- EAI app template: `https://github.com/eai-
|
|
85
|
+
- EAI CLI docs: `https://eai-support.github.io/eai/docs/overview`
|
|
86
|
+
- EAI API reference: `https://eai-support.github.io/eai/docs/api-reference`
|
|
87
|
+
- EAI static registry: `https://eai-support.github.io/eai/registry/`
|
|
88
|
+
- EAI scenario library: `https://eai-support.github.io/eai/scenarios`
|
|
89
|
+
- EAI app template: `https://github.com/eai-support/eai-app-template`
|
|
90
90
|
|
|
91
91
|
### EAI Platform And Azure App Stack Policy
|
|
92
92
|
|
|
@@ -147,7 +147,7 @@ with an unrelated non-EAI stack.
|
|
|
147
147
|
```bash
|
|
148
148
|
npm install -g eai-cli
|
|
149
149
|
# If npmjs is unavailable:
|
|
150
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
150
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
151
151
|
eai --version
|
|
152
152
|
```
|
|
153
153
|
- On Windows, use the same npm commands in PowerShell and avoid shell
|
|
@@ -450,11 +450,11 @@ explicitly `enterpriseai`, generate:
|
|
|
450
450
|
4. `{FEATURE_DIR}/eai-preflight.md` (EAI app delivery only, created by
|
|
451
451
|
`/0_gofer_start` when possible and updated here when missing or stale)
|
|
452
452
|
- Verify the safe public EAI source set used for research:
|
|
453
|
-
`https://eai-
|
|
454
|
-
`https://eai-
|
|
455
|
-
`https://eai-
|
|
456
|
-
`https://eai-
|
|
457
|
-
`https://github.com/eai-
|
|
453
|
+
`https://eai-support.github.io/eai/docs/overview`,
|
|
454
|
+
`https://eai-support.github.io/eai/docs/api-reference`,
|
|
455
|
+
`https://eai-support.github.io/eai/registry/`,
|
|
456
|
+
`https://eai-support.github.io/eai/scenarios`, and
|
|
457
|
+
`https://github.com/eai-support/eai-app-template`.
|
|
458
458
|
- Record whether `eai --describe` found the expected scaffolding,
|
|
459
459
|
authentication, tenant, app, resource schema, workflow
|
|
460
460
|
readiness, block catalog, diagnostics, Gofer-refresh, and template-check
|
|
@@ -43,7 +43,7 @@ Use the first source that exists:
|
|
|
43
43
|
3. Download the latest public bundle zip and extract it to a temporary folder:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
curl -fsSL https://eai-
|
|
46
|
+
curl -fsSL https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-latest.zip \
|
|
47
47
|
-o /tmp/eai-gofer-agent-plugin-latest.zip
|
|
48
48
|
rm -rf /tmp/eai-gofer-bootstrap
|
|
49
49
|
mkdir -p /tmp/eai-gofer-bootstrap
|
|
@@ -86,14 +86,14 @@ If `eai` is missing, or if the user asks to update it, ask for approval and run:
|
|
|
86
86
|
```bash
|
|
87
87
|
npm install -g eai-cli
|
|
88
88
|
# If npmjs is unavailable:
|
|
89
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
89
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
90
90
|
eai --version
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
Use the same commands in PowerShell. Do not edit `.npmrc` by shell redirection.
|
|
94
94
|
|
|
95
95
|
Use the static fallback command only when npmjs is unavailable. If `npm config get @enterpriseai:registry` already equals
|
|
96
|
-
`https://eai-
|
|
96
|
+
`https://eai-support.github.io/eai/registry/`, do not rewrite it. If it points
|
|
97
97
|
somewhere else, show the current value and ask before changing it.
|
|
98
98
|
|
|
99
99
|
If `eai` is already installed, run:
|
|
@@ -99,11 +99,11 @@ the EAI Gofer app-delivery path before continuing.
|
|
|
99
99
|
|
|
100
100
|
Use current public EAI documentation as the safe source of truth:
|
|
101
101
|
|
|
102
|
-
- EAI CLI docs: `https://eai-
|
|
103
|
-
- EAI API reference: `https://eai-
|
|
104
|
-
- EAI static registry: `https://eai-
|
|
105
|
-
- EAI scenario library: `https://eai-
|
|
106
|
-
- EAI app template: `https://github.com/eai-
|
|
102
|
+
- EAI CLI docs: `https://eai-support.github.io/eai/docs/overview`
|
|
103
|
+
- EAI API reference: `https://eai-support.github.io/eai/docs/api-reference`
|
|
104
|
+
- EAI static registry: `https://eai-support.github.io/eai/registry/`
|
|
105
|
+
- EAI scenario library: `https://eai-support.github.io/eai/scenarios`
|
|
106
|
+
- EAI app template: `https://github.com/eai-support/eai-app-template`
|
|
107
107
|
|
|
108
108
|
### EAI Platform And Azure App Stack Policy
|
|
109
109
|
|
|
@@ -164,7 +164,7 @@ with an unrelated non-EAI stack.
|
|
|
164
164
|
```bash
|
|
165
165
|
npm install -g eai-cli
|
|
166
166
|
# If npmjs is unavailable:
|
|
167
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
167
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
168
168
|
eai --version
|
|
169
169
|
```
|
|
170
170
|
- On Windows, use the same npm commands in PowerShell and avoid shell
|
|
@@ -431,11 +431,11 @@ explicitly `enterpriseai`, generate:
|
|
|
431
431
|
4. `{FEATURE_DIR}/eai-preflight.md` (EAI app delivery only, created by
|
|
432
432
|
`/0_gofer_start` when possible and updated here when missing or stale)
|
|
433
433
|
- Verify the safe public EAI source set used for research:
|
|
434
|
-
`https://eai-
|
|
435
|
-
`https://eai-
|
|
436
|
-
`https://eai-
|
|
437
|
-
`https://eai-
|
|
438
|
-
`https://github.com/eai-
|
|
434
|
+
`https://eai-support.github.io/eai/docs/overview`,
|
|
435
|
+
`https://eai-support.github.io/eai/docs/api-reference`,
|
|
436
|
+
`https://eai-support.github.io/eai/registry/`,
|
|
437
|
+
`https://eai-support.github.io/eai/scenarios`, and
|
|
438
|
+
`https://github.com/eai-support/eai-app-template`.
|
|
439
439
|
- Record whether `eai --describe` found the expected scaffolding,
|
|
440
440
|
authentication, tenant, app, resource schema, workflow
|
|
441
441
|
readiness, block catalog, diagnostics, Gofer-refresh, and template-check
|
|
@@ -59,7 +59,7 @@ Use the first source that exists:
|
|
|
59
59
|
3. Download the latest public bundle zip and extract it to a temporary folder:
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
curl -fsSL https://eai-
|
|
62
|
+
curl -fsSL https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-latest.zip \
|
|
63
63
|
-o /tmp/eai-gofer-agent-plugin-latest.zip
|
|
64
64
|
rm -rf /tmp/eai-gofer-bootstrap
|
|
65
65
|
mkdir -p /tmp/eai-gofer-bootstrap
|
|
@@ -86,14 +86,14 @@ If `eai` is missing, or if the user asks to update it, ask for approval and run:
|
|
|
86
86
|
```bash
|
|
87
87
|
npm install -g eai-cli
|
|
88
88
|
# If npmjs is unavailable:
|
|
89
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
89
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
90
90
|
eai --version
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
Use the same commands in PowerShell. Do not edit `.npmrc` by shell redirection.
|
|
94
94
|
|
|
95
95
|
Use the static fallback command only when npmjs is unavailable. If `npm config get @enterpriseai:registry` already equals
|
|
96
|
-
`https://eai-
|
|
96
|
+
`https://eai-support.github.io/eai/registry/`, do not rewrite it. If it points
|
|
97
97
|
somewhere else, show the current value and ask before changing it.
|
|
98
98
|
|
|
99
99
|
If `eai` is already installed, run:
|
|
@@ -97,11 +97,11 @@ the EAI Gofer app-delivery path before continuing.
|
|
|
97
97
|
|
|
98
98
|
Use current public EAI documentation as the safe source of truth:
|
|
99
99
|
|
|
100
|
-
- EAI CLI docs: `https://eai-
|
|
101
|
-
- EAI API reference: `https://eai-
|
|
102
|
-
- EAI static registry: `https://eai-
|
|
103
|
-
- EAI scenario library: `https://eai-
|
|
104
|
-
- EAI app template: `https://github.com/eai-
|
|
100
|
+
- EAI CLI docs: `https://eai-support.github.io/eai/docs/overview`
|
|
101
|
+
- EAI API reference: `https://eai-support.github.io/eai/docs/api-reference`
|
|
102
|
+
- EAI static registry: `https://eai-support.github.io/eai/registry/`
|
|
103
|
+
- EAI scenario library: `https://eai-support.github.io/eai/scenarios`
|
|
104
|
+
- EAI app template: `https://github.com/eai-support/eai-app-template`
|
|
105
105
|
|
|
106
106
|
### EAI Platform And Azure App Stack Policy
|
|
107
107
|
|
|
@@ -162,7 +162,7 @@ with an unrelated non-EAI stack.
|
|
|
162
162
|
```bash
|
|
163
163
|
npm install -g eai-cli
|
|
164
164
|
# If npmjs is unavailable:
|
|
165
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
165
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
166
166
|
eai --version
|
|
167
167
|
```
|
|
168
168
|
- On Windows, use the same npm commands in PowerShell and avoid shell
|
|
@@ -465,11 +465,11 @@ explicitly `enterpriseai`, generate:
|
|
|
465
465
|
4. `{FEATURE_DIR}/eai-preflight.md` (EAI app delivery only, created by
|
|
466
466
|
`#0_gofer_start` when possible and updated here when missing or stale)
|
|
467
467
|
- Verify the safe public EAI source set used for research:
|
|
468
|
-
`https://eai-
|
|
469
|
-
`https://eai-
|
|
470
|
-
`https://eai-
|
|
471
|
-
`https://eai-
|
|
472
|
-
`https://github.com/eai-
|
|
468
|
+
`https://eai-support.github.io/eai/docs/overview`,
|
|
469
|
+
`https://eai-support.github.io/eai/docs/api-reference`,
|
|
470
|
+
`https://eai-support.github.io/eai/registry/`,
|
|
471
|
+
`https://eai-support.github.io/eai/scenarios`, and
|
|
472
|
+
`https://github.com/eai-support/eai-app-template`.
|
|
473
473
|
- Record whether `eai --describe` found the expected scaffolding,
|
|
474
474
|
authentication, tenant, app, resource schema, workflow
|
|
475
475
|
readiness, block catalog, diagnostics, Gofer-refresh, and template-check
|
|
@@ -61,7 +61,7 @@ Use the first source that exists:
|
|
|
61
61
|
3. Download the latest public bundle zip and extract it to a temporary folder:
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
|
-
curl -fsSL https://eai-
|
|
64
|
+
curl -fsSL https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-latest.zip \
|
|
65
65
|
-o /tmp/eai-gofer-agent-plugin-latest.zip
|
|
66
66
|
rm -rf /tmp/eai-gofer-bootstrap
|
|
67
67
|
mkdir -p /tmp/eai-gofer-bootstrap
|
|
@@ -104,14 +104,14 @@ If `eai` is missing, or if the user asks to update it, ask for approval and run:
|
|
|
104
104
|
```bash
|
|
105
105
|
npm install -g eai-cli
|
|
106
106
|
# If npmjs is unavailable:
|
|
107
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
107
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
108
108
|
eai --version
|
|
109
109
|
```
|
|
110
110
|
|
|
111
111
|
Use the same commands in PowerShell. Do not edit `.npmrc` by shell redirection.
|
|
112
112
|
|
|
113
113
|
Use the static fallback command only when npmjs is unavailable. If `npm config get @enterpriseai:registry` already equals
|
|
114
|
-
`https://eai-
|
|
114
|
+
`https://eai-support.github.io/eai/registry/`, do not rewrite it. If it points
|
|
115
115
|
somewhere else, show the current value and ask before changing it.
|
|
116
116
|
|
|
117
117
|
If `eai` is already installed, run:
|
|
@@ -82,11 +82,11 @@ the EAI Gofer app-delivery path before continuing.
|
|
|
82
82
|
|
|
83
83
|
Use current public EAI documentation as the safe source of truth:
|
|
84
84
|
|
|
85
|
-
- EAI CLI docs: `https://eai-
|
|
86
|
-
- EAI API reference: `https://eai-
|
|
87
|
-
- EAI static registry: `https://eai-
|
|
88
|
-
- EAI scenario library: `https://eai-
|
|
89
|
-
- EAI app template: `https://github.com/eai-
|
|
85
|
+
- EAI CLI docs: `https://eai-support.github.io/eai/docs/overview`
|
|
86
|
+
- EAI API reference: `https://eai-support.github.io/eai/docs/api-reference`
|
|
87
|
+
- EAI static registry: `https://eai-support.github.io/eai/registry/`
|
|
88
|
+
- EAI scenario library: `https://eai-support.github.io/eai/scenarios`
|
|
89
|
+
- EAI app template: `https://github.com/eai-support/eai-app-template`
|
|
90
90
|
|
|
91
91
|
### EAI Platform And Azure App Stack Policy
|
|
92
92
|
|
|
@@ -147,7 +147,7 @@ with an unrelated non-EAI stack.
|
|
|
147
147
|
```bash
|
|
148
148
|
npm install -g eai-cli
|
|
149
149
|
# If npmjs is unavailable:
|
|
150
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
150
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
151
151
|
eai --version
|
|
152
152
|
```
|
|
153
153
|
- On Windows, use the same npm commands in PowerShell and avoid shell
|
|
@@ -450,11 +450,11 @@ explicitly `enterpriseai`, generate:
|
|
|
450
450
|
4. `{FEATURE_DIR}/eai-preflight.md` (EAI app delivery only, created by
|
|
451
451
|
`/0_gofer_start` when possible and updated here when missing or stale)
|
|
452
452
|
- Verify the safe public EAI source set used for research:
|
|
453
|
-
`https://eai-
|
|
454
|
-
`https://eai-
|
|
455
|
-
`https://eai-
|
|
456
|
-
`https://eai-
|
|
457
|
-
`https://github.com/eai-
|
|
453
|
+
`https://eai-support.github.io/eai/docs/overview`,
|
|
454
|
+
`https://eai-support.github.io/eai/docs/api-reference`,
|
|
455
|
+
`https://eai-support.github.io/eai/registry/`,
|
|
456
|
+
`https://eai-support.github.io/eai/scenarios`, and
|
|
457
|
+
`https://github.com/eai-support/eai-app-template`.
|
|
458
458
|
- Record whether `eai --describe` found the expected scaffolding,
|
|
459
459
|
authentication, tenant, app, resource schema, workflow
|
|
460
460
|
readiness, block catalog, diagnostics, Gofer-refresh, and template-check
|
|
@@ -43,7 +43,7 @@ Use the first source that exists:
|
|
|
43
43
|
3. Download the latest public bundle zip and extract it to a temporary folder:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
curl -fsSL https://eai-
|
|
46
|
+
curl -fsSL https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-latest.zip \
|
|
47
47
|
-o /tmp/eai-gofer-agent-plugin-latest.zip
|
|
48
48
|
rm -rf /tmp/eai-gofer-bootstrap
|
|
49
49
|
mkdir -p /tmp/eai-gofer-bootstrap
|
|
@@ -86,14 +86,14 @@ If `eai` is missing, or if the user asks to update it, ask for approval and run:
|
|
|
86
86
|
```bash
|
|
87
87
|
npm install -g eai-cli
|
|
88
88
|
# If npmjs is unavailable:
|
|
89
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
89
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
90
90
|
eai --version
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
Use the same commands in PowerShell. Do not edit `.npmrc` by shell redirection.
|
|
94
94
|
|
|
95
95
|
Use the static fallback command only when npmjs is unavailable. If `npm config get @enterpriseai:registry` already equals
|
|
96
|
-
`https://eai-
|
|
96
|
+
`https://eai-support.github.io/eai/registry/`, do not rewrite it. If it points
|
|
97
97
|
somewhere else, show the current value and ask before changing it.
|
|
98
98
|
|
|
99
99
|
If `eai` is already installed, run:
|
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"commands": ".gemini/commands/gofer/",
|
|
7
7
|
"gofer": {
|
|
8
|
-
"bundle_url": "https://eai-
|
|
9
|
-
"manifest_url": "https://eai-
|
|
10
|
-
"commands_manifest_url": "https://eai-
|
|
11
|
-
"download_url": "https://eai-
|
|
12
|
-
"latest_download_url": "https://eai-
|
|
13
|
-
"vsix_url": "https://eai-
|
|
14
|
-
"latest_vsix_url": "https://eai-
|
|
8
|
+
"bundle_url": "https://eai-support.github.io/eai-gofer/releases/plugins/eai-gofer",
|
|
9
|
+
"manifest_url": "https://eai-support.github.io/eai-gofer/releases/plugins/eai-gofer/gemini-extension.json",
|
|
10
|
+
"commands_manifest_url": "https://eai-support.github.io/eai-gofer/releases/plugins/eai-gofer/gemini-commands-manifest.json",
|
|
11
|
+
"download_url": "https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-3.7.14.zip",
|
|
12
|
+
"latest_download_url": "https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-latest.zip",
|
|
13
|
+
"vsix_url": "https://eai-support.github.io/eai-gofer/releases/eai-gofer-3.7.14.vsix",
|
|
14
|
+
"latest_vsix_url": "https://eai-support.github.io/eai-gofer/releases/eai-gofer-latest.vsix"
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -42,7 +42,7 @@ const ALL_SURFACES = [
|
|
|
42
42
|
'codex-config',
|
|
43
43
|
];
|
|
44
44
|
|
|
45
|
-
const PUBLIC_SITE_URL = 'https://eai-
|
|
45
|
+
const PUBLIC_SITE_URL = 'https://eai-support.github.io/eai-gofer';
|
|
46
46
|
const PUBLIC_RELEASES_URL = `${PUBLIC_SITE_URL}/releases`;
|
|
47
47
|
const PUBLIC_PLUGIN_URL = `${PUBLIC_RELEASES_URL}/plugins/eai-gofer`;
|
|
48
48
|
const SURFACE_WORKSPACE_HOSTS = {
|
|
@@ -21,8 +21,8 @@ const PLUGIN_DISPLAY_NAME = 'Gofer';
|
|
|
21
21
|
const UMBRELLA_SKILLS_DIR = 'plugin-skills';
|
|
22
22
|
const PLUGIN_ICON_SOURCE = 'extension/icon.png';
|
|
23
23
|
const PLUGIN_ICON_TARGET = 'assets/eai-gofer-icon.png';
|
|
24
|
-
const REPOSITORY_URL = 'https://github.com/eai-
|
|
25
|
-
const PUBLIC_SITE_URL = 'https://eai-
|
|
24
|
+
const REPOSITORY_URL = 'https://github.com/eai-support/eai-gofer';
|
|
25
|
+
const PUBLIC_SITE_URL = 'https://eai-support.github.io/eai-gofer';
|
|
26
26
|
const PUBLIC_RELEASES_URL = `${PUBLIC_SITE_URL}/releases`;
|
|
27
27
|
const PUBLIC_PLUGIN_URL = `${PUBLIC_RELEASES_URL}/plugins/${PLUGIN_NAME}`;
|
|
28
28
|
const CLAUDE_MARKETPLACE_URL = `${PUBLIC_PLUGIN_URL}/claude-marketplace.json`;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# EAI Config-Driven UI Reference
|
|
2
2
|
|
|
3
3
|
Use this public-safe guide when eai-gofer is planning, generating, or modifying
|
|
4
|
-
an app based on `https://github.com/eai-
|
|
4
|
+
an app based on `https://github.com/eai-support/eai-app-template`.
|
|
5
5
|
|
|
6
6
|
## Source Files
|
|
7
7
|
|
|
@@ -9,7 +9,7 @@ catalog:
|
|
|
9
9
|
likelyCause: Local workstation or container is missing the CLI.
|
|
10
10
|
recovery:
|
|
11
11
|
- 'npm install -g eai-cli'
|
|
12
|
-
- 'If npmjs is unavailable: npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
12
|
+
- 'If npmjs is unavailable: npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/'
|
|
13
13
|
- 'eai --version'
|
|
14
14
|
nextGate: cli_installed
|
|
15
15
|
- errorId: EAI_CLI_OUTDATED
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Vertical Template Reference
|
|
2
2
|
|
|
3
|
-
Use `https://github.com/eai-
|
|
3
|
+
Use `https://github.com/eai-support/eai-app-template` as the canonical public app
|
|
4
4
|
template for EnterpriseAI app-delivery work.
|
|
5
5
|
|
|
6
6
|
This file is the preferred alias for the legacy `eai-app-template.md` fallback
|
|
@@ -99,11 +99,11 @@ the EAI Gofer app-delivery path before continuing.
|
|
|
99
99
|
|
|
100
100
|
Use current public EAI documentation as the safe source of truth:
|
|
101
101
|
|
|
102
|
-
- EAI CLI docs: `https://eai-
|
|
103
|
-
- EAI API reference: `https://eai-
|
|
104
|
-
- EAI static registry: `https://eai-
|
|
105
|
-
- EAI scenario library: `https://eai-
|
|
106
|
-
- EAI app template: `https://github.com/eai-
|
|
102
|
+
- EAI CLI docs: `https://eai-support.github.io/eai/docs/overview`
|
|
103
|
+
- EAI API reference: `https://eai-support.github.io/eai/docs/api-reference`
|
|
104
|
+
- EAI static registry: `https://eai-support.github.io/eai/registry/`
|
|
105
|
+
- EAI scenario library: `https://eai-support.github.io/eai/scenarios`
|
|
106
|
+
- EAI app template: `https://github.com/eai-support/eai-app-template`
|
|
107
107
|
|
|
108
108
|
### EAI Platform And Azure App Stack Policy
|
|
109
109
|
|
|
@@ -164,7 +164,7 @@ with an unrelated non-EAI stack.
|
|
|
164
164
|
```bash
|
|
165
165
|
npm install -g eai-cli
|
|
166
166
|
# If npmjs is unavailable:
|
|
167
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
167
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
168
168
|
eai --version
|
|
169
169
|
```
|
|
170
170
|
- On Windows, use the same npm commands in PowerShell and avoid shell
|
|
@@ -431,11 +431,11 @@ explicitly `enterpriseai`, generate:
|
|
|
431
431
|
4. `{FEATURE_DIR}/eai-preflight.md` (EAI app delivery only, created by
|
|
432
432
|
`/0_gofer_start` when possible and updated here when missing or stale)
|
|
433
433
|
- Verify the safe public EAI source set used for research:
|
|
434
|
-
`https://eai-
|
|
435
|
-
`https://eai-
|
|
436
|
-
`https://eai-
|
|
437
|
-
`https://eai-
|
|
438
|
-
`https://github.com/eai-
|
|
434
|
+
`https://eai-support.github.io/eai/docs/overview`,
|
|
435
|
+
`https://eai-support.github.io/eai/docs/api-reference`,
|
|
436
|
+
`https://eai-support.github.io/eai/registry/`,
|
|
437
|
+
`https://eai-support.github.io/eai/scenarios`, and
|
|
438
|
+
`https://github.com/eai-support/eai-app-template`.
|
|
439
439
|
- Record whether `eai --describe` found the expected scaffolding,
|
|
440
440
|
authentication, tenant, app, resource schema, workflow
|
|
441
441
|
readiness, block catalog, diagnostics, Gofer-refresh, and template-check
|
|
@@ -59,7 +59,7 @@ Use the first source that exists:
|
|
|
59
59
|
3. Download the latest public bundle zip and extract it to a temporary folder:
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
curl -fsSL https://eai-
|
|
62
|
+
curl -fsSL https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-latest.zip \
|
|
63
63
|
-o /tmp/eai-gofer-agent-plugin-latest.zip
|
|
64
64
|
rm -rf /tmp/eai-gofer-bootstrap
|
|
65
65
|
mkdir -p /tmp/eai-gofer-bootstrap
|
|
@@ -86,14 +86,14 @@ If `eai` is missing, or if the user asks to update it, ask for approval and run:
|
|
|
86
86
|
```bash
|
|
87
87
|
npm install -g eai-cli
|
|
88
88
|
# If npmjs is unavailable:
|
|
89
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
89
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
90
90
|
eai --version
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
Use the same commands in PowerShell. Do not edit `.npmrc` by shell redirection.
|
|
94
94
|
|
|
95
95
|
Use the static fallback command only when npmjs is unavailable. If `npm config get @enterpriseai:registry` already equals
|
|
96
|
-
`https://eai-
|
|
96
|
+
`https://eai-support.github.io/eai/registry/`, do not rewrite it. If it points
|
|
97
97
|
somewhere else, show the current value and ask before changing it.
|
|
98
98
|
|
|
99
99
|
If `eai` is already installed, run:
|
|
@@ -87,11 +87,11 @@ the EAI Gofer app-delivery path before continuing.
|
|
|
87
87
|
|
|
88
88
|
Use current public EAI documentation as the safe source of truth:
|
|
89
89
|
|
|
90
|
-
- EAI CLI docs: `https://eai-
|
|
91
|
-
- EAI API reference: `https://eai-
|
|
92
|
-
- EAI static registry: `https://eai-
|
|
93
|
-
- EAI scenario library: `https://eai-
|
|
94
|
-
- EAI app template: `https://github.com/eai-
|
|
90
|
+
- EAI CLI docs: `https://eai-support.github.io/eai/docs/overview`
|
|
91
|
+
- EAI API reference: `https://eai-support.github.io/eai/docs/api-reference`
|
|
92
|
+
- EAI static registry: `https://eai-support.github.io/eai/registry/`
|
|
93
|
+
- EAI scenario library: `https://eai-support.github.io/eai/scenarios`
|
|
94
|
+
- EAI app template: `https://github.com/eai-support/eai-app-template`
|
|
95
95
|
|
|
96
96
|
### EAI Platform And Azure App Stack Policy
|
|
97
97
|
|
|
@@ -152,7 +152,7 @@ with an unrelated non-EAI stack.
|
|
|
152
152
|
```bash
|
|
153
153
|
npm install -g eai-cli
|
|
154
154
|
# If npmjs is unavailable:
|
|
155
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
155
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
156
156
|
eai --version
|
|
157
157
|
```
|
|
158
158
|
- On Windows, use the same npm commands in PowerShell and avoid shell
|
|
@@ -455,11 +455,11 @@ explicitly `enterpriseai`, generate:
|
|
|
455
455
|
4. `{FEATURE_DIR}/eai-preflight.md` (EAI app delivery only, created by
|
|
456
456
|
`/0_gofer_start` when possible and updated here when missing or stale)
|
|
457
457
|
- Verify the safe public EAI source set used for research:
|
|
458
|
-
`https://eai-
|
|
459
|
-
`https://eai-
|
|
460
|
-
`https://eai-
|
|
461
|
-
`https://eai-
|
|
462
|
-
`https://github.com/eai-
|
|
458
|
+
`https://eai-support.github.io/eai/docs/overview`,
|
|
459
|
+
`https://eai-support.github.io/eai/docs/api-reference`,
|
|
460
|
+
`https://eai-support.github.io/eai/registry/`,
|
|
461
|
+
`https://eai-support.github.io/eai/scenarios`, and
|
|
462
|
+
`https://github.com/eai-support/eai-app-template`.
|
|
463
463
|
- Record whether `eai --describe` found the expected scaffolding,
|
|
464
464
|
authentication, tenant, app, resource schema, workflow
|
|
465
465
|
readiness, block catalog, diagnostics, Gofer-refresh, and template-check
|
|
@@ -48,7 +48,7 @@ Use the first source that exists:
|
|
|
48
48
|
3. Download the latest public bundle zip and extract it to a temporary folder:
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
curl -fsSL https://eai-
|
|
51
|
+
curl -fsSL https://eai-support.github.io/eai-gofer/releases/eai-gofer-agent-plugin-latest.zip \
|
|
52
52
|
-o /tmp/eai-gofer-agent-plugin-latest.zip
|
|
53
53
|
rm -rf /tmp/eai-gofer-bootstrap
|
|
54
54
|
mkdir -p /tmp/eai-gofer-bootstrap
|
|
@@ -91,14 +91,14 @@ If `eai` is missing, or if the user asks to update it, ask for approval and run:
|
|
|
91
91
|
```bash
|
|
92
92
|
npm install -g eai-cli
|
|
93
93
|
# If npmjs is unavailable:
|
|
94
|
-
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-
|
|
94
|
+
npm install -g @enterpriseai/cli --@enterpriseai:registry=https://eai-support.github.io/eai/registry/
|
|
95
95
|
eai --version
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
Use the same commands in PowerShell. Do not edit `.npmrc` by shell redirection.
|
|
99
99
|
|
|
100
100
|
Use the static fallback command only when npmjs is unavailable. If `npm config get @enterpriseai:registry` already equals
|
|
101
|
-
`https://eai-
|
|
101
|
+
`https://eai-support.github.io/eai/registry/`, do not rewrite it. If it points
|
|
102
102
|
somewhere else, show the current value and ask before changing it.
|
|
103
103
|
|
|
104
104
|
If `eai` is already installed, run:
|