@galaxy-tool-util/cli 1.8.0 → 1.8.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galaxy-tool-util/cli",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "galaxy-tool-cache CLI — cache and inspect Galaxy tool metadata",
5
5
  "type": "module",
6
6
  "bin": {
@@ -40,9 +40,9 @@
40
40
  "nunjucks": "^3.2.4",
41
41
  "yaml": "^2.8.3",
42
42
  "@galaxy-tool-util/connection-validation": "1.8.0",
43
- "@galaxy-tool-util/core": "1.8.0",
43
+ "@galaxy-tool-util/core": "1.8.1",
44
44
  "@galaxy-tool-util/schema": "1.8.0",
45
- "@galaxy-tool-util/search": "1.8.0"
45
+ "@galaxy-tool-util/search": "1.8.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/node": "^25.5.0",
@@ -5,12 +5,12 @@
5
5
  "commands": [
6
6
  {
7
7
  "name": "add",
8
- "description": "Fetch a tool from ToolShed/Galaxy and cache it",
8
+ "description": "Fetch a tool from the ToolShed (shed-path or bare/stock ID) and cache it",
9
9
  "handler": "add",
10
10
  "args": [
11
11
  {
12
12
  "raw": "<tool_id>",
13
- "description": "Tool ID (full toolshed path or TRS ID)"
13
+ "description": "Tool ID: shed path (owner/repo/tool), TRS ID, or bare/stock ID (e.g. Filter1)"
14
14
  }
15
15
  ],
16
16
  "options": [
@@ -24,13 +24,13 @@
24
24
  },
25
25
  {
26
26
  "flags": "--galaxy-url <url>",
27
- "description": "Galaxy instance URL for fallback"
27
+ "description": "Alternate Galaxy source, tried after the ToolShed"
28
28
  }
29
29
  ]
30
30
  },
31
31
  {
32
32
  "name": "list",
33
- "description": "List cached tools",
33
+ "description": "List cached tools with their resolved versions",
34
34
  "handler": "list",
35
35
  "options": [
36
36
  {
@@ -153,7 +153,7 @@
153
153
  },
154
154
  {
155
155
  "flags": "--galaxy-url <url>",
156
- "description": "Galaxy instance URL for fallback"
156
+ "description": "Alternate Galaxy source, tried after the ToolShed"
157
157
  }
158
158
  ]
159
159
  }