@gaia-ai/ui 0.6.5 → 0.7.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/dist/src/preset.js +1 -1
- package/dist/src/route.js +1 -1
- package/dist/src/ui.js +3 -3
- package/package.json +3 -3
package/dist/src/preset.js
CHANGED
package/dist/src/route.js
CHANGED
|
@@ -253,7 +253,7 @@ export async function resolveHere(ctx) {
|
|
|
253
253
|
const got = remote === '' ? '' : `, got '${remote}'`;
|
|
254
254
|
throw new Error(`gaia ui --here: could not derive a project from '${ctx.cwd}' — ` +
|
|
255
255
|
`no usable git remote (looked at 'origin'${got}).\n` +
|
|
256
|
-
" Run 'gaia ui' for the
|
|
256
|
+
" Run 'gaia ui' and press Tab for the project list, or 'gaia ui project:<name>' to open one directly.");
|
|
257
257
|
}
|
|
258
258
|
return {
|
|
259
259
|
kind: 'project',
|
package/dist/src/ui.js
CHANGED
|
@@ -343,11 +343,11 @@ export async function cmdUi(deps = {}) {
|
|
|
343
343
|
const uiCommandPlugin = {
|
|
344
344
|
kind: 'command',
|
|
345
345
|
name: 'ui',
|
|
346
|
-
describe: 'interactive terminal UI:
|
|
346
|
+
describe: 'interactive terminal UI: dashboard, projects, tickets',
|
|
347
347
|
register(program, host) {
|
|
348
348
|
program
|
|
349
349
|
.command('ui')
|
|
350
|
-
.description('interactive terminal UI:
|
|
350
|
+
.description('interactive terminal UI: dashboard, projects, tickets')
|
|
351
351
|
.argument('[target]', 'deep-link target: GAIA-221 · ticket:<id|uuid> · project:<name|uuid> · run:<uuid>')
|
|
352
352
|
.option('--ticket <id>', 'open a ticket by identifier or uuid')
|
|
353
353
|
.option('--project <id>', 'open a project by name or uuid')
|
|
@@ -358,7 +358,7 @@ const uiCommandPlugin = {
|
|
|
358
358
|
.option('--print-config', 'print the resolved connection config and exit, without launching the UI')
|
|
359
359
|
.addHelpText('after', `
|
|
360
360
|
Targets (at most ONE of the positional, --ticket, --project, --run, --here):
|
|
361
|
-
gaia ui the
|
|
361
|
+
gaia ui the dashboard
|
|
362
362
|
gaia ui GAIA-221 a ticket by identifier (case-insensitive)
|
|
363
363
|
gaia ui ticket:GAIA-221 the same, said explicitly
|
|
364
364
|
gaia ui ticket:<uuid> a ticket by uuid
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaia-ai/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "GAIA project-first cockpit: the `gaia ui` command plugin (renderer resolved dynamically).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"directory": "gaia-cli/ui"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@gaia-ai/core": "^0.
|
|
30
|
-
"@gaia-ai/addon-herdr": "^0.
|
|
29
|
+
"@gaia-ai/core": "^0.7.0",
|
|
30
|
+
"@gaia-ai/addon-herdr": "^0.7.0",
|
|
31
31
|
"commander": "^12.1.0",
|
|
32
32
|
"dropsh": "^0.5.8"
|
|
33
33
|
}
|