checkly 8.10.0 → 8.11.0-prerelease-7e89949

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 (71) hide show
  1. package/dist/ai-context/skills-command/references/initialize.md +1 -10
  2. package/dist/commands/baseCommand.d.ts +1 -0
  3. package/dist/commands/baseCommand.js +31 -2
  4. package/dist/commands/baseCommand.js.map +1 -1
  5. package/dist/commands/destroy.d.ts +1 -0
  6. package/dist/commands/destroy.js +30 -3
  7. package/dist/commands/destroy.js.map +1 -1
  8. package/dist/commands/init.js +7 -5
  9. package/dist/commands/init.js.map +1 -1
  10. package/dist/commands/login.js +6 -6
  11. package/dist/commands/login.js.map +1 -1
  12. package/dist/commands/logout.js +3 -0
  13. package/dist/commands/logout.js.map +1 -1
  14. package/dist/commands/rules.d.ts +1 -2
  15. package/dist/commands/rules.js +5 -119
  16. package/dist/commands/rules.js.map +1 -1
  17. package/dist/commands/skills/install.d.ts +0 -6
  18. package/dist/commands/skills/install.js +3 -82
  19. package/dist/commands/skills/install.js.map +1 -1
  20. package/dist/commands/switch.js +0 -5
  21. package/dist/commands/switch.js.map +1 -1
  22. package/dist/commands/whoami.js +6 -0
  23. package/dist/commands/whoami.js.map +1 -1
  24. package/dist/helpers/onboarding/detect-project.d.ts +1 -1
  25. package/dist/helpers/onboarding/detect-project.js +4 -13
  26. package/dist/helpers/onboarding/detect-project.js.map +1 -1
  27. package/dist/helpers/onboarding/skill-install.js +1 -1
  28. package/dist/helpers/onboarding/skill-install.js.map +1 -1
  29. package/dist/helpers/result-assets.js.map +1 -1
  30. package/dist/messages/common-messages.d.ts +1 -0
  31. package/dist/messages/common-messages.js +2 -0
  32. package/dist/messages/common-messages.js.map +1 -1
  33. package/dist/reporters/abstract-list.d.ts +1 -0
  34. package/dist/reporters/abstract-list.js +14 -1
  35. package/dist/reporters/abstract-list.js.map +1 -1
  36. package/dist/reporters/dot.js +1 -0
  37. package/dist/reporters/dot.js.map +1 -1
  38. package/dist/reporters/github.d.ts +1 -0
  39. package/dist/reporters/github.js +16 -4
  40. package/dist/reporters/github.js.map +1 -1
  41. package/dist/reporters/util.d.ts +1 -0
  42. package/dist/reporters/util.js +1 -1
  43. package/dist/reporters/util.js.map +1 -1
  44. package/dist/rest/assets.js +3 -2
  45. package/dist/rest/assets.js.map +1 -1
  46. package/dist/rest/errors.d.ts +6 -0
  47. package/dist/rest/errors.js +80 -0
  48. package/dist/rest/errors.js.map +1 -1
  49. package/dist/rest/projects.d.ts +23 -4
  50. package/dist/rest/projects.js +52 -15
  51. package/dist/rest/projects.js.map +1 -1
  52. package/dist/services/check-parser/package-files/jsconfig-json-file.d.ts +2 -2
  53. package/dist/services/check-parser/package-files/jsconfig-json-file.js +3 -3
  54. package/dist/services/check-parser/package-files/jsconfig-json-file.js.map +1 -1
  55. package/dist/services/check-parser/package-files/resolver.d.ts +8 -1
  56. package/dist/services/check-parser/package-files/resolver.js +100 -4
  57. package/dist/services/check-parser/package-files/resolver.js.map +1 -1
  58. package/dist/services/check-parser/package-files/tsconfig-json-file.d.ts +53 -3
  59. package/dist/services/check-parser/package-files/tsconfig-json-file.js +107 -32
  60. package/dist/services/check-parser/package-files/tsconfig-json-file.js.map +1 -1
  61. package/dist/services/proxy.d.ts +32 -2
  62. package/dist/services/proxy.js +59 -26
  63. package/dist/services/proxy.js.map +1 -1
  64. package/dist/services/skills.d.ts +12 -0
  65. package/dist/services/skills.js +127 -0
  66. package/dist/services/skills.js.map +1 -0
  67. package/dist/services/socket-client.js +6 -27
  68. package/dist/services/socket-client.js.map +1 -1
  69. package/oclif.manifest.json +327 -320
  70. package/package.json +16 -15
  71. package/dist/ai-context/checkly.rules.md +0 -916
