@enjoys/context-engine 1.0.0 → 1.0.2

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.
Files changed (112) hide show
  1. package/data/commands/adb.json +322 -0
  2. package/data/commands/alembic.json +301 -0
  3. package/data/commands/artisan.json +277 -0
  4. package/data/commands/atlas.json +426 -0
  5. package/data/commands/auth0.json +648 -0
  6. package/data/commands/bat.json +84 -0
  7. package/data/commands/btop.json +59 -0
  8. package/data/commands/bundle.json +321 -0
  9. package/data/commands/composer.json +507 -0
  10. package/data/commands/dart.json +216 -0
  11. package/data/commands/dbmate.json +257 -0
  12. package/data/commands/docker-compose.json +384 -0
  13. package/data/commands/drizzle-kit.json +217 -0
  14. package/data/commands/expo.json +65 -0
  15. package/data/commands/fastlane.json +243 -0
  16. package/data/commands/fd.json +86 -0
  17. package/data/commands/flutter.json +298 -0
  18. package/data/commands/flyway.json +261 -0
  19. package/data/commands/fzf.json +103 -0
  20. package/data/commands/gem.json +267 -0
  21. package/data/commands/htop.json +56 -0
  22. package/data/commands/jq.json +100 -0
  23. package/data/commands/k9s.json +62 -0
  24. package/data/commands/linux.json +3007 -0
  25. package/data/commands/liquibase.json +399 -0
  26. package/data/commands/manifest.json +619 -0
  27. package/data/commands/minikube.json +60 -0
  28. package/data/commands/ng.json +64 -0
  29. package/data/commands/nuxt.json +60 -0
  30. package/data/commands/nvim.json +91 -0
  31. package/data/commands/php.json +157 -0
  32. package/data/commands/pm2.json +259 -0
  33. package/data/commands/pod.json +175 -0
  34. package/data/commands/prisma.json +257 -0
  35. package/data/commands/rails.json +372 -0
  36. package/data/commands/rake.json +360 -0
  37. package/data/commands/react-native.json +57 -0
  38. package/data/commands/rg.json +103 -0
  39. package/data/commands/rspec.json +257 -0
  40. package/data/commands/ruby.json +108 -0
  41. package/data/commands/screen.json +101 -0
  42. package/data/commands/sequelize.json +342 -0
  43. package/data/commands/snyk.json +442 -0
  44. package/data/commands/sonar-scanner.json +219 -0
  45. package/data/commands/stripe.json +314 -0
  46. package/data/commands/symfony.json +449 -0
  47. package/data/commands/tmux.json +197 -0
  48. package/data/commands/top.json +61 -0
  49. package/data/commands/trivy.json +367 -0
  50. package/data/commands/twilio.json +382 -0
  51. package/data/commands/typeorm.json +262 -0
  52. package/data/commands/vim.json +85 -0
  53. package/data/commands/vue.json +60 -0
  54. package/data/commands/wp.json +857 -0
  55. package/data/commands/xcodebuild.json +141 -0
  56. package/data/commands/yq.json +57 -0
  57. package/data/completion/bash.json +1184 -0
  58. package/data/completion/c.json +1067 -0
  59. package/data/completion/cpp.json +824 -0
  60. package/data/completion/csharp.json +860 -0
  61. package/data/completion/dockerfile.json +536 -0
  62. package/data/completion/go.json +1346 -0
  63. package/data/completion/html.json +806 -0
  64. package/data/completion/java.json +1112 -0
  65. package/data/completion/javascript.json +914 -0
  66. package/data/completion/lua.json +968 -0
  67. package/data/completion/php.json +1535 -0
  68. package/data/completion/python.json +1427 -0
  69. package/data/completion/ruby.json +1531 -0
  70. package/data/completion/rust.json +698 -0
  71. package/data/completion/sql.json +887 -0
  72. package/data/completion/toml.json +428 -0
  73. package/data/completion/typescript.json +338 -0
  74. package/data/completion/yaml.json +563 -0
  75. package/data/defination/bash.json +565 -0
  76. package/data/defination/c.json +865 -0
  77. package/data/defination/cpp.json +348 -0
  78. package/data/defination/csharp.json +144 -0
  79. package/data/defination/dockerfile.json +113 -0
  80. package/data/defination/go.json +561 -0
  81. package/data/defination/html.json +559 -0
  82. package/data/defination/java.json +184 -0
  83. package/data/defination/javascript.json +265 -0
  84. package/data/defination/lua.json +181 -0
  85. package/data/defination/php.json +726 -0
  86. package/data/defination/python.json +717 -0
  87. package/data/defination/ruby.json +670 -0
  88. package/data/defination/rust.json +207 -0
  89. package/data/defination/sql.json +473 -0
  90. package/data/defination/toml.json +251 -0
  91. package/data/defination/typescript.json +29 -0
  92. package/data/defination/yaml.json +197 -0
  93. package/data/hover/bash.json +245 -0
  94. package/data/hover/c.json +265 -0
  95. package/data/hover/cpp.json +210 -0
  96. package/data/hover/csharp.json +290 -0
  97. package/data/hover/dockerfile.json +145 -0
  98. package/data/hover/go.json +580 -0
  99. package/data/hover/html.json +250 -0
  100. package/data/hover/java.json +395 -0
  101. package/data/hover/javascript.json +330 -0
  102. package/data/hover/lua.json +265 -0
  103. package/data/hover/php.json +300 -0
  104. package/data/hover/python.json +380 -0
  105. package/data/hover/ruby.json +265 -0
  106. package/data/hover/rust.json +275 -0
  107. package/data/hover/sql.json +230 -0
  108. package/data/hover/toml.json +145 -0
  109. package/data/hover/typescript.json +120 -0
  110. package/data/hover/yaml.json +165 -0
  111. package/data/manifest.json +242 -0
  112. package/package.json +1 -1
