@bussolabs/closeyourit-cli 0.24.2 → 0.25.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/README.md +2 -0
- package/dist/base.js +31 -1
- package/dist/commands/kb/approve.d.ts +15 -0
- package/dist/commands/kb/approve.js +28 -0
- package/dist/commands/kb/reject.d.ts +14 -0
- package/dist/commands/kb/reject.js +27 -0
- package/oclif.manifest.json +5117 -5027
- package/opencli.json +43 -1
- package/package.json +1 -1
package/opencli.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"opencli": "0.1",
|
|
4
4
|
"info": {
|
|
5
5
|
"title": "closeyourit",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.25.0",
|
|
7
7
|
"description": "CLI for CloseYourIt — manage org, errors, tokens and tickets with your user token",
|
|
8
8
|
"license": {
|
|
9
9
|
"name": "MIT",
|
|
@@ -3436,6 +3436,27 @@
|
|
|
3436
3436
|
"name": "kb",
|
|
3437
3437
|
"description": "Knowledge base: pages (notes/decisions/guides), semantic search and AI ask",
|
|
3438
3438
|
"commands": [
|
|
3439
|
+
{
|
|
3440
|
+
"name": "approve",
|
|
3441
|
+
"description": "Accept a page waiting for review: it enters search, answers and related panels",
|
|
3442
|
+
"options": [
|
|
3443
|
+
{
|
|
3444
|
+
"name": "--yes",
|
|
3445
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
3446
|
+
}
|
|
3447
|
+
],
|
|
3448
|
+
"arguments": [
|
|
3449
|
+
{
|
|
3450
|
+
"name": "ID",
|
|
3451
|
+
"required": true,
|
|
3452
|
+
"description": "Knowledge page id"
|
|
3453
|
+
}
|
|
3454
|
+
],
|
|
3455
|
+
"examples": [
|
|
3456
|
+
"closeyourit kb approve <page-id>",
|
|
3457
|
+
"closeyourit kb approve <page-id> --json"
|
|
3458
|
+
]
|
|
3459
|
+
},
|
|
3439
3460
|
{
|
|
3440
3461
|
"name": "ask",
|
|
3441
3462
|
"description": "Ask a natural-language question; the server AI answers from the knowledge base and cites the pages it used (may take a few seconds)",
|
|
@@ -4070,6 +4091,27 @@
|
|
|
4070
4091
|
"closeyourit kb publish -p CYCL --publication-key docs:release --title \"Release guide\" --kind guide --body-file ./release.md"
|
|
4071
4092
|
]
|
|
4072
4093
|
},
|
|
4094
|
+
{
|
|
4095
|
+
"name": "reject",
|
|
4096
|
+
"description": "Discard a page waiting for review: it stays archived as rejected, out of search and answers",
|
|
4097
|
+
"options": [
|
|
4098
|
+
{
|
|
4099
|
+
"name": "--yes",
|
|
4100
|
+
"description": "Confirm a dangerous action the server would otherwise refuse (R422-CONFIRM-001)"
|
|
4101
|
+
}
|
|
4102
|
+
],
|
|
4103
|
+
"arguments": [
|
|
4104
|
+
{
|
|
4105
|
+
"name": "ID",
|
|
4106
|
+
"required": true,
|
|
4107
|
+
"description": "Knowledge page id"
|
|
4108
|
+
}
|
|
4109
|
+
],
|
|
4110
|
+
"examples": [
|
|
4111
|
+
"closeyourit kb reject <page-id>",
|
|
4112
|
+
"closeyourit kb reject <page-id> --json"
|
|
4113
|
+
]
|
|
4114
|
+
},
|
|
4073
4115
|
{
|
|
4074
4116
|
"name": "related",
|
|
4075
4117
|
"description": "List the pages to read next: the ones this page links to (and that link to it), plus close matches by meaning",
|