@@ -269,6 +269,12 @@
269
269
  "name": "preserve-resources",
270
270
  "allowNo": false,
271
271
  "type": "boolean"
272
+ },
273
+ "cancel-in-progress-deployment": {
274
+ "description": "If a deployment for this project is already in progress, cancel it instead of waiting for it to finish.",
275
+ "name": "cancel-in-progress-deployment",
276
+ "allowNo": false,
277
+ "type": "boolean"
272
278
  }
273
279
  },
274
280
  "hasDynamicHelp": false,
@@ -687,7 +693,7 @@
687
693
  "rules": {
688
694
  "aliases": [],
689
695
  "args": {},
690
- "description": "Generate a rules file to use with AI IDEs and Copilots.",
696
+ "description": "Deprecated. Use `checkly skills` instead.",
691
697
  "flags": {},
692
698
  "hasDynamicHelp": false,
693
699
  "hidden": false,
@@ -696,6 +702,7 @@
696
702
  "pluginAlias": "checkly",
697
703
  "pluginName": "checkly",
698
704
  "pluginType": "core",
705
+ "state": "deprecated",
699
706
  "strict": true,
700
707
  "enableJsonFlag": false,
701
708
  "coreCommand": false,
@@ -1475,6 +1482,211 @@
1475
1482
  "logs.js"
1476
1483
  ]
1477
1484
  },