@@ -0,0 +1,399 @@
1
+ {
2
+ "name": "liquibase",
3
+ "description": "Liquibase is an open-source database change management and schema migration tool supporting XML, YAML, JSON, and SQL changelog formats across multiple database platforms",
4
+ "category": "database-orm",
5
+ "platforms": ["linux", "macos", "windows"],
6
+ "shells": ["bash", "zsh", "fish", "powershell"],
7
+ "subcommands": [
8
+ {
9
+ "name": "update",
10
+ "description": "Deploy all unrun changesets from the changelog file to the database. This is the primary command for applying schema changes.",
11
+ "args": [],
12
+ "options": [
13
+ {"name": "--changelog-file", "description": "Path to the changelog file (XML, YAML, JSON, or SQL)", "type": "string"},
14
+ {"name": "--url", "description": "Database JDBC connection URL", "type": "string"},
15
+ {"name": "--username", "description": "Database username", "type": "string"},
16
+ {"name": "--password", "description": "Database password", "type": "string"},
17
+ {"name": "--contexts", "description": "Comma-separated list of contexts to execute", "type": "string"},
18
+ {"name": "--labels", "description": "Label expression to filter changesets", "type": "string"},
19
+ {"name": "--label-filter", "description": "Label filter expression (replaces --labels)", "type": "string"}
20
+ ],
21
+ "examples": [
22
+ "liquibase update",
23
+ "liquibase --changelog-file=changelog.xml update",
24
+ "liquibase --url=jdbc:postgresql://localhost:5432/mydb --username=admin --password=secret update",
25
+ "liquibase update --contexts=dev",
26
+ "liquibase update --label-filter='!slow'"
27
+ ]
28
+ },
29
+ {
30
+ "name": "updateSQL",
31
+ "description": "Generate the SQL that would be executed by the update command without actually applying it. Useful for review and audit purposes.",
32
+ "args": [],
33
+ "options": [
34
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"},
35
+ {"name": "--output-file", "description": "Write SQL output to a file instead of stdout", "type": "string"}
36
+ ],
37
+ "examples": [
38
+ "liquibase updateSQL",
39
+ "liquibase updateSQL --output-file=update.sql",
40
+ "liquibase --changelog-file=changelog.xml updateSQL"
41
+ ]
42
+ },
43
+ {
44
+ "name": "rollback",
45
+ "description": "Roll back changes to a specified tag, undoing all changesets applied after the tag was set.",
46
+ "args": [
47
+ {"name": "tag", "type": "string", "required": true, "description": "Tag to rollback to"}
48
+ ],
49
+ "options": [
50
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"},
51
+ {"name": "--url", "description": "Database connection URL", "type": "string"},
52
+ {"name": "--username", "description": "Database username", "type": "string"},
53
+ {"name": "--password", "description": "Database password", "type": "string"}
54
+ ],
55
+ "examples": [
56
+ "liquibase rollback v1.0",
57
+ "liquibase --changelog-file=changelog.xml rollback release-2024",
58
+ "liquibase rollback baseline --url=jdbc:mysql://localhost/mydb"
59
+ ]
60
+ },
61
+ {
62
+ "name": "rollbackSQL",
63
+ "description": "Output the SQL that would be executed by a rollback to a given tag, without actually performing the rollback.",
64
+ "args": [
65
+ {"name": "tag", "type": "string", "required": true, "description": "Tag to rollback to"}
66
+ ],
67
+ "options": [
68
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"},
69
+ {"name": "--output-file", "description": "Write SQL output to a file", "type": "string"}
70
+ ],
71
+ "examples": [
72
+ "liquibase rollbackSQL v1.0",
73
+ "liquibase rollbackSQL v1.0 --output-file=rollback.sql"
74
+ ]
75
+ },
76
+ {
77
+ "name": "rollbackCount",
78
+ "description": "Roll back a specified number of the most recently applied changesets.",
79
+ "args": [
80
+ {"name": "count", "type": "string", "required": true, "description": "Number of changesets to roll back"}
81
+ ],
82
+ "options": [
83
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"}
84
+ ],
85
+ "examples": [
86
+ "liquibase rollbackCount 1",
87
+ "liquibase rollbackCount 3",
88
+ "liquibase --changelog-file=changelog.xml rollbackCount 2"
89
+ ]
90
+ },
91
+ {
92
+ "name": "rollbackToDate",
93
+ "description": "Roll back all changesets that were applied after a specified date and time.",
94
+ "args": [
95
+ {"name": "date", "type": "string", "required": true, "description": "Date to rollback to (yyyy-MM-dd'T'HH:mm:ss format)"}
96
+ ],
97
+ "options": [
98
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"}
99
+ ],
100
+ "examples": [
101
+ "liquibase rollbackToDate 2024-01-15T10:00:00",
102
+ "liquibase rollbackToDate 2024-06-01",
103
+ "liquibase --changelog-file=changelog.xml rollbackToDate 2024-03-01T00:00:00"
104
+ ]
105
+ },
106
+ {
107
+ "name": "generateChangeLog",
108
+ "description": "Generate a changelog file from the current database schema. Reverse-engineers the database into Liquibase changeset format.",
109
+ "args": [],
110
+ "options": [
111
+ {"name": "--changelog-file", "description": "Output path for the generated changelog", "type": "string"},
112
+ {"name": "--url", "description": "Database connection URL", "type": "string"},
113
+ {"name": "--username", "description": "Database username", "type": "string"},
114
+ {"name": "--password", "description": "Database password", "type": "string"},
115
+ {"name": "--data-output-directory", "description": "Directory for CSV data export files", "type": "string"},
116
+ {"name": "--diff-types", "description": "Types of objects to include (tables, views, columns, indexes, etc.)", "type": "string"},
117
+ {"name": "--schemas", "description": "Schemas to include", "type": "string"},
118
+ {"name": "--overwrite-output-file", "description": "Overwrite existing changelog file"}
119
+ ],
120
+ "examples": [
121
+ "liquibase --changelog-file=generated-changelog.xml generateChangeLog",
122
+ "liquibase generateChangeLog --diff-types=tables,views,columns",
123
+ "liquibase --url=jdbc:postgresql://localhost/mydb generateChangeLog --overwrite-output-file"
124
+ ]
125
+ },
126
+ {
127
+ "name": "diff",
128
+ "description": "Compare two databases and output the differences. Useful for detecting schema drift between environments.",
129
+ "args": [],
130
+ "options": [
131
+ {"name": "--url", "description": "Source database URL", "type": "string"},
132
+ {"name": "--reference-url", "description": "Reference (target) database URL for comparison", "type": "string"},
133
+ {"name": "--reference-username", "description": "Username for the reference database", "type": "string"},
134
+ {"name": "--reference-password", "description": "Password for the reference database", "type": "string"},
135
+ {"name": "--diff-types", "description": "Types of objects to compare", "type": "string"},
136
+ {"name": "--schemas", "description": "Schemas to compare", "type": "string"},
137
+ {"name": "--output-schemas", "description": "Schemas to include in diff output", "type": "string"},
138
+ {"name": "--format", "description": "Output format (json or default text)", "type": "string"}
139
+ ],
140
+ "examples": [
141
+ "liquibase diff --reference-url=jdbc:postgresql://prod-host/mydb",
142
+ "liquibase diff --url=jdbc:mysql://dev/mydb --reference-url=jdbc:mysql://staging/mydb",
143
+ "liquibase diff --diff-types=tables,columns,indexes --format=json"
144
+ ]
145
+ },
146
+ {
147
+ "name": "diffChangeLog",
148
+ "description": "Compare two databases and generate a changelog file containing the changes needed to synchronize them.",
149
+ "args": [],
150
+ "options": [
151
+ {"name": "--changelog-file", "description": "Output path for the diff changelog", "type": "string"},
152
+ {"name": "--reference-url", "description": "Reference database URL for comparison", "type": "string"},
153
+ {"name": "--reference-username", "description": "Username for the reference database", "type": "string"},
154
+ {"name": "--reference-password", "description": "Password for the reference database", "type": "string"},
155
+ {"name": "--diff-types", "description": "Types of objects to include", "type": "string"}
156
+ ],
157
+ "examples": [
158
+ "liquibase --changelog-file=diff-changelog.xml diffChangeLog --reference-url=jdbc:postgresql://prod/mydb",
159
+ "liquibase diffChangeLog --diff-types=tables,columns"
160
+ ]
161
+ },
162
+ {
163
+ "name": "snapshot",
164
+ "description": "Capture a snapshot of the current database schema, outputting the full structure as JSON or YAML.",
165
+ "args": [],
166
+ "options": [
167
+ {"name": "--url", "description": "Database connection URL", "type": "string"},
168
+ {"name": "--schemas", "description": "Schemas to snapshot", "type": "string"},
169
+ {"name": "--snapshot-format", "description": "Output format: json or yaml", "type": "string"},
170
+ {"name": "--output-file", "description": "Output file for the snapshot", "type": "string"}
171
+ ],
172
+ "examples": [
173
+ "liquibase snapshot",
174
+ "liquibase snapshot --snapshot-format=json",
175
+ "liquibase snapshot --output-file=snapshot.json --snapshot-format=json"
176
+ ]
177
+ },
178
+ {
179
+ "name": "snapshotReference",
180
+ "description": "Capture a snapshot of the reference database schema for comparison purposes.",
181
+ "args": [],
182
+ "options": [
183
+ {"name": "--reference-url", "description": "Reference database URL", "type": "string"},
184
+ {"name": "--snapshot-format", "description": "Output format", "type": "string"}
185
+ ],
186
+ "examples": [
187
+ "liquibase snapshotReference --reference-url=jdbc:postgresql://prod/mydb",
188
+ "liquibase snapshotReference --snapshot-format=json"
189
+ ]
190
+ },
191
+ {
192
+ "name": "status",
193
+ "description": "Display a list of changesets that have not been applied to the database yet (pending changes).",
194
+ "args": [],
195
+ "options": [
196
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"},
197
+ {"name": "--verbose", "description": "Show detailed information about each pending changeset"}
198
+ ],
199
+ "examples": [
200
+ "liquibase status",
201
+ "liquibase status --verbose",
202
+ "liquibase --changelog-file=changelog.xml status"
203
+ ]
204
+ },
205
+ {
206
+ "name": "validate",
207
+ "description": "Validate the changelog for errors such as duplicate IDs, invalid preconditions, or missing files without connecting to the database.",
208
+ "args": [],
209
+ "options": [
210
+ {"name": "--changelog-file", "description": "Path to the changelog file to validate", "type": "string"}
211
+ ],
212
+ "examples": [
213
+ "liquibase validate",
214
+ "liquibase --changelog-file=changelog.xml validate"
215
+ ]
216
+ },
217
+ {
218
+ "name": "changelogSync",
219
+ "description": "Mark all unrun changesets as already executed in the database. Useful when you want to skip applying changes that have already been applied manually.",
220
+ "args": [],
221
+ "options": [
222
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"}
223
+ ],
224
+ "examples": [
225
+ "liquibase changelogSync",
226
+ "liquibase --changelog-file=changelog.xml changelogSync"
227
+ ]
228
+ },
229
+ {
230
+ "name": "clearCheckSums",
231
+ "description": "Remove all stored checksums from the DATABASECHANGELOG table, forcing Liquibase to recalculate them on the next update.",
232
+ "args": [],
233
+ "options": [],
234
+ "examples": [
235
+ "liquibase clearCheckSums"
236
+ ]
237
+ },
238
+ {
239
+ "name": "tag",
240
+ "description": "Tag the current database state with a label for future rollback reference points.",
241
+ "args": [
242
+ {"name": "tagName", "type": "string", "required": true, "description": "Tag name to apply"}
243
+ ],
244
+ "options": [],
245
+ "examples": [
246
+ "liquibase tag v1.0",
247
+ "liquibase tag release-2024-03",
248
+ "liquibase tag before-migration"
249
+ ]
250
+ },
251
+ {
252
+ "name": "tagExists",
253
+ "description": "Check whether a specific tag exists in the database changelog.",
254
+ "args": [
255
+ {"name": "tagName", "type": "string", "required": true, "description": "Tag name to check"}
256
+ ],
257
+ "options": [],
258
+ "examples": [
259
+ "liquibase tagExists v1.0",
260
+ "liquibase tagExists release-2024-03"
261
+ ]
262
+ },
263
+ {
264
+ "name": "history",
265
+ "description": "Display the deployment history of all changes applied to the database, including timestamps and changeset details.",
266
+ "args": [],
267
+ "options": [
268
+ {"name": "--format", "description": "Output format (tabular or text)", "type": "string"},
269
+ {"name": "--output-file", "description": "Write history to a file", "type": "string"}
270
+ ],
271
+ "examples": [
272
+ "liquibase history",
273
+ "liquibase history --format=tabular",
274
+ "liquibase history --output-file=history.txt"
275
+ ]
276
+ },
277
+ {
278
+ "name": "dropAll",
279
+ "description": "Drop all database objects in the configured schemas. WARNING: This is destructive and removes all tables, views, and procedures.",
280
+ "args": [],
281
+ "options": [
282
+ {"name": "--schemas", "description": "Schemas to drop objects from", "type": "string"}
283
+ ],
284
+ "examples": [
285
+ "liquibase dropAll",
286
+ "liquibase dropAll --schemas=public,myschema"
287
+ ]
288
+ },
289
+ {
290
+ "name": "futureRollbackSQL",
291
+ "description": "Generate the SQL that would be needed to rollback all pending (unrun) changesets, providing a preview of rollback scripts.",
292
+ "args": [],
293
+ "options": [
294
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"},
295
+ {"name": "--output-file", "description": "Write SQL to a file", "type": "string"}
296
+ ],
297
+ "examples": [
298
+ "liquibase futureRollbackSQL",
299
+ "liquibase futureRollbackSQL --output-file=future-rollback.sql"
300
+ ]
301
+ },
302
+ {
303
+ "name": "unexpectedChangeSets",
304
+ "description": "List changesets that exist in the database but are not present in the current changelog file. Indicates potential drift.",
305
+ "args": [],
306
+ "options": [
307
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"},
308
+ {"name": "--verbose", "description": "Show detailed information"}
309
+ ],
310
+ "examples": [
311
+ "liquibase unexpectedChangeSets",
312
+ "liquibase unexpectedChangeSets --verbose"
313
+ ]
314
+ },
315
+ {
316
+ "name": "dbDoc",
317
+ "description": "Generate HTML documentation from the changelog and the current database schema, creating a browsable database documentation site.",
318
+ "args": [
319
+ {"name": "outputDirectory", "type": "string", "required": true, "description": "Output directory for the generated documentation"}
320
+ ],
321
+ "options": [
322
+ {"name": "--changelog-file", "description": "Path to the changelog file", "type": "string"},
323
+ {"name": "--schemas", "description": "Schemas to document", "type": "string"}
324
+ ],
325
+ "examples": [
326
+ "liquibase dbDoc docs/db",
327
+ "liquibase --changelog-file=changelog.xml dbDoc target/dbdoc"
328
+ ]
329
+ }
330
+ ],
331
+ "globalOptions": [
332
+ {"name": "--help", "short": "-h", "description": "Show help information"},
333
+ {"name": "--version", "description": "Show Liquibase version"},
334
+ {"name": "--changelog-file", "description": "Path to the root changelog file", "type": "string"},
335
+ {"name": "--url", "description": "Database JDBC connection URL", "type": "string"},
336
+ {"name": "--username", "description": "Database username", "type": "string"},
337
+ {"name": "--password", "description": "Database password", "type": "string"},
338
+ {"name": "--driver", "description": "Fully qualified JDBC driver class name", "type": "string"},
339
+ {"name": "--default-schema-name", "description": "Default database schema", "type": "string"},
340
+ {"name": "--liquibase-schema-name", "description": "Schema to use for Liquibase tables", "type": "string"},
341
+ {"name": "--database-changelog-table-name", "description": "Name of the changelog tracking table", "type": "string"},
342
+ {"name": "--database-changelog-lock-table-name", "description": "Name of the changelog lock table", "type": "string"},
343
+ {"name": "--log-level", "description": "Log level: OFF, SEVERE, WARNING, INFO, FINE, DEBUG", "type": "string"},
344
+ {"name": "--log-file", "description": "File to write log output to", "type": "string"},
345
+ {"name": "--defaults-file", "description": "Path to the liquibase.properties file", "type": "string"},
346
+ {"name": "--contexts", "description": "Contexts to activate", "type": "string"},
347
+ {"name": "--labels", "description": "Labels to filter changesets", "type": "string"},
348
+ {"name": "--output-file", "description": "File for command output", "type": "string"}
349
+ ],
350
+ "examples": [
351
+ "liquibase update",
352
+ "liquibase updateSQL",
353
+ "liquibase rollback v1.0",
354
+ "liquibase rollbackCount 1",
355
+ "liquibase status --verbose",
356
+ "liquibase validate",
357
+ "liquibase diff --reference-url=jdbc:postgresql://prod/mydb",
358
+ "liquibase generateChangeLog --changelog-file=generated.xml",
359
+ "liquibase tag v2.0",
360
+ "liquibase history",
361
+ "liquibase snapshot --snapshot-format=json",
362
+ "liquibase changelogSync",
363
+ "liquibase futureRollbackSQL --output-file=rollback.sql",
364
+ "liquibase dbDoc docs/database"
365
+ ],
366
+ "relatedCommands": ["flyway", "alembic", "dbmate"],
367
+ "contextEngine": {
368
+ "detectors": [
369
+ {
370
+ "name": "liquibase_config_detect",
371
+ "description": "Detect Liquibase properties files",
372
+ "command": "find . -maxdepth 2 -name 'liquibase.properties' -o -name 'liquibase.yml' 2>/dev/null | head -5",
373
+ "parser": "lines",
374
+ "cacheFor": 60
375
+ },
376
+ {
377
+ "name": "liquibase_changelog_detect",
378
+ "description": "Detect Liquibase changelog files",
379
+ "command": "find . -maxdepth 4 -name 'changelog*' -type f 2>/dev/null | head -10",
380
+ "parser": "lines",
381
+ "cacheFor": 60
382
+ },
383
+ {
384
+ "name": "liquibase_version",
385
+ "description": "Get installed Liquibase version",
386
+ "command": "liquibase --version 2>/dev/null | head -3 || echo 'not installed'",
387
+ "parser": "lines",
388
+ "cacheFor": 120
389
+ },
390
+ {
391
+ "name": "liquibase_status_detect",
392
+ "description": "Get current Liquibase migration status",
393
+ "command": "liquibase status 2>/dev/null | head -10 || echo 'not available'",
394
+ "parser": "lines",
395
+ "cacheFor": 30
396
+ }
397
+ ]
398
+ }
399
+ }