@codiac.io/codiac-cli 1.3.245 → 1.3.246
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 +260 -160
- package/dist/commands/skill/install.d.ts +14 -0
- package/dist/commands/skill/install.js +43 -0
- package/dist/commands/skill/install.js.map +1 -0
- package/dist/commands/skill/path.d.ts +12 -0
- package/dist/commands/skill/path.js +26 -0
- package/dist/commands/skill/path.js.map +1 -0
- package/dist/commands/skill/show.d.ts +14 -0
- package/dist/commands/skill/show.js +43 -0
- package/dist/commands/skill/show.js.map +1 -0
- package/dist/skill-assets.d.ts +22 -0
- package/dist/skill-assets.js +65 -0
- package/dist/skill-assets.js.map +1 -0
- package/oclif.manifest.json +127 -1
- package/package.json +9 -3
- package/skill/SKILL.md +153 -0
- package/skill/references/cli-reference.md +167 -0
- package/skill/references/concepts.md +244 -0
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ npm install -g @codiac.io/codiac-cli
|
|
|
21
21
|
$ codiac COMMAND
|
|
22
22
|
running command...
|
|
23
23
|
$ codiac (--version|-v)
|
|
24
|
-
@codiac.io/codiac-cli/1.3.
|
|
24
|
+
@codiac.io/codiac-cli/1.3.246 linux-x64 node-v22.15.1
|
|
25
25
|
$ codiac --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ codiac COMMAND
|
|
@@ -451,6 +451,9 @@ USAGE
|
|
|
451
451
|
* [`codiac secretStore forget`](#codiac-secretstore-forget)
|
|
452
452
|
* [`codiac secretStore list`](#codiac-secretstore-list)
|
|
453
453
|
* [`codiac shell init`](#codiac-shell-init)
|
|
454
|
+
* [`codiac skill install`](#codiac-skill-install)
|
|
455
|
+
* [`codiac skill path`](#codiac-skill-path)
|
|
456
|
+
* [`codiac skill show`](#codiac-skill-show)
|
|
454
457
|
* [`codiac snapshot deploy`](#codiac-snapshot-deploy)
|
|
455
458
|
* [`codiac snapshot list`](#codiac-snapshot-list)
|
|
456
459
|
* [`codiac snapshot tag`](#codiac-snapshot-tag)
|
|
@@ -528,7 +531,7 @@ EXAMPLES
|
|
|
528
531
|
$ codiac ai agent install -e ben -t hermes -c dev --to-script
|
|
529
532
|
```
|
|
530
533
|
|
|
531
|
-
_See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
534
|
+
_See code: [src/commands/ai/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/ai/agent/install.ts)_
|
|
532
535
|
|
|
533
536
|
## `codiac asset create`
|
|
534
537
|
|
|
@@ -649,7 +652,7 @@ EXAMPLES
|
|
|
649
652
|
$ codiac asset create -e myEnterprise -n redis --helm --chart redis --chart-repo bitnami --silent
|
|
650
653
|
```
|
|
651
654
|
|
|
652
|
-
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
655
|
+
_See code: [src/commands/asset/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/create.ts)_
|
|
653
656
|
|
|
654
657
|
## `codiac asset edit`
|
|
655
658
|
|
|
@@ -707,7 +710,7 @@ EXAMPLES
|
|
|
707
710
|
$ codiac asset edit -e myEnterprise -n my-api --remove-deploy-condition --silent
|
|
708
711
|
```
|
|
709
712
|
|
|
710
|
-
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
713
|
+
_See code: [src/commands/asset/edit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/edit.ts)_
|
|
711
714
|
|
|
712
715
|
## `codiac asset entrypoint`
|
|
713
716
|
|
|
@@ -828,7 +831,7 @@ EXAMPLES
|
|
|
828
831
|
$ codiac asset entrypoint delete -e ml -a my-worker -v '>=1.2.3' --silent
|
|
829
832
|
```
|
|
830
833
|
|
|
831
|
-
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
834
|
+
_See code: [src/commands/asset/entrypoint/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/entrypoint/delete.ts)_
|
|
832
835
|
|
|
833
836
|
## `codiac asset entrypoint set`
|
|
834
837
|
|
|
@@ -897,7 +900,7 @@ EXAMPLES
|
|
|
897
900
|
--input=/backup/workflows'
|
|
898
901
|
```
|
|
899
902
|
|
|
900
|
-
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
903
|
+
_See code: [src/commands/asset/entrypoint/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/entrypoint/set.ts)_
|
|
901
904
|
|
|
902
905
|
## `codiac asset get [CMD]`
|
|
903
906
|
|
|
@@ -1005,7 +1008,7 @@ EXAMPLES
|
|
|
1005
1008
|
$ codiac asset list -e myEnterprise --to-script
|
|
1006
1009
|
```
|
|
1007
1010
|
|
|
1008
|
-
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1011
|
+
_See code: [src/commands/asset/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/list.ts)_
|
|
1009
1012
|
|
|
1010
1013
|
## `codiac asset mon [CMD]`
|
|
1011
1014
|
|
|
@@ -1266,7 +1269,7 @@ EXAMPLES
|
|
|
1266
1269
|
$ codiac asset obliterate -e main -n my-api
|
|
1267
1270
|
```
|
|
1268
1271
|
|
|
1269
|
-
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1272
|
+
_See code: [src/commands/asset/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/obliterate.ts)_
|
|
1270
1273
|
|
|
1271
1274
|
## `codiac asset probe create [CMD]`
|
|
1272
1275
|
|
|
@@ -1356,7 +1359,7 @@ EXAMPLES
|
|
|
1356
1359
|
$ codiac asset probe create -n acme -a myapi --predefined builtin-heartbeat-file-exists --to-script
|
|
1357
1360
|
```
|
|
1358
1361
|
|
|
1359
|
-
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1362
|
+
_See code: [src/commands/asset/probe/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/probe/create.ts)_
|
|
1360
1363
|
|
|
1361
1364
|
## `codiac asset probe delete`
|
|
1362
1365
|
|
|
@@ -1411,7 +1414,7 @@ EXAMPLES
|
|
|
1411
1414
|
$ codiac asset probe delete
|
|
1412
1415
|
```
|
|
1413
1416
|
|
|
1414
|
-
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1417
|
+
_See code: [src/commands/asset/probe/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/probe/delete.ts)_
|
|
1415
1418
|
|
|
1416
1419
|
## `codiac asset probe list`
|
|
1417
1420
|
|
|
@@ -1463,7 +1466,7 @@ EXAMPLES
|
|
|
1463
1466
|
$ codiac asset probe list
|
|
1464
1467
|
```
|
|
1465
1468
|
|
|
1466
|
-
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1469
|
+
_See code: [src/commands/asset/probe/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/probe/list.ts)_
|
|
1467
1470
|
|
|
1468
1471
|
## `codiac asset recycle`
|
|
1469
1472
|
|
|
@@ -1503,7 +1506,7 @@ DESCRIPTION
|
|
|
1503
1506
|
Deploys a given asset to a given cabinet. Defaults to current version.
|
|
1504
1507
|
```
|
|
1505
1508
|
|
|
1506
|
-
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1509
|
+
_See code: [src/commands/asset/recycle.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/recycle.ts)_
|
|
1507
1510
|
|
|
1508
1511
|
## `codiac asset undeploy`
|
|
1509
1512
|
|
|
@@ -1547,7 +1550,7 @@ EXAMPLES
|
|
|
1547
1550
|
$ codiac asset undeploy -e myEnterprise -a myApi -c dev --to-script
|
|
1548
1551
|
```
|
|
1549
1552
|
|
|
1550
|
-
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1553
|
+
_See code: [src/commands/asset/undeploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/undeploy.ts)_
|
|
1551
1554
|
|
|
1552
1555
|
## `codiac asset view [CMD]`
|
|
1553
1556
|
|
|
@@ -1603,7 +1606,7 @@ ALIASES
|
|
|
1603
1606
|
$ codiac asset get
|
|
1604
1607
|
```
|
|
1605
1608
|
|
|
1606
|
-
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1609
|
+
_See code: [src/commands/asset/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/view.ts)_
|
|
1607
1610
|
|
|
1608
1611
|
## `codiac asset vol add [MOUNTPATH]`
|
|
1609
1612
|
|
|
@@ -1874,7 +1877,7 @@ ALIASES
|
|
|
1874
1877
|
$ codiac asset volume add
|
|
1875
1878
|
```
|
|
1876
1879
|
|
|
1877
|
-
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1880
|
+
_See code: [src/commands/asset/volume/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/volume/create.ts)_
|
|
1878
1881
|
|
|
1879
1882
|
## `codiac asset volume del`
|
|
1880
1883
|
|
|
@@ -1962,7 +1965,7 @@ EXAMPLES
|
|
|
1962
1965
|
$ codiac asset volume delete -e myEnterprise -n myMount --to-script
|
|
1963
1966
|
```
|
|
1964
1967
|
|
|
1965
|
-
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
1968
|
+
_See code: [src/commands/asset/volume/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/volume/delete.ts)_
|
|
1966
1969
|
|
|
1967
1970
|
## `codiac asset volume list`
|
|
1968
1971
|
|
|
@@ -2011,7 +2014,7 @@ EXAMPLES
|
|
|
2011
2014
|
$ codiac asset volume list -e myEnterprise --silent
|
|
2012
2015
|
```
|
|
2013
2016
|
|
|
2014
|
-
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2017
|
+
_See code: [src/commands/asset/volume/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/volume/list.ts)_
|
|
2015
2018
|
|
|
2016
2019
|
## `codiac asset volumes del`
|
|
2017
2020
|
|
|
@@ -2178,7 +2181,7 @@ EXAMPLES
|
|
|
2178
2181
|
$ codiac asset where -e main -a my-api --silent
|
|
2179
2182
|
```
|
|
2180
2183
|
|
|
2181
|
-
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2184
|
+
_See code: [src/commands/asset/where.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/asset/where.ts)_
|
|
2182
2185
|
|
|
2183
2186
|
## `codiac auth cab allow`
|
|
2184
2187
|
|
|
@@ -2340,7 +2343,7 @@ EXAMPLES
|
|
|
2340
2343
|
$ codiac auth cabinet allow -e qa -c shasta -r productmanager -p read
|
|
2341
2344
|
```
|
|
2342
2345
|
|
|
2343
|
-
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2346
|
+
_See code: [src/commands/auth/cabinet/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/cabinet/allow.ts)_
|
|
2344
2347
|
|
|
2345
2348
|
## `codiac auth cabinet allowed`
|
|
2346
2349
|
|
|
@@ -2388,7 +2391,7 @@ EXAMPLES
|
|
|
2388
2391
|
$ codiac auth cabinet allowed --enterprise modeling -e qa -c sprint5
|
|
2389
2392
|
```
|
|
2390
2393
|
|
|
2391
|
-
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2394
|
+
_See code: [src/commands/auth/cabinet/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/cabinet/allowed.ts)_
|
|
2392
2395
|
|
|
2393
2396
|
## `codiac auth ent allow`
|
|
2394
2397
|
|
|
@@ -2579,7 +2582,7 @@ EXAMPLES
|
|
|
2579
2582
|
$ codiac auth enterprise allow -r deployer -p none
|
|
2580
2583
|
```
|
|
2581
2584
|
|
|
2582
|
-
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2585
|
+
_See code: [src/commands/auth/enterprise/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/enterprise/allow.ts)_
|
|
2583
2586
|
|
|
2584
2587
|
## `codiac auth enterprise allow onEnvironments`
|
|
2585
2588
|
|
|
@@ -2633,7 +2636,7 @@ EXAMPLES
|
|
|
2633
2636
|
$ codiac auth enterprise allow onEnvironments --enterprise dyno -r productmanager -p read
|
|
2634
2637
|
```
|
|
2635
2638
|
|
|
2636
|
-
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2639
|
+
_See code: [src/commands/auth/enterprise/allow/onEnvironments.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/enterprise/allow/onEnvironments.ts)_
|
|
2637
2640
|
|
|
2638
2641
|
## `codiac auth enterprise allowed`
|
|
2639
2642
|
|
|
@@ -2674,7 +2677,7 @@ EXAMPLES
|
|
|
2674
2677
|
$ codiac auth enterprise allowed --enterprise modeling
|
|
2675
2678
|
```
|
|
2676
2679
|
|
|
2677
|
-
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2680
|
+
_See code: [src/commands/auth/enterprise/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/enterprise/allowed.ts)_
|
|
2678
2681
|
|
|
2679
2682
|
## `codiac auth env allowed`
|
|
2680
2683
|
|
|
@@ -2881,7 +2884,7 @@ EXAMPLES
|
|
|
2881
2884
|
$ codiac auth environment allow -e qa -r productmanager -p read
|
|
2882
2885
|
```
|
|
2883
2886
|
|
|
2884
|
-
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2887
|
+
_See code: [src/commands/auth/environment/allow.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/environment/allow.ts)_
|
|
2885
2888
|
|
|
2886
2889
|
## `codiac auth environment allow onCabinets`
|
|
2887
2890
|
|
|
@@ -2938,7 +2941,7 @@ EXAMPLES
|
|
|
2938
2941
|
$ codiac auth environment allow onCabinets -e qa -r productmanager -p read
|
|
2939
2942
|
```
|
|
2940
2943
|
|
|
2941
|
-
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2944
|
+
_See code: [src/commands/auth/environment/allow/onCabinets.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/environment/allow/onCabinets.ts)_
|
|
2942
2945
|
|
|
2943
2946
|
## `codiac auth environment allowed`
|
|
2944
2947
|
|
|
@@ -2983,7 +2986,7 @@ EXAMPLES
|
|
|
2983
2986
|
$ codiac auth environment allowed --enterprise modeling -e dev
|
|
2984
2987
|
```
|
|
2985
2988
|
|
|
2986
|
-
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
2989
|
+
_See code: [src/commands/auth/environment/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/environment/allowed.ts)_
|
|
2987
2990
|
|
|
2988
2991
|
## `codiac auth register`
|
|
2989
2992
|
|
|
@@ -3029,7 +3032,7 @@ EXAMPLES
|
|
|
3029
3032
|
$ codiac auth register
|
|
3030
3033
|
```
|
|
3031
3034
|
|
|
3032
|
-
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3035
|
+
_See code: [src/commands/auth/register.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/register.ts)_
|
|
3033
3036
|
|
|
3034
3037
|
## `codiac auth role allowed [NAME]`
|
|
3035
3038
|
|
|
@@ -3076,7 +3079,7 @@ EXAMPLES
|
|
|
3076
3079
|
$ codiac auth role allowed -n deployer -e main
|
|
3077
3080
|
```
|
|
3078
3081
|
|
|
3079
|
-
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3082
|
+
_See code: [src/commands/auth/role/allowed.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/role/allowed.ts)_
|
|
3080
3083
|
|
|
3081
3084
|
## `codiac auth role assign`
|
|
3082
3085
|
|
|
@@ -3108,7 +3111,7 @@ EXAMPLES
|
|
|
3108
3111
|
$ codiac auth role assign -r deployer -u joe.cool@yourdomain.com
|
|
3109
3112
|
```
|
|
3110
3113
|
|
|
3111
|
-
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3114
|
+
_See code: [src/commands/auth/role/assign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/role/assign.ts)_
|
|
3112
3115
|
|
|
3113
3116
|
## `codiac auth role create [NAME]`
|
|
3114
3117
|
|
|
@@ -3141,7 +3144,7 @@ EXAMPLES
|
|
|
3141
3144
|
$ codiac auth role create -n deployer
|
|
3142
3145
|
```
|
|
3143
3146
|
|
|
3144
|
-
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3147
|
+
_See code: [src/commands/auth/role/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/role/create.ts)_
|
|
3145
3148
|
|
|
3146
3149
|
## `codiac auth role delete [NAME]`
|
|
3147
3150
|
|
|
@@ -3177,7 +3180,7 @@ EXAMPLES
|
|
|
3177
3180
|
$ codiac auth role delete --id abc123def456
|
|
3178
3181
|
```
|
|
3179
3182
|
|
|
3180
|
-
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3183
|
+
_See code: [src/commands/auth/role/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/role/delete.ts)_
|
|
3181
3184
|
|
|
3182
3185
|
## `codiac auth role list`
|
|
3183
3186
|
|
|
@@ -3213,7 +3216,7 @@ EXAMPLES
|
|
|
3213
3216
|
$ codiac auth role list -o yaml > roles.yaml
|
|
3214
3217
|
```
|
|
3215
3218
|
|
|
3216
|
-
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3219
|
+
_See code: [src/commands/auth/role/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/role/list.ts)_
|
|
3217
3220
|
|
|
3218
3221
|
## `codiac auth role unassign`
|
|
3219
3222
|
|
|
@@ -3245,7 +3248,7 @@ EXAMPLES
|
|
|
3245
3248
|
$ codiac auth role unassign -r deployer -u joe.cool@yourdomain.com
|
|
3246
3249
|
```
|
|
3247
3250
|
|
|
3248
|
-
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3251
|
+
_See code: [src/commands/auth/role/unassign.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/role/unassign.ts)_
|
|
3249
3252
|
|
|
3250
3253
|
## `codiac auth user invite`
|
|
3251
3254
|
|
|
@@ -3285,7 +3288,7 @@ EXAMPLES
|
|
|
3285
3288
|
$ codiac auth user invite
|
|
3286
3289
|
```
|
|
3287
3290
|
|
|
3288
|
-
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3291
|
+
_See code: [src/commands/auth/user/invite.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/user/invite.ts)_
|
|
3289
3292
|
|
|
3290
3293
|
## `codiac auth user list`
|
|
3291
3294
|
|
|
@@ -3321,7 +3324,7 @@ EXAMPLES
|
|
|
3321
3324
|
$ codiac auth user list -o yaml > users.yaml
|
|
3322
3325
|
```
|
|
3323
3326
|
|
|
3324
|
-
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3327
|
+
_See code: [src/commands/auth/user/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/auth/user/list.ts)_
|
|
3325
3328
|
|
|
3326
3329
|
## `codiac autocomplete [SHELL]`
|
|
3327
3330
|
|
|
@@ -3371,7 +3374,7 @@ DESCRIPTION
|
|
|
3371
3374
|
Creates a new branch for the parent project and any sourced dependencies.
|
|
3372
3375
|
```
|
|
3373
3376
|
|
|
3374
|
-
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3377
|
+
_See code: [src/commands/branch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/branch.ts)_
|
|
3375
3378
|
|
|
3376
3379
|
## `codiac branch current`
|
|
3377
3380
|
|
|
@@ -3391,7 +3394,7 @@ ALIASES
|
|
|
3391
3394
|
$ codiac branches current
|
|
3392
3395
|
```
|
|
3393
3396
|
|
|
3394
|
-
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3397
|
+
_See code: [src/commands/branch/current.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/branch/current.ts)_
|
|
3395
3398
|
|
|
3396
3399
|
## `codiac branch list`
|
|
3397
3400
|
|
|
@@ -3413,7 +3416,7 @@ ALIASES
|
|
|
3413
3416
|
$ codiac branches list
|
|
3414
3417
|
```
|
|
3415
3418
|
|
|
3416
|
-
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3419
|
+
_See code: [src/commands/branch/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/branch/list.ts)_
|
|
3417
3420
|
|
|
3418
3421
|
## `codiac branches current`
|
|
3419
3422
|
|
|
@@ -3503,7 +3506,7 @@ DESCRIPTION
|
|
|
3503
3506
|
Builds the project and the docker container
|
|
3504
3507
|
```
|
|
3505
3508
|
|
|
3506
|
-
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
3509
|
+
_See code: [src/commands/build.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/build.ts)_
|
|
3507
3510
|
|
|
3508
3511
|
## `codiac cab attach`
|
|
3509
3512
|
|
|
@@ -4252,7 +4255,7 @@ EXAMPLES
|
|
|
4252
4255
|
prod-cluster-1 --to-script
|
|
4253
4256
|
```
|
|
4254
4257
|
|
|
4255
|
-
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4258
|
+
_See code: [src/commands/cabinet/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/cluster/attach.ts)_
|
|
4256
4259
|
|
|
4257
4260
|
## `codiac cabinet contents`
|
|
4258
4261
|
|
|
@@ -4296,7 +4299,7 @@ EXAMPLES
|
|
|
4296
4299
|
$ codiac cabinet contents -e main -c my-spike --to-script > show-contents.sh
|
|
4297
4300
|
```
|
|
4298
4301
|
|
|
4299
|
-
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4302
|
+
_See code: [src/commands/cabinet/contents.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/contents.ts)_
|
|
4300
4303
|
|
|
4301
4304
|
## `codiac cabinet create [CABINET]`
|
|
4302
4305
|
|
|
@@ -4363,7 +4366,7 @@ EXAMPLES
|
|
|
4363
4366
|
cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent
|
|
4364
4367
|
```
|
|
4365
4368
|
|
|
4366
|
-
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4369
|
+
_See code: [src/commands/cabinet/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/create.ts)_
|
|
4367
4370
|
|
|
4368
4371
|
## `codiac cabinet define [CABINET]`
|
|
4369
4372
|
|
|
@@ -4425,7 +4428,7 @@ EXAMPLES
|
|
|
4425
4428
|
$ codiac cabinet define my-cab --enterprise main --environment dev-environment --cluster my-cluster --silent
|
|
4426
4429
|
```
|
|
4427
4430
|
|
|
4428
|
-
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4431
|
+
_See code: [src/commands/cabinet/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/define.ts)_
|
|
4429
4432
|
|
|
4430
4433
|
## `codiac cabinet destroy [CABINET]`
|
|
4431
4434
|
|
|
@@ -4483,7 +4486,7 @@ EXAMPLES
|
|
|
4483
4486
|
--environment dev --silent
|
|
4484
4487
|
```
|
|
4485
4488
|
|
|
4486
|
-
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4489
|
+
_See code: [src/commands/cabinet/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/destroy.ts)_
|
|
4487
4490
|
|
|
4488
4491
|
## `codiac cabinet detach [CABINET]`
|
|
4489
4492
|
|
|
@@ -4540,7 +4543,7 @@ EXAMPLES
|
|
|
4540
4543
|
main --environment dev
|
|
4541
4544
|
```
|
|
4542
4545
|
|
|
4543
|
-
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4546
|
+
_See code: [src/commands/cabinet/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/detach.ts)_
|
|
4544
4547
|
|
|
4545
4548
|
## `codiac cabinet forget [CABINET]`
|
|
4546
4549
|
|
|
@@ -4595,7 +4598,7 @@ EXAMPLES
|
|
|
4595
4598
|
$ codiac cabinet forget --to-script
|
|
4596
4599
|
```
|
|
4597
4600
|
|
|
4598
|
-
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4601
|
+
_See code: [src/commands/cabinet/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/forget.ts)_
|
|
4599
4602
|
|
|
4600
4603
|
## `codiac cabinet list`
|
|
4601
4604
|
|
|
@@ -4646,7 +4649,7 @@ EXAMPLES
|
|
|
4646
4649
|
$ codiac cabinet list -e myEnterprise --silent
|
|
4647
4650
|
```
|
|
4648
4651
|
|
|
4649
|
-
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4652
|
+
_See code: [src/commands/cabinet/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/list.ts)_
|
|
4650
4653
|
|
|
4651
4654
|
## `codiac cabinet obliterate [CABINET]`
|
|
4652
4655
|
|
|
@@ -4688,7 +4691,7 @@ ALIASES
|
|
|
4688
4691
|
$ codiac infrx cab obliterate
|
|
4689
4692
|
```
|
|
4690
4693
|
|
|
4691
|
-
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4694
|
+
_See code: [src/commands/cabinet/obliterate.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/obliterate.ts)_
|
|
4692
4695
|
|
|
4693
4696
|
## `codiac cabinet restore`
|
|
4694
4697
|
|
|
@@ -4755,7 +4758,7 @@ EXAMPLES
|
|
|
4755
4758
|
$ codiac cabinet restore --cluster prod-cluster-1 --to-script
|
|
4756
4759
|
```
|
|
4757
4760
|
|
|
4758
|
-
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
4761
|
+
_See code: [src/commands/cabinet/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cabinet/restore.ts)_
|
|
4759
4762
|
|
|
4760
4763
|
## `codiac cfg add`
|
|
4761
4764
|
|
|
@@ -5054,7 +5057,7 @@ DESCRIPTION
|
|
|
5054
5057
|
Applies settings to the Codiac CLI itself (scoped to the local machine).
|
|
5055
5058
|
```
|
|
5056
5059
|
|
|
5057
|
-
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5060
|
+
_See code: [src/commands/cli.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cli.ts)_
|
|
5058
5061
|
|
|
5059
5062
|
## `codiac cluster agent configure [CLUSTER]`
|
|
5060
5063
|
|
|
@@ -5122,7 +5125,7 @@ EXAMPLES
|
|
|
5122
5125
|
$ codiac cluster agent configure my-cluster --to-script
|
|
5123
5126
|
```
|
|
5124
5127
|
|
|
5125
|
-
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5128
|
+
_See code: [src/commands/cluster/agent/configure.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/agent/configure.ts)_
|
|
5126
5129
|
|
|
5127
5130
|
## `codiac cluster agent install [CLUSTER]`
|
|
5128
5131
|
|
|
@@ -5178,7 +5181,7 @@ EXAMPLES
|
|
|
5178
5181
|
$ codiac cluster agent install my-cluster --to-script
|
|
5179
5182
|
```
|
|
5180
5183
|
|
|
5181
|
-
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5184
|
+
_See code: [src/commands/cluster/agent/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/agent/install.ts)_
|
|
5182
5185
|
|
|
5183
5186
|
## `codiac cluster agent uninstall [CLUSTER]`
|
|
5184
5187
|
|
|
@@ -5226,7 +5229,7 @@ EXAMPLES
|
|
|
5226
5229
|
$ codiac cluster agent uninstall my-cluster --to-script
|
|
5227
5230
|
```
|
|
5228
5231
|
|
|
5229
|
-
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5232
|
+
_See code: [src/commands/cluster/agent/uninstall.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/agent/uninstall.ts)_
|
|
5230
5233
|
|
|
5231
5234
|
## `codiac cluster bootstrap [NAME]`
|
|
5232
5235
|
|
|
@@ -5289,7 +5292,7 @@ EXAMPLES
|
|
|
5289
5292
|
$ codiac cluster bootstrap my-cluster --to-script
|
|
5290
5293
|
```
|
|
5291
5294
|
|
|
5292
|
-
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5295
|
+
_See code: [src/commands/cluster/bootstrap.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/bootstrap.ts)_
|
|
5293
5296
|
|
|
5294
5297
|
## `codiac cluster capture`
|
|
5295
5298
|
|
|
@@ -5374,7 +5377,7 @@ EXAMPLES
|
|
|
5374
5377
|
$ codiac cluster connect my-fav-cluster
|
|
5375
5378
|
```
|
|
5376
5379
|
|
|
5377
|
-
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
5380
|
+
_See code: [src/commands/cluster/connect.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/connect.ts)_
|
|
5378
5381
|
|
|
5379
5382
|
## `codiac cluster contents`
|
|
5380
5383
|
|
|
@@ -6039,7 +6042,7 @@ EXAMPLES
|
|
|
6039
6042
|
$ codiac cluster install my-cluster -a my-chart -u 1.2.3 --silent
|
|
6040
6043
|
```
|
|
6041
6044
|
|
|
6042
|
-
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6045
|
+
_See code: [src/commands/cluster/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/install.ts)_
|
|
6043
6046
|
|
|
6044
6047
|
## `codiac cluster journal [CLUSTER]`
|
|
6045
6048
|
|
|
@@ -6328,7 +6331,7 @@ EXAMPLES
|
|
|
6328
6331
|
$ codiac cluster stack capture my-fav-cluster
|
|
6329
6332
|
```
|
|
6330
6333
|
|
|
6331
|
-
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6334
|
+
_See code: [src/commands/cluster/stack/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/stack/capture.ts)_
|
|
6332
6335
|
|
|
6333
6336
|
## `codiac cluster stack install [CLUSTER]`
|
|
6334
6337
|
|
|
@@ -6380,7 +6383,7 @@ EXAMPLES
|
|
|
6380
6383
|
$ codiac cluster stack install my-cluster --to-script
|
|
6381
6384
|
```
|
|
6382
6385
|
|
|
6383
|
-
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6386
|
+
_See code: [src/commands/cluster/stack/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/stack/install.ts)_
|
|
6384
6387
|
|
|
6385
6388
|
## `codiac cluster stack list`
|
|
6386
6389
|
|
|
@@ -6546,7 +6549,7 @@ EXAMPLES
|
|
|
6546
6549
|
$ codiac cluster start my-fav-cluster
|
|
6547
6550
|
```
|
|
6548
6551
|
|
|
6549
|
-
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6552
|
+
_See code: [src/commands/cluster/start.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/start.ts)_
|
|
6550
6553
|
|
|
6551
6554
|
## `codiac cluster stop [CLUSTER]`
|
|
6552
6555
|
|
|
@@ -6583,7 +6586,7 @@ EXAMPLES
|
|
|
6583
6586
|
$ codiac cluster start my-fav-cluster
|
|
6584
6587
|
```
|
|
6585
6588
|
|
|
6586
|
-
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6589
|
+
_See code: [src/commands/cluster/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/cluster/stop.ts)_
|
|
6587
6590
|
|
|
6588
6591
|
## `codiac cluster uninstall`
|
|
6589
6592
|
|
|
@@ -6645,7 +6648,7 @@ DESCRIPTION
|
|
|
6645
6648
|
Commits the currently staged changes on the current branch of the main project and on any sourced dependencies.
|
|
6646
6649
|
```
|
|
6647
6650
|
|
|
6648
|
-
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6651
|
+
_See code: [src/commands/commit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/commit.ts)_
|
|
6649
6652
|
|
|
6650
6653
|
## `codiac config add`
|
|
6651
6654
|
|
|
@@ -6797,7 +6800,7 @@ EXAMPLES
|
|
|
6797
6800
|
--value-type string
|
|
6798
6801
|
```
|
|
6799
6802
|
|
|
6800
|
-
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6803
|
+
_See code: [src/commands/config/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/config/add.ts)_
|
|
6801
6804
|
|
|
6802
6805
|
## `codiac config delete [SETTING]`
|
|
6803
6806
|
|
|
@@ -6866,7 +6869,7 @@ ALIASES
|
|
|
6866
6869
|
$ codiac cfg delete
|
|
6867
6870
|
```
|
|
6868
6871
|
|
|
6869
|
-
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6872
|
+
_See code: [src/commands/config/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/config/delete.ts)_
|
|
6870
6873
|
|
|
6871
6874
|
## `codiac config deploy`
|
|
6872
6875
|
|
|
@@ -6907,7 +6910,7 @@ EXAMPLES
|
|
|
6907
6910
|
$ codiac config deploy -e myEnterprise -a myApi -c dev --to-script
|
|
6908
6911
|
```
|
|
6909
6912
|
|
|
6910
|
-
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6913
|
+
_See code: [src/commands/config/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/config/deploy.ts)_
|
|
6911
6914
|
|
|
6912
6915
|
## `codiac config import`
|
|
6913
6916
|
|
|
@@ -6968,7 +6971,7 @@ EXAMPLES
|
|
|
6968
6971
|
$ codiac config import -a my-asset -s ./helm-values.yaml -c dev --escape-expressions
|
|
6969
6972
|
```
|
|
6970
6973
|
|
|
6971
|
-
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
6974
|
+
_See code: [src/commands/config/import.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/config/import.ts)_
|
|
6972
6975
|
|
|
6973
6976
|
## `codiac config preview [SETTING]`
|
|
6974
6977
|
|
|
@@ -7251,7 +7254,7 @@ DESCRIPTION
|
|
|
7251
7254
|
Shows the list of clusters.
|
|
7252
7255
|
```
|
|
7253
7256
|
|
|
7254
|
-
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7257
|
+
_See code: [src/commands/config/settings/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/config/settings/get.ts)_
|
|
7255
7258
|
|
|
7256
7259
|
## `codiac config view [SETTING]`
|
|
7257
7260
|
|
|
@@ -7316,7 +7319,7 @@ EXAMPLES
|
|
|
7316
7319
|
$ codiac config view -e myEnterprise -a myApi -c dev --to-script
|
|
7317
7320
|
```
|
|
7318
7321
|
|
|
7319
|
-
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7322
|
+
_See code: [src/commands/config/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/config/view.ts)_
|
|
7320
7323
|
|
|
7321
7324
|
## `codiac csp creds list`
|
|
7322
7325
|
|
|
@@ -7364,7 +7367,7 @@ EXAMPLES
|
|
|
7364
7367
|
$ codiac csp creds list
|
|
7365
7368
|
```
|
|
7366
7369
|
|
|
7367
|
-
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7370
|
+
_See code: [src/commands/csp/creds/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/csp/creds/list.ts)_
|
|
7368
7371
|
|
|
7369
7372
|
## `codiac csp login [PROVIDER]`
|
|
7370
7373
|
|
|
@@ -7442,7 +7445,7 @@ EXAMPLES
|
|
|
7442
7445
|
cod csp login -u ASIAZ3XYZPDQ123 -p $(cat my-aws-secret-key.txt) --aws-session-token $(cat my-aws-sesh.txt) aws
|
|
7443
7446
|
```
|
|
7444
7447
|
|
|
7445
|
-
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7448
|
+
_See code: [src/commands/csp/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/csp/login.ts)_
|
|
7446
7449
|
|
|
7447
7450
|
## `codiac csp logout [PROVIDER]`
|
|
7448
7451
|
|
|
@@ -7489,7 +7492,7 @@ EXAMPLES
|
|
|
7489
7492
|
$ codiac csp logout azure --to-script
|
|
7490
7493
|
```
|
|
7491
7494
|
|
|
7492
|
-
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7495
|
+
_See code: [src/commands/csp/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/csp/logout.ts)_
|
|
7493
7496
|
|
|
7494
7497
|
## `codiac dep [NAME]`
|
|
7495
7498
|
|
|
@@ -7510,7 +7513,7 @@ DESCRIPTION
|
|
|
7510
7513
|
Installs a package into current project.
|
|
7511
7514
|
```
|
|
7512
7515
|
|
|
7513
|
-
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7516
|
+
_See code: [src/commands/dep.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep.ts)_
|
|
7514
7517
|
|
|
7515
7518
|
## `codiac dep create [URL]`
|
|
7516
7519
|
|
|
@@ -7534,7 +7537,7 @@ DESCRIPTION
|
|
|
7534
7537
|
package version is used.
|
|
7535
7538
|
```
|
|
7536
7539
|
|
|
7537
|
-
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7540
|
+
_See code: [src/commands/dep/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep/create.ts)_
|
|
7538
7541
|
|
|
7539
7542
|
## `codiac dep install`
|
|
7540
7543
|
|
|
@@ -7551,7 +7554,7 @@ DESCRIPTION
|
|
|
7551
7554
|
installs any missing dependency packages into the local project folder.
|
|
7552
7555
|
```
|
|
7553
7556
|
|
|
7554
|
-
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7557
|
+
_See code: [src/commands/dep/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep/install.ts)_
|
|
7555
7558
|
|
|
7556
7559
|
## `codiac dep list`
|
|
7557
7560
|
|
|
@@ -7568,7 +7571,7 @@ DESCRIPTION
|
|
|
7568
7571
|
Shows the dependencies for the project.
|
|
7569
7572
|
```
|
|
7570
7573
|
|
|
7571
|
-
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7574
|
+
_See code: [src/commands/dep/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep/list.ts)_
|
|
7572
7575
|
|
|
7573
7576
|
## `codiac dep remove [NAME]`
|
|
7574
7577
|
|
|
@@ -7591,7 +7594,7 @@ DESCRIPTION
|
|
|
7591
7594
|
Removes a dependency from the project.
|
|
7592
7595
|
```
|
|
7593
7596
|
|
|
7594
|
-
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7597
|
+
_See code: [src/commands/dep/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep/remove.ts)_
|
|
7595
7598
|
|
|
7596
7599
|
## `codiac dep source [NAME]`
|
|
7597
7600
|
|
|
@@ -7617,7 +7620,7 @@ ALIASES
|
|
|
7617
7620
|
$ codiac dep src
|
|
7618
7621
|
```
|
|
7619
7622
|
|
|
7620
|
-
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7623
|
+
_See code: [src/commands/dep/source.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep/source.ts)_
|
|
7621
7624
|
|
|
7622
7625
|
## `codiac dep src [NAME]`
|
|
7623
7626
|
|
|
@@ -7661,7 +7664,7 @@ DESCRIPTION
|
|
|
7661
7664
|
Publishes the dependency in its current state and upgrades to it in the main project.
|
|
7662
7665
|
```
|
|
7663
7666
|
|
|
7664
|
-
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7667
|
+
_See code: [src/commands/dep/syncup.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep/syncup.ts)_
|
|
7665
7668
|
|
|
7666
7669
|
## `codiac dep unsource [NAME]`
|
|
7667
7670
|
|
|
@@ -7689,7 +7692,7 @@ ALIASES
|
|
|
7689
7692
|
$ codiac dep unsrc
|
|
7690
7693
|
```
|
|
7691
7694
|
|
|
7692
|
-
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7695
|
+
_See code: [src/commands/dep/unsource.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep/unsource.ts)_
|
|
7693
7696
|
|
|
7694
7697
|
## `codiac dep unsrc [NAME]`
|
|
7695
7698
|
|
|
@@ -7736,7 +7739,7 @@ DESCRIPTION
|
|
|
7736
7739
|
describe the command here
|
|
7737
7740
|
```
|
|
7738
7741
|
|
|
7739
|
-
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7742
|
+
_See code: [src/commands/dep/upgrade.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/dep/upgrade.ts)_
|
|
7740
7743
|
|
|
7741
7744
|
## `codiac deploy`
|
|
7742
7745
|
|
|
@@ -7789,7 +7792,7 @@ EXAMPLES
|
|
|
7789
7792
|
$ codiac deploy -e myEnterprise -a myApi -u 1.2.3 -c dev --to-script
|
|
7790
7793
|
```
|
|
7791
7794
|
|
|
7792
|
-
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7795
|
+
_See code: [src/commands/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/deploy.ts)_
|
|
7793
7796
|
|
|
7794
7797
|
## `codiac domain map [DOMAIN]`
|
|
7795
7798
|
|
|
@@ -7945,7 +7948,7 @@ EXAMPLES
|
|
|
7945
7948
|
cod enterprise create my-enterprise-code --silent
|
|
7946
7949
|
```
|
|
7947
7950
|
|
|
7948
|
-
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
7951
|
+
_See code: [src/commands/enterprise/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/enterprise/create.ts)_
|
|
7949
7952
|
|
|
7950
7953
|
## `codiac enterprise list`
|
|
7951
7954
|
|
|
@@ -8000,7 +8003,7 @@ EXAMPLES
|
|
|
8000
8003
|
$ codiac enterprise list --to-script
|
|
8001
8004
|
```
|
|
8002
8005
|
|
|
8003
|
-
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8006
|
+
_See code: [src/commands/enterprise/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/enterprise/list.ts)_
|
|
8004
8007
|
|
|
8005
8008
|
## `codiac env add [SETTING]`
|
|
8006
8009
|
|
|
@@ -8050,7 +8053,7 @@ EXAMPLES
|
|
|
8050
8053
|
$ codiac env add -s MY_VAR -v myValue -n myEnterprise --to-script
|
|
8051
8054
|
```
|
|
8052
8055
|
|
|
8053
|
-
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8056
|
+
_See code: [src/commands/env/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/env/add.ts)_
|
|
8054
8057
|
|
|
8055
8058
|
## `codiac enviro cluster attach`
|
|
8056
8059
|
|
|
@@ -8353,7 +8356,7 @@ ALIASES
|
|
|
8353
8356
|
$ codiac infrx enviro cluster attach
|
|
8354
8357
|
```
|
|
8355
8358
|
|
|
8356
|
-
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8359
|
+
_See code: [src/commands/environment/cluster/attach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/environment/cluster/attach.ts)_
|
|
8357
8360
|
|
|
8358
8361
|
## `codiac environment cluster detach`
|
|
8359
8362
|
|
|
@@ -8399,7 +8402,7 @@ ALIASES
|
|
|
8399
8402
|
$ codiac infrx enviro cluster detach
|
|
8400
8403
|
```
|
|
8401
8404
|
|
|
8402
|
-
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8405
|
+
_See code: [src/commands/environment/cluster/detach.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/environment/cluster/detach.ts)_
|
|
8403
8406
|
|
|
8404
8407
|
## `codiac environment create [NAME]`
|
|
8405
8408
|
|
|
@@ -8462,7 +8465,7 @@ EXAMPLES
|
|
|
8462
8465
|
cod environment create dev --enterprise main --cluster my-cluster-1 --cluster my-cluster-2 --silent
|
|
8463
8466
|
```
|
|
8464
8467
|
|
|
8465
|
-
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8468
|
+
_See code: [src/commands/environment/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/environment/create.ts)_
|
|
8466
8469
|
|
|
8467
8470
|
## `codiac environment delete [NAME]`
|
|
8468
8471
|
|
|
@@ -8523,7 +8526,7 @@ EXAMPLES
|
|
|
8523
8526
|
$ codiac environment delete dev --enterprise main --to-script
|
|
8524
8527
|
```
|
|
8525
8528
|
|
|
8526
|
-
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8529
|
+
_See code: [src/commands/environment/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/environment/delete.ts)_
|
|
8527
8530
|
|
|
8528
8531
|
## `codiac environment list`
|
|
8529
8532
|
|
|
@@ -8574,7 +8577,7 @@ EXAMPLES
|
|
|
8574
8577
|
$ codiac environment list -e myEnterprise --silent
|
|
8575
8578
|
```
|
|
8576
8579
|
|
|
8577
|
-
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8580
|
+
_See code: [src/commands/environment/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/environment/list.ts)_
|
|
8578
8581
|
|
|
8579
8582
|
## `codiac fileshare capture`
|
|
8580
8583
|
|
|
@@ -8658,7 +8661,7 @@ ALIASES
|
|
|
8658
8661
|
$ codiac fileshare capture
|
|
8659
8662
|
```
|
|
8660
8663
|
|
|
8661
|
-
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8664
|
+
_See code: [src/commands/filestore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/filestore/capture.ts)_
|
|
8662
8665
|
|
|
8663
8666
|
## `codiac filestore forget`
|
|
8664
8667
|
|
|
@@ -8705,7 +8708,7 @@ EXAMPLES
|
|
|
8705
8708
|
$ codiac filestore forget
|
|
8706
8709
|
```
|
|
8707
8710
|
|
|
8708
|
-
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8711
|
+
_See code: [src/commands/filestore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/filestore/forget.ts)_
|
|
8709
8712
|
|
|
8710
8713
|
## `codiac filestore list`
|
|
8711
8714
|
|
|
@@ -8751,7 +8754,7 @@ EXAMPLES
|
|
|
8751
8754
|
$ codiac filestore list
|
|
8752
8755
|
```
|
|
8753
8756
|
|
|
8754
|
-
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8757
|
+
_See code: [src/commands/filestore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/filestore/list.ts)_
|
|
8755
8758
|
|
|
8756
8759
|
## `codiac help [COMMANDS]`
|
|
8757
8760
|
|
|
@@ -8837,7 +8840,7 @@ EXAMPLES
|
|
|
8837
8840
|
$ codiac host delete
|
|
8838
8841
|
```
|
|
8839
8842
|
|
|
8840
|
-
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8843
|
+
_See code: [src/commands/host/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/host/delete.ts)_
|
|
8841
8844
|
|
|
8842
8845
|
## `codiac host list [DOMAIN]`
|
|
8843
8846
|
|
|
@@ -8881,7 +8884,7 @@ EXAMPLES
|
|
|
8881
8884
|
$ codiac host list
|
|
8882
8885
|
```
|
|
8883
8886
|
|
|
8884
|
-
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8887
|
+
_See code: [src/commands/host/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/host/list.ts)_
|
|
8885
8888
|
|
|
8886
8889
|
## `codiac host map [DOMAIN]`
|
|
8887
8890
|
|
|
@@ -8935,7 +8938,7 @@ EXAMPLES
|
|
|
8935
8938
|
$ codiac host map mywebsite.com -e main -v primero-dev -n svc_dot_cab_dot_domain --silent
|
|
8936
8939
|
```
|
|
8937
8940
|
|
|
8938
|
-
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8941
|
+
_See code: [src/commands/host/map.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/host/map.ts)_
|
|
8939
8942
|
|
|
8940
8943
|
## `codiac host view [DOMAIN]`
|
|
8941
8944
|
|
|
@@ -8980,7 +8983,7 @@ EXAMPLES
|
|
|
8980
8983
|
$ codiac host view
|
|
8981
8984
|
```
|
|
8982
8985
|
|
|
8983
|
-
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
8986
|
+
_See code: [src/commands/host/view.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/host/view.ts)_
|
|
8984
8987
|
|
|
8985
8988
|
## `codiac identify [TOKENNAME]`
|
|
8986
8989
|
|
|
@@ -9052,7 +9055,7 @@ ALIASES
|
|
|
9052
9055
|
$ codiac token
|
|
9053
9056
|
```
|
|
9054
9057
|
|
|
9055
|
-
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9058
|
+
_See code: [src/commands/identity.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/identity.ts)_
|
|
9056
9059
|
|
|
9057
9060
|
## `codiac identity delete [NAME]`
|
|
9058
9061
|
|
|
@@ -9077,7 +9080,7 @@ ALIASES
|
|
|
9077
9080
|
$ codiac token remove
|
|
9078
9081
|
```
|
|
9079
9082
|
|
|
9080
|
-
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9083
|
+
_See code: [src/commands/identity/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/identity/delete.ts)_
|
|
9081
9084
|
|
|
9082
9085
|
## `codiac identity list`
|
|
9083
9086
|
|
|
@@ -9099,7 +9102,7 @@ ALIASES
|
|
|
9099
9102
|
$ codiac token list
|
|
9100
9103
|
```
|
|
9101
9104
|
|
|
9102
|
-
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9105
|
+
_See code: [src/commands/identity/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/identity/list.ts)_
|
|
9103
9106
|
|
|
9104
9107
|
## `codiac identity remove [NAME]`
|
|
9105
9108
|
|
|
@@ -9422,7 +9425,7 @@ DESCRIPTION
|
|
|
9422
9425
|
Saves a reference to an existing container registry.
|
|
9423
9426
|
```
|
|
9424
9427
|
|
|
9425
|
-
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9428
|
+
_See code: [src/commands/imageRegistry/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/imageRegistry/capture.ts)_
|
|
9426
9429
|
|
|
9427
9430
|
## `codiac imageRegistry forget`
|
|
9428
9431
|
|
|
@@ -9443,7 +9446,7 @@ DESCRIPTION
|
|
|
9443
9446
|
Removes the reference to the given container registry for the tenant. Does NOT delete the registry itself.
|
|
9444
9447
|
```
|
|
9445
9448
|
|
|
9446
|
-
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9449
|
+
_See code: [src/commands/imageRegistry/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/imageRegistry/forget.ts)_
|
|
9447
9450
|
|
|
9448
9451
|
## `codiac imageRegistry list`
|
|
9449
9452
|
|
|
@@ -9485,7 +9488,7 @@ EXAMPLES
|
|
|
9485
9488
|
$ codiac imageRegistry list -o yaml > registries.yaml
|
|
9486
9489
|
```
|
|
9487
9490
|
|
|
9488
|
-
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9491
|
+
_See code: [src/commands/imageRegistry/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/imageRegistry/list.ts)_
|
|
9489
9492
|
|
|
9490
9493
|
## `codiac imageRegistry pullSecret set`
|
|
9491
9494
|
|
|
@@ -9521,7 +9524,7 @@ ALIASES
|
|
|
9521
9524
|
$ codiac pullsecret
|
|
9522
9525
|
```
|
|
9523
9526
|
|
|
9524
|
-
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9527
|
+
_See code: [src/commands/imageRegistry/pullSecret/set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/imageRegistry/pullSecret/set.ts)_
|
|
9525
9528
|
|
|
9526
9529
|
## `codiac imageRegistry pullSecret unset`
|
|
9527
9530
|
|
|
@@ -9548,7 +9551,7 @@ ALIASES
|
|
|
9548
9551
|
$ codiac pullsecret unset
|
|
9549
9552
|
```
|
|
9550
9553
|
|
|
9551
|
-
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9554
|
+
_See code: [src/commands/imageRegistry/pullSecret/unset.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/imageRegistry/pullSecret/unset.ts)_
|
|
9552
9555
|
|
|
9553
9556
|
## `codiac images add [IMAGENAME]`
|
|
9554
9557
|
|
|
@@ -9609,7 +9612,7 @@ EXAMPLES
|
|
|
9609
9612
|
$ codiac images add your-company/your-image --to-script
|
|
9610
9613
|
```
|
|
9611
9614
|
|
|
9612
|
-
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9615
|
+
_See code: [src/commands/images/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/images/add.ts)_
|
|
9613
9616
|
|
|
9614
9617
|
## `codiac images list`
|
|
9615
9618
|
|
|
@@ -9632,7 +9635,7 @@ ALIASES
|
|
|
9632
9635
|
$ codiac img list
|
|
9633
9636
|
```
|
|
9634
9637
|
|
|
9635
|
-
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9638
|
+
_See code: [src/commands/images/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/images/list.ts)_
|
|
9636
9639
|
|
|
9637
9640
|
## `codiac images patch IMAGENAME`
|
|
9638
9641
|
|
|
@@ -9662,7 +9665,7 @@ ALIASES
|
|
|
9662
9665
|
$ codiac img patch
|
|
9663
9666
|
```
|
|
9664
9667
|
|
|
9665
|
-
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9668
|
+
_See code: [src/commands/images/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/images/patch.ts)_
|
|
9666
9669
|
|
|
9667
9670
|
## `codiac images remove IMAGENAME`
|
|
9668
9671
|
|
|
@@ -9688,7 +9691,7 @@ ALIASES
|
|
|
9688
9691
|
$ codiac img delete
|
|
9689
9692
|
```
|
|
9690
9693
|
|
|
9691
|
-
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9694
|
+
_See code: [src/commands/images/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/images/remove.ts)_
|
|
9692
9695
|
|
|
9693
9696
|
## `codiac images version NAME`
|
|
9694
9697
|
|
|
@@ -9714,7 +9717,7 @@ ALIASES
|
|
|
9714
9717
|
$ codiac img version get
|
|
9715
9718
|
```
|
|
9716
9719
|
|
|
9717
|
-
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9720
|
+
_See code: [src/commands/images/version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/images/version.ts)_
|
|
9718
9721
|
|
|
9719
9722
|
## `codiac images version bump NAME`
|
|
9720
9723
|
|
|
@@ -9747,7 +9750,7 @@ ALIASES
|
|
|
9747
9750
|
$ codiac img version bump
|
|
9748
9751
|
```
|
|
9749
9752
|
|
|
9750
|
-
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
9753
|
+
_See code: [src/commands/images/version/bump.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/images/version/bump.ts)_
|
|
9751
9754
|
|
|
9752
9755
|
## `codiac img [IMAGENAME]`
|
|
9753
9756
|
|
|
@@ -10063,7 +10066,7 @@ EXAMPLES
|
|
|
10063
10066
|
$ codiac import cluster --run-in-cluster --enterprise myco --environment dev --cluster mycluster --generate-cabinet --generate-secret-store --subscription-id 00000000-0000-0000-0000-000000000000
|
|
10064
10067
|
```
|
|
10065
10068
|
|
|
10066
|
-
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10069
|
+
_See code: [src/commands/import/cluster.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/import/cluster.ts)_
|
|
10067
10070
|
|
|
10068
10071
|
## `codiac infrx cab create [CABINET]`
|
|
10069
10072
|
|
|
@@ -10908,7 +10911,7 @@ DESCRIPTION
|
|
|
10908
10911
|
Declares the given folder as a project root
|
|
10909
10912
|
```
|
|
10910
10913
|
|
|
10911
|
-
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10914
|
+
_See code: [src/commands/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/init.ts)_
|
|
10912
10915
|
|
|
10913
10916
|
## `codiac kit create`
|
|
10914
10917
|
|
|
@@ -10951,7 +10954,7 @@ EXAMPLES
|
|
|
10951
10954
|
$ codiac kit create -e myEnterprise -a myApi --to-script
|
|
10952
10955
|
```
|
|
10953
10956
|
|
|
10954
|
-
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
10957
|
+
_See code: [src/commands/kit/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/kit/create.ts)_
|
|
10955
10958
|
|
|
10956
10959
|
## `codiac login`
|
|
10957
10960
|
|
|
@@ -11010,7 +11013,7 @@ EXAMPLES
|
|
|
11010
11013
|
$ codiac login -u joe.cool@fyaml.dev --password $PW --tokenOut
|
|
11011
11014
|
```
|
|
11012
11015
|
|
|
11013
|
-
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11016
|
+
_See code: [src/commands/login.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/login.ts)_
|
|
11014
11017
|
|
|
11015
11018
|
## `codiac logout`
|
|
11016
11019
|
|
|
@@ -11043,7 +11046,7 @@ EXAMPLES
|
|
|
11043
11046
|
$ codiac logout --to-script
|
|
11044
11047
|
```
|
|
11045
11048
|
|
|
11046
|
-
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11049
|
+
_See code: [src/commands/logout.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/logout.ts)_
|
|
11047
11050
|
|
|
11048
11051
|
## `codiac merge [BRANCH]`
|
|
11049
11052
|
|
|
@@ -11064,7 +11067,7 @@ DESCRIPTION
|
|
|
11064
11067
|
Merges the given branch into the current branch of the main project and on any sourced dependencies.
|
|
11065
11068
|
```
|
|
11066
11069
|
|
|
11067
|
-
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11070
|
+
_See code: [src/commands/merge.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/merge.ts)_
|
|
11068
11071
|
|
|
11069
11072
|
## `codiac noc cluster capture`
|
|
11070
11073
|
|
|
@@ -11116,7 +11119,7 @@ EXAMPLES
|
|
|
11116
11119
|
cod cluster capture -n my-cluster -p aws -s 123456789012 -l us-east-1
|
|
11117
11120
|
```
|
|
11118
11121
|
|
|
11119
|
-
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11122
|
+
_See code: [src/commands/noc/cluster/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/capture.ts)_
|
|
11120
11123
|
|
|
11121
11124
|
## `codiac noc cluster create [NAME]`
|
|
11122
11125
|
|
|
@@ -11206,7 +11209,7 @@ FLAG DESCRIPTIONS
|
|
|
11206
11209
|
initialization is always skipped in that mode.
|
|
11207
11210
|
```
|
|
11208
11211
|
|
|
11209
|
-
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11212
|
+
_See code: [src/commands/noc/cluster/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/create.ts)_
|
|
11210
11213
|
|
|
11211
11214
|
## `codiac noc cluster credentials-set [NAME]`
|
|
11212
11215
|
|
|
@@ -11261,7 +11264,7 @@ EXAMPLES
|
|
|
11261
11264
|
$ codiac noc cluster credentials-set my-cluster --file ~/.kube/my-cluster.yaml --silent
|
|
11262
11265
|
```
|
|
11263
11266
|
|
|
11264
|
-
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11267
|
+
_See code: [src/commands/noc/cluster/credentials-set.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/credentials-set.ts)_
|
|
11265
11268
|
|
|
11266
11269
|
## `codiac noc cluster define [NAME]`
|
|
11267
11270
|
|
|
@@ -11335,7 +11338,7 @@ EXAMPLES
|
|
|
11335
11338
|
$ codiac noc cluster define my-cluster --to-script
|
|
11336
11339
|
```
|
|
11337
11340
|
|
|
11338
|
-
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11341
|
+
_See code: [src/commands/noc/cluster/define.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/define.ts)_
|
|
11339
11342
|
|
|
11340
11343
|
## `codiac noc cluster deinit`
|
|
11341
11344
|
|
|
@@ -11375,7 +11378,7 @@ EXAMPLES
|
|
|
11375
11378
|
$ codiac noc cluster deinit -n my-cluster --to-script
|
|
11376
11379
|
```
|
|
11377
11380
|
|
|
11378
|
-
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11381
|
+
_See code: [src/commands/noc/cluster/deinit.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/deinit.ts)_
|
|
11379
11382
|
|
|
11380
11383
|
## `codiac noc cluster destroy [NAME]`
|
|
11381
11384
|
|
|
@@ -11409,7 +11412,7 @@ ALIASES
|
|
|
11409
11412
|
$ codiac cluster destroy
|
|
11410
11413
|
```
|
|
11411
11414
|
|
|
11412
|
-
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11415
|
+
_See code: [src/commands/noc/cluster/destroy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/destroy.ts)_
|
|
11413
11416
|
|
|
11414
11417
|
## `codiac noc cluster forget`
|
|
11415
11418
|
|
|
@@ -11460,7 +11463,7 @@ EXAMPLES
|
|
|
11460
11463
|
$ codiac noc cluster forget --running
|
|
11461
11464
|
```
|
|
11462
11465
|
|
|
11463
|
-
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11466
|
+
_See code: [src/commands/noc/cluster/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/forget.ts)_
|
|
11464
11467
|
|
|
11465
11468
|
## `codiac noc cluster grant`
|
|
11466
11469
|
|
|
@@ -11498,7 +11501,7 @@ EXAMPLES
|
|
|
11498
11501
|
$ codiac noc cluster grant -c my-cluster -u user@example.com --to-script
|
|
11499
11502
|
```
|
|
11500
11503
|
|
|
11501
|
-
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11504
|
+
_See code: [src/commands/noc/cluster/grant.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/grant.ts)_
|
|
11502
11505
|
|
|
11503
11506
|
## `codiac noc cluster init`
|
|
11504
11507
|
|
|
@@ -11544,7 +11547,7 @@ EXAMPLES
|
|
|
11544
11547
|
$ codiac noc cluster init -n my-cluster --to-script
|
|
11545
11548
|
```
|
|
11546
11549
|
|
|
11547
|
-
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11550
|
+
_See code: [src/commands/noc/cluster/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/init.ts)_
|
|
11548
11551
|
|
|
11549
11552
|
## `codiac noc cluster journal [CLUSTER]`
|
|
11550
11553
|
|
|
@@ -11593,7 +11596,7 @@ EXAMPLES
|
|
|
11593
11596
|
$ codiac noc cluster journal -o yaml --silent dev-west-aws-02 > myfiles/journal.yaml
|
|
11594
11597
|
```
|
|
11595
11598
|
|
|
11596
|
-
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11599
|
+
_See code: [src/commands/noc/cluster/journal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/journal.ts)_
|
|
11597
11600
|
|
|
11598
11601
|
## `codiac noc cluster list`
|
|
11599
11602
|
|
|
@@ -11654,7 +11657,7 @@ EXAMPLES
|
|
|
11654
11657
|
$ codiac noc cluster list -e myEnterprise --to-script
|
|
11655
11658
|
```
|
|
11656
11659
|
|
|
11657
|
-
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11660
|
+
_See code: [src/commands/noc/cluster/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/list.ts)_
|
|
11658
11661
|
|
|
11659
11662
|
## `codiac noc cluster restore [NAME]`
|
|
11660
11663
|
|
|
@@ -11714,7 +11717,7 @@ EXAMPLES
|
|
|
11714
11717
|
$ codiac noc cluster restore prod-cluster-1 --to-script
|
|
11715
11718
|
```
|
|
11716
11719
|
|
|
11717
|
-
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11720
|
+
_See code: [src/commands/noc/cluster/restore.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/noc/cluster/restore.ts)_
|
|
11718
11721
|
|
|
11719
11722
|
## `codiac pkg add [DEFINITIONFILE]`
|
|
11720
11723
|
|
|
@@ -11748,7 +11751,7 @@ DESCRIPTION
|
|
|
11748
11751
|
Configures a package to be built and published by the project.
|
|
11749
11752
|
```
|
|
11750
11753
|
|
|
11751
|
-
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11754
|
+
_See code: [src/commands/pkg/add.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pkg/add.ts)_
|
|
11752
11755
|
|
|
11753
11756
|
## `codiac pkg delete [PACKAGENAME]`
|
|
11754
11757
|
|
|
@@ -11786,7 +11789,7 @@ DESCRIPTION
|
|
|
11786
11789
|
Renders the list of packages that are configured as project exports.
|
|
11787
11790
|
```
|
|
11788
11791
|
|
|
11789
|
-
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11792
|
+
_See code: [src/commands/pkg/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pkg/list.ts)_
|
|
11790
11793
|
|
|
11791
11794
|
## `codiac pkg patch PACKAGENAME`
|
|
11792
11795
|
|
|
@@ -11812,7 +11815,7 @@ DESCRIPTION
|
|
|
11812
11815
|
registryUrl and/or environment.
|
|
11813
11816
|
```
|
|
11814
11817
|
|
|
11815
|
-
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11818
|
+
_See code: [src/commands/pkg/patch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pkg/patch.ts)_
|
|
11816
11819
|
|
|
11817
11820
|
## `codiac pkg remove [PACKAGENAME]`
|
|
11818
11821
|
|
|
@@ -11835,7 +11838,7 @@ ALIASES
|
|
|
11835
11838
|
$ codiac pkg delete
|
|
11836
11839
|
```
|
|
11837
11840
|
|
|
11838
|
-
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11841
|
+
_See code: [src/commands/pkg/remove.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pkg/remove.ts)_
|
|
11839
11842
|
|
|
11840
11843
|
## `codiac portal`
|
|
11841
11844
|
|
|
@@ -11868,7 +11871,7 @@ EXAMPLES
|
|
|
11868
11871
|
$ codiac portal --to-script
|
|
11869
11872
|
```
|
|
11870
11873
|
|
|
11871
|
-
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11874
|
+
_See code: [src/commands/portal.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/portal.ts)_
|
|
11872
11875
|
|
|
11873
11876
|
## `codiac probe create [CMD]`
|
|
11874
11877
|
|
|
@@ -11989,7 +11992,7 @@ DESCRIPTION
|
|
|
11989
11992
|
Publishes the exports (packages and images) declared in the ProjectConfig.
|
|
11990
11993
|
```
|
|
11991
11994
|
|
|
11992
|
-
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
11995
|
+
_See code: [src/commands/publish.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/publish.ts)_
|
|
11993
11996
|
|
|
11994
11997
|
## `codiac pull [NAME]`
|
|
11995
11998
|
|
|
@@ -12013,7 +12016,7 @@ DESCRIPTION
|
|
|
12013
12016
|
Pulls all commits from upstream to local.
|
|
12014
12017
|
```
|
|
12015
12018
|
|
|
12016
|
-
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12019
|
+
_See code: [src/commands/pull.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pull.ts)_
|
|
12017
12020
|
|
|
12018
12021
|
## `codiac pullsecret`
|
|
12019
12022
|
|
|
@@ -12096,7 +12099,7 @@ DESCRIPTION
|
|
|
12096
12099
|
Pushes all local commits upstream.
|
|
12097
12100
|
```
|
|
12098
12101
|
|
|
12099
|
-
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12102
|
+
_See code: [src/commands/push.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/push.ts)_
|
|
12100
12103
|
|
|
12101
12104
|
## `codiac pvc create`
|
|
12102
12105
|
|
|
@@ -12180,7 +12183,7 @@ EXAMPLES
|
|
|
12180
12183
|
$ codiac pvc create -e myEnt --name shared-files --type AzureFileStorage --echo
|
|
12181
12184
|
```
|
|
12182
12185
|
|
|
12183
|
-
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12186
|
+
_See code: [src/commands/pvc/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pvc/create.ts)_
|
|
12184
12187
|
|
|
12185
12188
|
## `codiac pvc delete`
|
|
12186
12189
|
|
|
@@ -12227,7 +12230,7 @@ EXAMPLES
|
|
|
12227
12230
|
$ codiac pvc delete --id <fileStoreDefId> --silent
|
|
12228
12231
|
```
|
|
12229
12232
|
|
|
12230
|
-
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12233
|
+
_See code: [src/commands/pvc/delete.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pvc/delete.ts)_
|
|
12231
12234
|
|
|
12232
12235
|
## `codiac pvc get`
|
|
12233
12236
|
|
|
@@ -12268,7 +12271,7 @@ EXAMPLES
|
|
|
12268
12271
|
$ codiac pvc get --name app-documents-share --silent -o json
|
|
12269
12272
|
```
|
|
12270
12273
|
|
|
12271
|
-
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12274
|
+
_See code: [src/commands/pvc/get.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pvc/get.ts)_
|
|
12272
12275
|
|
|
12273
12276
|
## `codiac pvc list`
|
|
12274
12277
|
|
|
@@ -12311,7 +12314,7 @@ EXAMPLES
|
|
|
12311
12314
|
$ codiac pvc list -o yaml
|
|
12312
12315
|
```
|
|
12313
12316
|
|
|
12314
|
-
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12317
|
+
_See code: [src/commands/pvc/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/pvc/list.ts)_
|
|
12315
12318
|
|
|
12316
12319
|
## `codiac relay-version`
|
|
12317
12320
|
|
|
@@ -12328,7 +12331,7 @@ EXAMPLES
|
|
|
12328
12331
|
$ codiac relay-version
|
|
12329
12332
|
```
|
|
12330
12333
|
|
|
12331
|
-
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12334
|
+
_See code: [src/commands/relay-version.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/relay-version.ts)_
|
|
12332
12335
|
|
|
12333
12336
|
## `codiac run`
|
|
12334
12337
|
|
|
@@ -12370,7 +12373,7 @@ DESCRIPTION
|
|
|
12370
12373
|
Runs the latest build of the api container locally.
|
|
12371
12374
|
```
|
|
12372
12375
|
|
|
12373
|
-
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12376
|
+
_See code: [src/commands/run.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/run.ts)_
|
|
12374
12377
|
|
|
12375
12378
|
## `codiac secretStore`
|
|
12376
12379
|
|
|
@@ -12488,7 +12491,7 @@ EXAMPLES
|
|
|
12488
12491
|
$ codiac secretStore capture --echo
|
|
12489
12492
|
```
|
|
12490
12493
|
|
|
12491
|
-
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12494
|
+
_See code: [src/commands/secretStore/capture.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/secretStore/capture.ts)_
|
|
12492
12495
|
|
|
12493
12496
|
## `codiac secretStore forget`
|
|
12494
12497
|
|
|
@@ -12509,7 +12512,7 @@ DESCRIPTION
|
|
|
12509
12512
|
Removes the reference to the given secret store for the tenant. Does NOT delete the store itself.
|
|
12510
12513
|
```
|
|
12511
12514
|
|
|
12512
|
-
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12515
|
+
_See code: [src/commands/secretStore/forget.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/secretStore/forget.ts)_
|
|
12513
12516
|
|
|
12514
12517
|
## `codiac secretStore list`
|
|
12515
12518
|
|
|
@@ -12554,7 +12557,7 @@ EXAMPLES
|
|
|
12554
12557
|
$ codiac secretStore list
|
|
12555
12558
|
```
|
|
12556
12559
|
|
|
12557
|
-
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12560
|
+
_See code: [src/commands/secretStore/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/secretStore/list.ts)_
|
|
12558
12561
|
|
|
12559
12562
|
## `codiac shell init`
|
|
12560
12563
|
|
|
@@ -12592,7 +12595,104 @@ EXAMPLES
|
|
|
12592
12595
|
Invoke-Expression (codiac shell init --shell powershell)
|
|
12593
12596
|
```
|
|
12594
12597
|
|
|
12595
|
-
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12598
|
+
_See code: [src/commands/shell/init.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/shell/init.ts)_
|
|
12599
|
+
|
|
12600
|
+
## `codiac skill install`
|
|
12601
|
+
|
|
12602
|
+
Copies the bundled Codiac agent skill into a skills directory so a skill-aware harness (e.g. Claude Code) discovers it. Defaults to ~/.claude/skills/codiac. For runtimes that aren't skill-aware, use `cod skill show` to inject the content instead.
|
|
12603
|
+
|
|
12604
|
+
```
|
|
12605
|
+
USAGE
|
|
12606
|
+
$ codiac skill install [-h] [-d <value>] [-f]
|
|
12607
|
+
|
|
12608
|
+
FLAGS
|
|
12609
|
+
-d, --dir=<value> Parent skills directory to install into (the skill is placed in <dir>/codiac). Defaults to
|
|
12610
|
+
~/.claude/skills.
|
|
12611
|
+
-f, --force Overwrite an existing codiac skill at the destination.
|
|
12612
|
+
-h, --help Show CLI help.
|
|
12613
|
+
|
|
12614
|
+
DESCRIPTION
|
|
12615
|
+
Copies the bundled Codiac agent skill into a skills directory so a skill-aware harness (e.g. Claude Code) discovers
|
|
12616
|
+
it. Defaults to ~/.claude/skills/codiac. For runtimes that aren't skill-aware, use `cod skill show` to inject the
|
|
12617
|
+
content instead.
|
|
12618
|
+
|
|
12619
|
+
EXAMPLES
|
|
12620
|
+
Install into the default Claude Code skills dir (~/.claude/skills/codiac).
|
|
12621
|
+
|
|
12622
|
+
$ codiac skill install
|
|
12623
|
+
|
|
12624
|
+
Install into a specific skills directory.
|
|
12625
|
+
|
|
12626
|
+
$ codiac skill install --dir /workspace/.claude/skills
|
|
12627
|
+
|
|
12628
|
+
Overwrite an existing install.
|
|
12629
|
+
|
|
12630
|
+
$ codiac skill install --force
|
|
12631
|
+
```
|
|
12632
|
+
|
|
12633
|
+
_See code: [src/commands/skill/install.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/skill/install.ts)_
|
|
12634
|
+
|
|
12635
|
+
## `codiac skill path`
|
|
12636
|
+
|
|
12637
|
+
Prints the absolute path of the bundled Codiac agent skill directory (SKILL.md + references/) that ships with this CLI. Useful for scripting or pointing a skill-aware harness at it.
|
|
12638
|
+
|
|
12639
|
+
```
|
|
12640
|
+
USAGE
|
|
12641
|
+
$ codiac skill path [-h]
|
|
12642
|
+
|
|
12643
|
+
FLAGS
|
|
12644
|
+
-h, --help Show CLI help.
|
|
12645
|
+
|
|
12646
|
+
DESCRIPTION
|
|
12647
|
+
Prints the absolute path of the bundled Codiac agent skill directory (SKILL.md + references/) that ships with this
|
|
12648
|
+
CLI. Useful for scripting or pointing a skill-aware harness at it.
|
|
12649
|
+
|
|
12650
|
+
EXAMPLES
|
|
12651
|
+
Print the skill directory path.
|
|
12652
|
+
|
|
12653
|
+
$ codiac skill path
|
|
12654
|
+
```
|
|
12655
|
+
|
|
12656
|
+
_See code: [src/commands/skill/path.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/skill/path.ts)_
|
|
12657
|
+
|
|
12658
|
+
## `codiac skill show`
|
|
12659
|
+
|
|
12660
|
+
Prints the Codiac agent skill — the canonical guidance for driving `cod` correctly (concepts + the read-`--help`-first discipline + the flag-collision map). AI agents: read this before using the CLI; a system prompt can inject it via `$(cod skill show)`.
|
|
12661
|
+
|
|
12662
|
+
```
|
|
12663
|
+
USAGE
|
|
12664
|
+
$ codiac skill show [-h] [-f <value>] [-l]
|
|
12665
|
+
|
|
12666
|
+
FLAGS
|
|
12667
|
+
-f, --file=<value> Print a single skill file by its path relative to the skill root (e.g. SKILL.md,
|
|
12668
|
+
references/concepts.md).
|
|
12669
|
+
-h, --help Show CLI help.
|
|
12670
|
+
-l, --list List the files that make up the skill instead of printing their contents.
|
|
12671
|
+
|
|
12672
|
+
DESCRIPTION
|
|
12673
|
+
Prints the Codiac agent skill — the canonical guidance for driving `cod` correctly (concepts + the read-`--help`-first
|
|
12674
|
+
discipline + the flag-collision map). AI agents: read this before using the CLI; a system prompt can inject it via
|
|
12675
|
+
`$(cod skill show)`.
|
|
12676
|
+
|
|
12677
|
+
EXAMPLES
|
|
12678
|
+
Print the whole skill (SKILL.md + references) as one document.
|
|
12679
|
+
|
|
12680
|
+
$ codiac skill show
|
|
12681
|
+
|
|
12682
|
+
Inject the skill into an agent system prompt.
|
|
12683
|
+
|
|
12684
|
+
SYSTEM="$(codiac skill show)"
|
|
12685
|
+
|
|
12686
|
+
Print just one file.
|
|
12687
|
+
|
|
12688
|
+
$ codiac skill show --file references/cli-reference.md
|
|
12689
|
+
|
|
12690
|
+
List the files that make up the skill.
|
|
12691
|
+
|
|
12692
|
+
$ codiac skill show --list
|
|
12693
|
+
```
|
|
12694
|
+
|
|
12695
|
+
_See code: [src/commands/skill/show.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/skill/show.ts)_
|
|
12596
12696
|
|
|
12597
12697
|
## `codiac snapshot deploy`
|
|
12598
12698
|
|
|
@@ -12620,7 +12720,7 @@ DESCRIPTION
|
|
|
12620
12720
|
Deploys all assets in a snapshot to a target cabinet.
|
|
12621
12721
|
```
|
|
12622
12722
|
|
|
12623
|
-
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12723
|
+
_See code: [src/commands/snapshot/deploy.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/snapshot/deploy.ts)_
|
|
12624
12724
|
|
|
12625
12725
|
## `codiac snapshot list`
|
|
12626
12726
|
|
|
@@ -12669,7 +12769,7 @@ EXAMPLES
|
|
|
12669
12769
|
$ codiac snapshot list -e myEnterprise --silent
|
|
12670
12770
|
```
|
|
12671
12771
|
|
|
12672
|
-
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12772
|
+
_See code: [src/commands/snapshot/list.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/snapshot/list.ts)_
|
|
12673
12773
|
|
|
12674
12774
|
## `codiac snapshot tag`
|
|
12675
12775
|
|
|
@@ -12712,7 +12812,7 @@ EXAMPLES
|
|
|
12712
12812
|
$ codiac snapshot tag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12713
12813
|
```
|
|
12714
12814
|
|
|
12715
|
-
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12815
|
+
_See code: [src/commands/snapshot/tag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/snapshot/tag.ts)_
|
|
12716
12816
|
|
|
12717
12817
|
## `codiac snapshot untag`
|
|
12718
12818
|
|
|
@@ -12755,7 +12855,7 @@ EXAMPLES
|
|
|
12755
12855
|
$ codiac snapshot untag -e myEnterprise -v 5CJRH7XB -t production --to-script
|
|
12756
12856
|
```
|
|
12757
12857
|
|
|
12758
|
-
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12858
|
+
_See code: [src/commands/snapshot/untag.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/snapshot/untag.ts)_
|
|
12759
12859
|
|
|
12760
12860
|
## `codiac stage [FILES]`
|
|
12761
12861
|
|
|
@@ -12777,7 +12877,7 @@ DESCRIPTION
|
|
|
12777
12877
|
Flags files to be included in the next commit.
|
|
12778
12878
|
```
|
|
12779
12879
|
|
|
12780
|
-
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12880
|
+
_See code: [src/commands/stage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/stage.ts)_
|
|
12781
12881
|
|
|
12782
12882
|
## `codiac stash [FILE]`
|
|
12783
12883
|
|
|
@@ -12799,7 +12899,7 @@ DESCRIPTION
|
|
|
12799
12899
|
describe the command here
|
|
12800
12900
|
```
|
|
12801
12901
|
|
|
12802
|
-
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12902
|
+
_See code: [src/commands/stash.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/stash.ts)_
|
|
12803
12903
|
|
|
12804
12904
|
## `codiac status`
|
|
12805
12905
|
|
|
@@ -12818,7 +12918,7 @@ DESCRIPTION
|
|
|
12818
12918
|
Shows the current uncommitted changes in the current branch.
|
|
12819
12919
|
```
|
|
12820
12920
|
|
|
12821
|
-
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12921
|
+
_See code: [src/commands/status.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/status.ts)_
|
|
12822
12922
|
|
|
12823
12923
|
## `codiac stop`
|
|
12824
12924
|
|
|
@@ -12836,7 +12936,7 @@ DESCRIPTION
|
|
|
12836
12936
|
Stops the running container for this project
|
|
12837
12937
|
```
|
|
12838
12938
|
|
|
12839
|
-
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12939
|
+
_See code: [src/commands/stop.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/stop.ts)_
|
|
12840
12940
|
|
|
12841
12941
|
## `codiac switch [NAME]`
|
|
12842
12942
|
|
|
@@ -12856,7 +12956,7 @@ DESCRIPTION
|
|
|
12856
12956
|
Changes branch on the main project and any sourced dependencies.
|
|
12857
12957
|
```
|
|
12858
12958
|
|
|
12859
|
-
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12959
|
+
_See code: [src/commands/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/switch.ts)_
|
|
12860
12960
|
|
|
12861
12961
|
## `codiac sync [NAME]`
|
|
12862
12962
|
|
|
@@ -12881,7 +12981,7 @@ DESCRIPTION
|
|
|
12881
12981
|
Merges the given branch into the current branch.
|
|
12882
12982
|
```
|
|
12883
12983
|
|
|
12884
|
-
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
12984
|
+
_See code: [src/commands/sync.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/sync.ts)_
|
|
12885
12985
|
|
|
12886
12986
|
## `codiac tenant create [NAME]`
|
|
12887
12987
|
|
|
@@ -12924,7 +13024,7 @@ EXAMPLES
|
|
|
12924
13024
|
$ codiac tenant create -n 'Acme Corp' -c acme --to-script
|
|
12925
13025
|
```
|
|
12926
13026
|
|
|
12927
|
-
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13027
|
+
_See code: [src/commands/tenant/create.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/tenant/create.ts)_
|
|
12928
13028
|
|
|
12929
13029
|
## `codiac tenant switch [CODE]`
|
|
12930
13030
|
|
|
@@ -12964,7 +13064,7 @@ EXAMPLES
|
|
|
12964
13064
|
$ codiac tenant switch my-tenant-code --to-script
|
|
12965
13065
|
```
|
|
12966
13066
|
|
|
12967
|
-
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13067
|
+
_See code: [src/commands/tenant/switch.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/tenant/switch.ts)_
|
|
12968
13068
|
|
|
12969
13069
|
## `codiac token [TOKENNAME]`
|
|
12970
13070
|
|
|
@@ -13086,7 +13186,7 @@ DESCRIPTION
|
|
|
13086
13186
|
Flags files to be included in the next commit.
|
|
13087
13187
|
```
|
|
13088
13188
|
|
|
13089
|
-
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13189
|
+
_See code: [src/commands/unstage.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/unstage.ts)_
|
|
13090
13190
|
|
|
13091
13191
|
## `codiac update [CHANNEL]`
|
|
13092
13192
|
|
|
@@ -13273,7 +13373,7 @@ EXAMPLES
|
|
|
13273
13373
|
$ codiac whereami --to-script
|
|
13274
13374
|
```
|
|
13275
13375
|
|
|
13276
|
-
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13376
|
+
_See code: [src/commands/whereami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/whereami.ts)_
|
|
13277
13377
|
|
|
13278
13378
|
## `codiac whoami`
|
|
13279
13379
|
|
|
@@ -13315,5 +13415,5 @@ EXAMPLES
|
|
|
13315
13415
|
$ codiac whoami --to-script
|
|
13316
13416
|
```
|
|
13317
13417
|
|
|
13318
|
-
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.
|
|
13418
|
+
_See code: [src/commands/whoami.ts](https://github.com/codiac/codiac-cli/blob/v1.3.246/src/commands/whoami.ts)_
|
|
13319
13419
|
<!-- commandsstop -->
|