1485
+ "assets:download": {
1486
+ "aliases": [],
1487
+ "args": {},
1488
+ "description": "Download result assets.",
1489
+ "flags": {
1490
+ "check-id": {
1491
+ "description": "Check ID for a scheduled check result.",
1492
+ "name": "check-id",
1493
+ "hasDynamicHelp": false,
1494
+ "multiple": false,
1495
+ "type": "option"
1496
+ },
1497
+ "test-session-id": {
1498
+ "description": "Test session ID for a test-session result.",
1499
+ "name": "test-session-id",
1500
+ "hasDynamicHelp": false,
1501
+ "multiple": false,
1502
+ "type": "option"
1503
+ },
1504
+ "result-id": {
1505
+ "description": "Check result ID or test-session result ID.",
1506
+ "name": "result-id",
1507
+ "required": true,
1508
+ "hasDynamicHelp": false,
1509
+ "multiple": false,
1510
+ "type": "option"
1511
+ },
1512
+ "type": {
1513
+ "description": "Select assets by type.",
1514
+ "name": "type",
1515
+ "hasDynamicHelp": false,
1516
+ "multiple": false,
1517
+ "options": [
1518
+ "log",
1519
+ "trace",
1520
+ "video",
1521
+ "screenshot",
1522
+ "pcap",
1523
+ "report",
1524
+ "file",
1525
+ "all"
1526
+ ],
1527
+ "type": "option"
1528
+ },
1529
+ "asset": {
1530
+ "description": "Select an asset by exact Asset/Name value or glob.",
1531
+ "name": "asset",
1532
+ "hasDynamicHelp": false,
1533
+ "multiple": false,
1534
+ "type": "option"
1535
+ },
1536
+ "dir": {
1537
+ "description": "Directory to write assets into.",
1538
+ "name": "dir",
1539
+ "hasDynamicHelp": false,
1540
+ "multiple": false,
1541
+ "type": "option"
1542
+ },
1543
+ "force": {
1544
+ "description": "Overwrite existing files.",
1545
+ "name": "force",
1546
+ "allowNo": false,
1547
+ "type": "boolean"
1548
+ },
1549
+ "skip-existing": {
1550
+ "description": "Skip files that already exist.",
1551
+ "name": "skip-existing",
1552
+ "allowNo": false,
1553
+ "type": "boolean"
1554
+ },
1555
+ "output": {
1556
+ "char": "o",
1557
+ "description": "Output format.",
1558
+ "name": "output",
1559
+ "default": "table",
1560
+ "hasDynamicHelp": false,
1561
+ "multiple": false,
1562
+ "options": [
1563
+ "table",
1564
+ "json"
1565
+ ],
1566
+ "type": "option"
1567
+ }
1568
+ },
1569
+ "hasDynamicHelp": false,
1570
+ "hidden": false,
1571
+ "hiddenAliases": [],
1572
+ "id": "assets:download",
1573
+ "pluginAlias": "checkly",
1574
+ "pluginName": "checkly",
1575
+ "pluginType": "core",
1576
+ "strict": true,
1577
+ "enableJsonFlag": false,
1578
+ "coreCommand": false,
1579
+ "readOnly": true,
1580
+ "destructive": false,
1581
+ "idempotent": true,
1582
+ "isESM": true,
1583
+ "relativePath": [
1584
+ "dist",
1585
+ "commands",
1586
+ "assets",
1587
+ "download.js"
1588
+ ]
1589
+ },
1590
+ "assets:list": {
1591
+ "aliases": [],
1592
+ "args": {},
1593
+ "description": "List result assets.",
1594
+ "flags": {
1595
+ "check-id": {
1596
+ "description": "Check ID for a scheduled check result.",
1597
+ "name": "check-id",
1598
+ "hasDynamicHelp": false,
1599
+ "multiple": false,
1600
+ "type": "option"
1601
+ },
1602
+ "test-session-id": {
1603
+ "description": "Test session ID for a test-session result.",
1604
+ "name": "test-session-id",
1605
+ "hasDynamicHelp": false,
1606
+ "multiple": false,
1607
+ "type": "option"
1608
+ },
1609
+ "result-id": {
1610
+ "description": "Check result ID or test-session result ID.",
1611
+ "name": "result-id",
1612
+ "required": true,
1613
+ "hasDynamicHelp": false,
1614
+ "multiple": false,
1615
+ "type": "option"
1616
+ },
1617
+ "type": {
1618
+ "description": "Filter assets by type.",
1619
+ "name": "type",
1620
+ "default": "all",
1621
+ "hasDynamicHelp": false,
1622
+ "multiple": false,
1623
+ "options": [
1624
+ "log",
1625
+ "trace",
1626
+ "video",
1627
+ "screenshot",
1628
+ "pcap",
1629
+ "report",
1630
+ "file",
1631
+ "all"
1632
+ ],
1633
+ "type": "option"
1634
+ },
1635
+ "asset": {
1636
+ "description": "Filter assets by exact Asset/Name value or glob.",
1637
+ "name": "asset",
1638
+ "hasDynamicHelp": false,
1639
+ "multiple": false,
1640
+ "type": "option"
1641
+ },
1642
+ "view": {
1643
+ "description": "Human output view. Ignored with --output json.",
1644
+ "name": "view",
1645
+ "default": "table",
1646
+ "hasDynamicHelp": false,
1647
+ "multiple": false,
1648
+ "options": [
1649
+ "table",
1650
+ "tree"
1651
+ ],
1652
+ "type": "option"
1653
+ },
1654
+ "output": {
1655
+ "char": "o",
1656
+ "description": "Output format.",
1657
+ "name": "output",
1658
+ "default": "table",
1659
+ "hasDynamicHelp": false,
1660
+ "multiple": false,
1661
+ "options": [
1662
+ "table",
1663
+ "json",
1664
+ "md"
1665
+ ],
1666
+ "type": "option"
1667
+ }
1668
+ },
1669
+ "hasDynamicHelp": false,
1670
+ "hidden": false,
1671
+ "hiddenAliases": [],
1672
+ "id": "assets:list",
1673
+ "pluginAlias": "checkly",
1674
+ "pluginName": "checkly",
1675
+ "pluginType": "core",
1676
+ "strict": true,
1677
+ "enableJsonFlag": false,
1678
+ "coreCommand": false,
1679
+ "readOnly": true,
1680
+ "destructive": false,
1681
+ "idempotent": true,
1682
+ "isESM": true,
1683
+ "relativePath": [
1684
+ "dist",
1685
+ "commands",
1686
+ "assets",
1687
+ "list.js"
1688
+ ]
1689
+ },
1478
1690
  "checks:delete": {
1479
1691
  "aliases": [],
1480
1692
  "args": {
@@ -2047,233 +2259,28 @@
2047
2259
  "parse-project.js"
2048
2260
  ]
2049
2261
  },
