@forge/cli-shared 8.5.0-next.7 → 8.5.0-next.8
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/CHANGELOG.md +10 -0
- package/out/graphql/graphql-types.d.ts +139 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +44 -26
- package/out/shared/assistant-cli.d.ts +14 -0
- package/out/shared/assistant-cli.d.ts.map +1 -0
- package/out/shared/assistant-cli.js +73 -0
- package/out/shared/error-handling.d.ts +5 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +5 -1
- package/out/shared/index.d.ts +1 -0
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/tunnel/tunnel-options.d.ts +1 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/ui/text.d.ts +13 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +15 -2
- package/package.json +1 -1
package/out/ui/text.js
CHANGED
|
@@ -1184,8 +1184,7 @@ ${buildTerminalLink(link)}\n`,
|
|
|
1184
1184
|
},
|
|
1185
1185
|
listingImages: (key) => `Listing images for container with key '${key}'.`,
|
|
1186
1186
|
noImagesFound: `No images found.`,
|
|
1187
|
-
promptNextPage: 'Load next page
|
|
1188
|
-
confirmationForNextPage: 'y'
|
|
1187
|
+
promptNextPage: 'Load next page?'
|
|
1189
1188
|
}
|
|
1190
1189
|
},
|
|
1191
1190
|
login: {
|
|
@@ -1289,6 +1288,20 @@ ${buildTerminalLink(link)}\n`,
|
|
|
1289
1288
|
info: `To view all environments for this app, run ${forge('environments', 'list')}.`
|
|
1290
1289
|
}
|
|
1291
1290
|
},
|
|
1291
|
+
assistant: {
|
|
1292
|
+
description: '[⚠️ experimental feature] manage AI assistant settings (Rovo/Gemini)',
|
|
1293
|
+
on: {
|
|
1294
|
+
description: `[⚠️ experimental feature] enable AI assistant for error analysis (specify name: rovo or gemini)
|
|
1295
|
+
When errors occur during Forge command execution, error details will be sent to your AI agent to help you understand and resolve issues.`
|
|
1296
|
+
},
|
|
1297
|
+
off: {
|
|
1298
|
+
description: 'disable AI assistant for error analysis'
|
|
1299
|
+
},
|
|
1300
|
+
enabled: (assistantName) => `${greenTick} ${assistantName} assistant enabled.`,
|
|
1301
|
+
disabled: `${greenTick} Assistant disabled. Error analysis will not be performed during Forge CLI commands.`,
|
|
1302
|
+
alreadyDisabled: 'Assistant is already disabled',
|
|
1303
|
+
enableConfirmation: '⚠️ Are you sure you want to enable the assistant? This is an experimental feature. When errors occur during Forge command execution, error details will be sent to your AI agent automatically to help you understand and resolve issues.'
|
|
1304
|
+
},
|
|
1292
1305
|
nonInteractive: {
|
|
1293
1306
|
description: 'run the command without input prompts',
|
|
1294
1307
|
error: {
|