2050
- "assets:download": {
2262
+ "env:add": {
2051
2263
  "aliases": [],
2052
- "args": {},
2053
- "description": "Download result assets.",
2054
- "flags": {
2055
- "check-id": {
2056
- "description": "Check ID for a scheduled check result.",
2057
- "name": "check-id",
2058
- "hasDynamicHelp": false,
2059
- "multiple": false,
2060
- "type": "option"
2061
- },
2062
- "test-session-id": {
2063
- "description": "Test session ID for a test-session result.",
2064
- "name": "test-session-id",
2065
- "hasDynamicHelp": false,
2066
- "multiple": false,
2067
- "type": "option"
2264
+ "args": {
2265
+ "key": {
2266
+ "description": "Environment variable key.",
2267
+ "name": "key",
2268
+ "required": true
2068
2269
  },
2069
- "result-id": {
2070
- "description": "Check result ID or test-session result ID.",
2071
- "name": "result-id",
2072
- "required": true,
2073
- "hasDynamicHelp": false,
2074
- "multiple": false,
2075
- "type": "option"
2076
- },
2077
- "type": {
2078
- "description": "Select assets by type.",
2079
- "name": "type",
2080
- "hasDynamicHelp": false,
2081
- "multiple": false,
2082
- "options": [
2083
- "log",
2084
- "trace",
2085
- "video",
2086
- "screenshot",
2087
- "pcap",
2088
- "report",
2089
- "file",
2090
- "all"
2091
- ],
2092
- "type": "option"
2093
- },
2094
- "asset": {
2095
- "description": "Select an asset by exact Asset/Name value or glob.",
2096
- "name": "asset",
2097
- "hasDynamicHelp": false,
2098
- "multiple": false,
2099
- "type": "option"
2100
- },
2101
- "dir": {
2102
- "description": "Directory to write assets into.",
2103
- "name": "dir",
2104
- "hasDynamicHelp": false,
2105
- "multiple": false,
2106
- "type": "option"
2107
- },
2108
- "force": {
2109
- "description": "Overwrite existing files.",
2110
- "name": "force",
2111
- "allowNo": false,
2112
- "type": "boolean"
2113
- },
2114
- "skip-existing": {
2115
- "description": "Skip files that already exist.",
2116
- "name": "skip-existing",
2117
- "allowNo": false,
2118
- "type": "boolean"
2119
- },
2120
- "output": {
2121
- "char": "o",
2122
- "description": "Output format.",
2123
- "name": "output",
2124
- "default": "table",
2125
- "hasDynamicHelp": false,
2126
- "multiple": false,
2127
- "options": [
2128
- "table",
2129
- "json"
2130
- ],
2131
- "type": "option"
2132
- }
2133
- },
2134
- "hasDynamicHelp": false,
2135
- "hidden": false,
2136
- "hiddenAliases": [],
2137
- "id": "assets:download",
2138
- "pluginAlias": "checkly",
2139
- "pluginName": "checkly",
2140
- "pluginType": "core",
2141
- "strict": true,
2142
- "enableJsonFlag": false,
2143
- "coreCommand": false,
2144
- "readOnly": true,
2145
- "destructive": false,
2146
- "idempotent": true,
2147
- "isESM": true,
2148
- "relativePath": [
2149
- "dist",
2150
- "commands",
2151
- "assets",
2152
- "download.js"
2153
- ]
2154
- },
2155
- "assets:list": {
2156
- "aliases": [],
2157
- "args": {},
2158
- "description": "List result assets.",
2159
- "flags": {
2160
- "check-id": {
2161
- "description": "Check ID for a scheduled check result.",
2162
- "name": "check-id",
2163
- "hasDynamicHelp": false,
2164
- "multiple": false,
2165
- "type": "option"
2166
- },
2167
- "test-session-id": {
2168
- "description": "Test session ID for a test-session result.",
2169
- "name": "test-session-id",
2170
- "hasDynamicHelp": false,
2171
- "multiple": false,
2172
- "type": "option"
2173
- },
2174
- "result-id": {
2175
- "description": "Check result ID or test-session result ID.",
2176
- "name": "result-id",
2177
- "required": true,
2178
- "hasDynamicHelp": false,
2179
- "multiple": false,
2180
- "type": "option"
2181
- },
2182
- "type": {
2183
- "description": "Filter assets by type.",
2184
- "name": "type",
2185
- "default": "all",
2186
- "hasDynamicHelp": false,
2187
- "multiple": false,
2188
- "options": [
2189
- "log",
2190
- "trace",
2191
- "video",
2192
- "screenshot",
2193
- "pcap",
2194
- "report",
2195
- "file",
2196
- "all"
2197
- ],
2198
- "type": "option"
2199
- },
2200
- "asset": {
2201
- "description": "Filter assets by exact Asset/Name value or glob.",
2202
- "name": "asset",
2203
- "hasDynamicHelp": false,
2204
- "multiple": false,
2205
- "type": "option"
2206
- },
2207
- "view": {
2208
- "description": "Human output view. Ignored with --output json.",
2209
- "name": "view",
2210
- "default": "table",
2211
- "hasDynamicHelp": false,
2212
- "multiple": false,
2213
- "options": [
2214
- "table",
2215
- "tree"
2216
- ],
2217
- "type": "option"
2218
- },
2219
- "output": {
2220
- "char": "o",
2221
- "description": "Output format.",
2222
- "name": "output",
2223
- "default": "table",
2224
- "hasDynamicHelp": false,
2225
- "multiple": false,
2226
- "options": [
2227
- "table",
2228
- "json",
2229
- "md"
2230
- ],
2231
- "type": "option"
2232
- }
2233
- },
2234
- "hasDynamicHelp": false,
2235
- "hidden": false,
2236
- "hiddenAliases": [],
2237
- "id": "assets:list",
2238
- "pluginAlias": "checkly",
2239
- "pluginName": "checkly",
2240
- "pluginType": "core",
2241
- "strict": true,
2242
- "enableJsonFlag": false,
2243
- "coreCommand": false,
2244
- "readOnly": true,
2245
- "destructive": false,
2246
- "idempotent": true,
2247
- "isESM": true,
2248
- "relativePath": [
2249
- "dist",
2250
- "commands",
2251
- "assets",
2252
- "list.js"
2253
- ]
2254
- },
2255
- "env:add": {
2256
- "aliases": [],
2257
- "args": {
2258
- "key": {
2259
- "description": "Environment variable key.",
2260
- "name": "key",
2261
- "required": true
2262
- },
2263
- "value": {
2264
- "description": "Environment variable value.",
2265
- "name": "value",
2266
- "required": false
2267
- }
2268
- },
2269
- "description": "Add environment variable via \"checkly env add <key> <value>\".",
2270
- "flags": {
2271
- "locked": {
2272
- "char": "l",
2273
- "description": "Indicate that the environment variable will be locked.",
2274
- "name": "locked",
2275
- "allowNo": false,
2276
- "type": "boolean"
2270
+ "value": {
2271
+ "description": "Environment variable value.",
2272
+ "name": "value",
2273
+ "required": false
2274
+ }
2275
+ },
2276
+ "description": "Add environment variable via \"checkly env add <key> <value>\".",
2277
+ "flags": {
2278
+ "locked": {
2279
+ "char": "l",
2280
+ "description": "Indicate that the environment variable will be locked.",
2281
+ "name": "locked",
2282
+ "allowNo": false,
2283
+ "type": "boolean"
2277
2284
  },
2278
2285
  "secret": {
2279
2286
  "char": "s",
@@ -3293,99 +3300,6 @@
3293
3300
  "run.js"
3294
3301
  ]
3295
3302
  },
3296
- "skills": {
3297
- "aliases": [],
3298
- "args": {
3299
- "action": {
3300
- "description": "The action name (e.g. \"configure\", \"initialize\").",
3301
- "name": "action",
3302
- "required": false
3303
- },
3304
- "reference": {
3305
- "description": "A specific reference within the action (e.g. \"api-checks\").",
3306
- "name": "reference",
3307
- "required": false
3308
- }
3309
- },
3310
- "description": "Show Checkly AI skills, actions and their references.",
3311
- "flags": {},
3312
- "hasDynamicHelp": false,
3313
- "hidden": false,
3314
- "hiddenAliases": [],
3315
- "id": "skills",
3316
- "pluginAlias": "checkly",
3317
- "pluginName": "checkly",
3318
- "pluginType": "core",
3319
- "strict": true,
3320
- "enableJsonFlag": false,
3321
- "coreCommand": false,
3322
- "readOnly": false,
3323
- "destructive": false,
3324
- "idempotent": false,
3325
- "isESM": true,
3326
- "relativePath": [
3327
- "dist",
3328
- "commands",
3329
- "skills",
3330
- "index.js"
3331
- ]
3332
- },
3333
- "skills:install": {
3334
- "aliases": [],
3335
- "args": {},
3336
- "description": "Install the Checkly agent skill (SKILL.md) into your project.",
3337
- "flags": {
3338
- "target": {
3339
- "char": "t",
3340
- "description": "Platform to install the skill for (amp, claude, cline, codex, continue, cursor, gemini-cli, github-copilot, goose, opencode, roo, windsurf).",
3341
- "exclusive": [
3342
- "path"
3343
- ],
3344
- "name": "target",
3345
- "hasDynamicHelp": false,
3346
- "multiple": false,
3347
- "type": "option"
3348
- },
3349
- "path": {
3350
- "char": "p",
3351
- "description": "Custom target directory to install the skill into.",
3352
- "exclusive": [
3353
- "target"
3354
- ],
3355
- "name": "path",
3356
- "hasDynamicHelp": false,
3357
- "multiple": false,
3358
- "type": "option"
3359
- },
3360
- "force": {
3361
- "char": "f",
3362
- "description": "Overwrite existing SKILL.md without confirmation.",
3363
- "name": "force",
3364
- "allowNo": false,
3365
- "type": "boolean"
3366
- }
3367
- },
3368
- "hasDynamicHelp": false,
3369
- "hidden": false,
3370
- "hiddenAliases": [],
3371
- "id": "skills:install",
3372
- "pluginAlias": "checkly",
3373
- "pluginName": "checkly",
3374
- "pluginType": "core",
3375
- "strict": true,
3376
- "enableJsonFlag": false,
3377
- "coreCommand": false,
3378
- "readOnly": false,
3379
- "destructive": false,
3380
- "idempotent": true,
3381
- "isESM": true,
3382
- "relativePath": [
3383
- "dist",
3384
- "commands",
3385
- "skills",
3386
- "install.js"
3387
- ]
3388
- },
3389
3303
  "status-pages:get": {
3390
3304
  "aliases": [],
3391
3305
  "args": {
@@ -3496,6 +3410,99 @@
3496
3410
  "list.js"
3497
3411
  ]
3498
3412
  },
3413
+ "skills": {
3414
+ "aliases": [],
3415
+ "args": {
3416
+ "action": {
3417
+ "description": "The action name (e.g. \"configure\", \"initialize\").",
3418
+ "name": "action",
3419
+ "required": false
3420
+ },
3421
+ "reference": {
3422
+ "description": "A specific reference within the action (e.g. \"api-checks\").",
3423
+ "name": "reference",
3424
+ "required": false
3425
+ }
3426
+ },
3427
+ "description": "Show Checkly AI skills, actions and their references.",
3428
+ "flags": {},
3429
+ "hasDynamicHelp": false,
3430
+ "hidden": false,
3431
+ "hiddenAliases": [],
3432
+ "id": "skills",
3433
+ "pluginAlias": "checkly",
3434
+ "pluginName": "checkly",
3435
+ "pluginType": "core",
3436
+ "strict": true,
3437
+ "enableJsonFlag": false,
3438
+ "coreCommand": false,
3439
+ "readOnly": false,
3440
+ "destructive": false,
3441
+ "idempotent": false,
3442
+ "isESM": true,
3443
+ "relativePath": [
3444
+ "dist",
3445
+ "commands",
3446
+ "skills",
3447
+ "index.js"
3448
+ ]
3449
+ },
3450
+ "skills:install": {
3451
+ "aliases": [],
3452
+ "args": {},
3453
+ "description": "Install the Checkly agent skill (SKILL.md) into your project.",
3454
+ "flags": {
3455
+ "target": {
3456
+ "char": "t",
3457
+ "description": "Platform to install the skill for (amp, claude, cline, codex, continue, cursor, gemini-cli, github-copilot, goose, opencode, roo, windsurf).",
3458
+ "exclusive": [
3459
+ "path"
3460
+ ],
3461
+ "name": "target",
3462
+ "hasDynamicHelp": false,
3463
+ "multiple": false,
3464
+ "type": "option"
3465
+ },
3466
+ "path": {
3467
+ "char": "p",
3468
+ "description": "Custom target directory to install the skill into.",
3469
+ "exclusive": [
3470
+ "target"
3471
+ ],
3472
+ "name": "path",
3473
+ "hasDynamicHelp": false,
3474
+ "multiple": false,
3475
+ "type": "option"
3476
+ },
3477
+ "force": {
3478
+ "char": "f",
3479
+ "description": "Overwrite existing SKILL.md without confirmation.",
3480
+ "name": "force",
3481
+ "allowNo": false,
3482
+ "type": "boolean"
3483
+ }
3484
+ },
3485
+ "hasDynamicHelp": false,
3486
+ "hidden": false,
3487
+ "hiddenAliases": [],
3488
+ "id": "skills:install",
3489
+ "pluginAlias": "checkly",
3490
+ "pluginName": "checkly",
3491
+ "pluginType": "core",
3492
+ "strict": true,
3493
+ "enableJsonFlag": false,
3494
+ "coreCommand": false,
3495
+ "readOnly": false,
3496
+ "destructive": false,
3497
+ "idempotent": true,
3498
+ "isESM": true,
3499
+ "relativePath": [
3500
+ "dist",
3501
+ "commands",
3502
+ "skills",
3503
+ "install.js"
3504
+ ]
3505
+ },
3499
3506
  "test-sessions:get": {
3500
3507
  "aliases": [],
3501
3508
  "args": {
@@ -3704,5 +3711,5 @@
3704
3711
  ]
3705
3712
  }
3706
3713
  },
3707
- "version": "8.10.0"
3714
+ "version": "8.11.0-prerelease-7e89949"
3708
3715
  }