-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiscovery.yaml
More file actions
1678 lines (1650 loc) · 57.9 KB
/
discovery.yaml
File metadata and controls
1678 lines (1650 loc) · 57.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Skill discovery manifest
#
# Canonical source for first-turn routing. Each entry defines:
# skill: directory name under skills/
# priority: primary = wins ties — use for concept/foundational skills and
# narrow feature skills with unique triggers
# secondary = loses ties — use for language/feature-specific skills
# so a general question routes to the concept skill first
# use_when: single routing condition for the agent (one sentence)
# triggers: keyword/phrase list for cold-start routing
#
# Rules:
# - No two skills may share the same trigger phrase (validator enforces this).
# - Every skill in skills/ must have an entry here.
# - priority: primary wins over secondary when multiple skills match the same phrase.
# - Minimum 3 trigger phrases per skill.
#
# This file is the canonical source. Do NOT add triggers:, priority:, or
# use_when: to individual SKILL.md files — those fields are removed.
#
# Handoff edges live in routing.yaml. Run scripts/sync-handoffs.sh to keep
# SKILL.md handoff: blocks in sync with routing.yaml.
skills:
# ── Router (Codex / implicit invocation entry point) ─────────────
- skill: couchbase
priority: primary
use_when: the user asks any Couchbase question and no more specific skill has been loaded yet
triggers:
- "Couchbase"
- "Couchbase SDK"
- "Couchbase question"
- "help with Couchbase"
- "Couchbase help"
# ── Getting Started ───────────────────────────────────────────────
- skill: getting-started
priority: primary
use_when: a developer is new to Couchbase or asks how to get started
triggers:
- "new to Couchbase"
- "getting started Couchbase"
- "what is Couchbase"
- "Couchbase vs MongoDB"
- "Couchbase vs PostgreSQL"
- "how does Couchbase work"
- "Couchbase concepts"
- "bucket scope collection"
- "what is N1QL"
- "what is SQL++"
- "Couchbase overview"
- "first steps Couchbase"
- "learn Couchbase"
- "Couchbase introduction"
- skill: local-dev-setup
priority: primary
use_when: a developer wants to run Couchbase on their machine
triggers:
- "run Couchbase locally"
- "Couchbase Docker"
- "docker-compose Couchbase"
- "local Couchbase setup"
- "install Couchbase locally"
- "Couchbase dev environment"
- "init Couchbase cluster"
- "Couchbase container"
- "Couchbase on my laptop"
- "start Couchbase locally"
- skill: capella-quickstart
priority: primary
use_when: a developer is setting up Couchbase Capella for the first time
triggers:
- "Couchbase Capella"
- "Capella free tier"
- "Capella sign up"
- "cloud.couchbase.com"
- "Capella connection string"
- "allowlist IP Capella"
- "Capella database credentials"
- "Capella quickstart"
- "hosted Couchbase"
- "Couchbase cloud free"
- "try Couchbase cloud"
- skill: vscode-extension
priority: primary
use_when: the user wants to use the Couchbase VS Code extension to browse data or run queries
triggers:
- "VS Code Couchbase"
- "Couchbase extension"
- "Couchbase plugin"
- "vscode-couchbase"
- "install Couchbase VS Code"
- "Couchbase workbench VS Code"
- "Couchbase MCP VS Code"
- "Capella iQ VS Code"
- "Couchbase IDE"
- "browse Couchbase data"
- skill: sqlpp-language
priority: primary
use_when: a developer needs to write or understand SQL++ queries regardless of SDK language
triggers:
- "SQL++ syntax"
- "N1QL syntax"
- "MISSING vs NULL"
- "META().id"
- "UNNEST Couchbase"
- "ANY SATISFIES"
- "ARRAY construct"
- "JOIN Couchbase"
- "NEST Couchbase"
- "USE KEYS"
- "window function SQL++"
- "CTE SQL++"
- "WITH clause SQL++"
- "MERGE SQL++"
- "SQL++ tutorial"
- "how to query Couchbase"
- "write a Couchbase query"
- "query JSON Couchbase"
- skill: error-handling
priority: primary
use_when: a developer encounters SDK errors or needs to implement error handling
triggers:
- "Couchbase error"
- "TimeoutException Couchbase"
- "AmbiguousTimeoutException"
- "UnambiguousTimeoutException"
- "DocumentNotFoundException"
- "CasMismatchException"
- "DurabilityImpossibleException"
- "SDK error handling"
- "Couchbase exception"
- "sdk-doctor"
- "Couchbase debug logging"
- "connection error Couchbase"
- "Couchbase retry"
- "Couchbase SDK timeout"
- "handle Couchbase errors"
# ── Field-Level Encryption ────────────────────────────────────────
- skill: fle
priority: primary
use_when: the user wants to encrypt specific document fields client-side before storing in Couchbase
triggers:
- "field level encryption Couchbase"
- "FLE Couchbase"
- "CryptoManager Couchbase"
- "encrypt document field Couchbase"
- "client side encryption Couchbase"
- "encrypt PII Couchbase"
- "couchbase-encryption"
- "AeadAes256CbcHmacSha512"
- "KeyProvider Couchbase"
- "encrypt SSN Couchbase"
- "encrypt credit card Couchbase"
- skill: fle-python
priority: secondary
use_when: the user wants to use Field-Level Encryption with the Couchbase Python SDK
triggers:
- "FLE Python Couchbase"
- "field level encryption Python"
- "CryptoManager Python Couchbase"
- "cbencryption Python"
- "encrypt field Python Couchbase"
- skill: fle-java
priority: secondary
use_when: the user wants to use Field-Level Encryption with the Couchbase Java SDK
triggers:
- "FLE Java Couchbase"
- "field level encryption Java"
- "CryptoManager Java Couchbase"
- "@Encrypted Java Couchbase"
- "encrypt field Java Couchbase"
- skill: fle-go
priority: secondary
use_when: the user wants to use Field-Level Encryption with the Couchbase Go SDK
triggers:
- "FLE Go Couchbase"
- "field level encryption Go"
- "CryptoManager Go Couchbase"
- "gocbencryption"
- "encrypt field Go Couchbase"
- skill: fle-dotnet
priority: secondary
use_when: the user wants to use Field-Level Encryption with the Couchbase .NET SDK
triggers:
- "FLE .NET Couchbase"
- "FLE C# Couchbase"
- "field level encryption .NET"
- "CryptoManager .NET Couchbase"
- "EncryptedField .NET"
- "encrypt field .NET Couchbase"
- skill: fle-nodejs
priority: secondary
use_when: the user wants to use Field-Level Encryption with the Couchbase Node.js SDK
triggers:
- "FLE Node.js Couchbase"
- "field level encryption Node.js"
- "CryptoManager Node.js Couchbase"
- "couchbase-encryption npm"
- "encrypt field Node.js Couchbase"
- skill: fle-php
priority: secondary
use_when: the user wants to use Field-Level Encryption with the Couchbase PHP SDK
triggers:
- "FLE PHP Couchbase"
- "field level encryption PHP"
- "CryptoManager PHP Couchbase"
- "encrypt field PHP Couchbase"
- skill: fle-rust
priority: secondary
use_when: the user asks about Field-Level Encryption with the Couchbase Rust SDK
triggers:
- "FLE Rust Couchbase"
- "field level encryption Rust"
- "CryptoManager Rust Couchbase"
- "encrypt field Rust Couchbase"
- skill: fle-scala
priority: secondary
use_when: the user asks about Field-Level Encryption with the Couchbase Scala SDK
triggers:
- "FLE Scala Couchbase"
- "field level encryption Scala"
- "CryptoManager Scala Couchbase"
- "encrypt field Scala Couchbase"
- skill: fle-ruby
priority: secondary
use_when: the user asks about Field-Level Encryption with the Couchbase Ruby SDK
triggers:
- "FLE Ruby Couchbase"
- "field level encryption Ruby"
- "CryptoManager Ruby Couchbase"
- "encrypt field Ruby Couchbase"
# ── Testing Patterns ──────────────────────────────────────────────
- skill: testing-patterns
priority: primary
use_when: the user wants to understand Couchbase testing strategy, test data management, or isolation concepts without a specific language
triggers:
- "unit test Couchbase"
- "mock Couchbase collection"
- "mock Couchbase cluster"
- "integration test Couchbase"
- "testcontainers Couchbase"
- "test Couchbase application"
- "test isolation Couchbase"
- "test data Couchbase"
- "mock collection Couchbase"
- "Couchbase testing"
- "test scope collection"
- "flush bucket test"
- skill: testing-patterns-python
priority: secondary
use_when: the user wants to test Python code that uses Couchbase — unit tests with mocks, integration tests with testcontainers, or test data isolation
triggers:
- "pytest Couchbase"
- "unit test Couchbase Python"
- "mock Couchbase Python"
- "testcontainers Couchbase Python"
- "integration test Couchbase Python"
- "test isolation Couchbase Python"
- skill: testing-patterns-java
priority: secondary
use_when: the user wants to test Java code that uses Couchbase — unit tests with Mockito, integration tests with testcontainers, or test data isolation
triggers:
- "JUnit Couchbase"
- "unit test Couchbase Java"
- "mock Couchbase Java"
- "Mockito Couchbase"
- "testcontainers Couchbase Java"
- "integration test Couchbase Java"
- "test isolation Couchbase Java"
- skill: testing-patterns-go
priority: secondary
use_when: the user wants to test Go code that uses Couchbase — unit tests with interfaces, integration tests with testcontainers, or test data isolation
triggers:
- "unit test Couchbase Go"
- "mock Couchbase Go"
- "testcontainers Couchbase Go"
- "integration test Couchbase Go"
- "test isolation Couchbase Go"
- skill: testing-patterns-dotnet
priority: secondary
use_when: the user wants to test .NET/C# code that uses Couchbase — unit tests with Moq, integration tests with testcontainers, or test data isolation
triggers:
- "unit test Couchbase dotnet"
- "unit test Couchbase C#"
- "mock Couchbase dotnet"
- "Moq Couchbase"
- "testcontainers Couchbase dotnet"
- "integration test Couchbase dotnet"
- "test isolation Couchbase dotnet"
- skill: testing-patterns-nodejs
priority: secondary
use_when: the user wants to test Node.js code that uses Couchbase — unit tests with Jest, integration tests with testcontainers, or test data isolation
triggers:
- "Jest Couchbase"
- "unit test Couchbase Node"
- "mock Couchbase Node"
- "testcontainers Couchbase Node"
- "integration test Couchbase Node"
- "test isolation Couchbase Node"
- skill: testing-patterns-rust
priority: secondary
use_when: the user wants to test Rust code that uses Couchbase — unit tests with mockall, integration tests with testcontainers, or test data isolation
triggers:
- "unit test Couchbase Rust"
- "mock Couchbase Rust"
- "mockall Couchbase"
- "testcontainers Couchbase Rust"
- "integration test Couchbase Rust"
- "test isolation Couchbase Rust"
- skill: testing-patterns-scala
priority: secondary
use_when: the user wants to test Scala code that uses Couchbase — unit tests with ScalaMock, integration tests with testcontainers, or test data isolation
triggers:
- "unit test Couchbase Scala"
- "mock Couchbase Scala"
- "ScalaMock Couchbase"
- "testcontainers Couchbase Scala"
- "integration test Couchbase Scala"
- "test isolation Couchbase Scala"
- skill: testing-patterns-php
priority: secondary
use_when: the user wants to test PHP code that uses Couchbase — unit tests with PHPUnit, integration tests with testcontainers, or test data isolation
triggers:
- "unit test Couchbase PHP"
- "mock Couchbase PHP"
- "PHPUnit Couchbase"
- "testcontainers Couchbase PHP"
- "integration test Couchbase PHP"
- "test isolation Couchbase PHP"
- skill: testing-patterns-ruby
priority: secondary
use_when: the user wants to test Ruby code that uses Couchbase — unit tests with RSpec, integration tests with testcontainers, or test data isolation
triggers:
- "unit test Couchbase Ruby"
- "mock Couchbase Ruby"
- "RSpec Couchbase"
- "testcontainers Couchbase Ruby"
- "integration test Couchbase Ruby"
- "test isolation Couchbase Ruby"
- skill: caching-patterns
priority: primary
use_when: the user wants to use Couchbase as a cache, session store, or rate limiter
triggers:
- "Couchbase cache"
- "TTL Couchbase"
- "expiry Couchbase"
- "cache-aside Couchbase"
- "write-through Couchbase"
- "session storage Couchbase"
- "replace Redis Couchbase"
- "Couchbase vs Redis"
- "get_and_touch"
- "getAndTouch"
- "ephemeral bucket"
- "rate limiting Couchbase"
- "atomic counter Couchbase cache"
- "Couchbase as cache"
- "cache with Couchbase"
# ── Couchbase Capella ─────────────────────────────────────────────
- skill: capella
priority: primary
use_when: the user already has a Capella cluster and needs to connect an application, manage credentials, or provision infrastructure
triggers:
- "Capella"
- "couchbases://"
- "DBaaS"
- "Capella Operational"
- "managed Couchbase"
- "Terraform Capella"
- "Capella Terraform provider"
- "couchbasecloud/capella"
- "Capella IaC"
- "provision Capella"
- "Capella cluster connect"
- "Capella SDK connection"
- skill: app-services
priority: primary
use_when: the user is working with Capella App Services (managed Sync Gateway) — not self-hosted Sync Gateway
triggers:
- "Capella App Services"
- "App Services"
- "App Endpoint"
- "App Services sync"
- "Capella mobile sync"
- "App Services user"
- "App Services access control"
- "App Services Management API"
- "App Services Sync Function"
- "couchbases:// App Services"
- "App Services vs Sync Gateway"
- "managed Sync Gateway"
- "Capella mobile backend"
# ── Couchbase Server ──────────────────────────────────────────────
- skill: server-data-modeling
priority: primary
use_when: the user is designing a document schema or deciding how to structure data in Couchbase Server
triggers:
- "Couchbase data model"
- "Couchbase schema"
- "bucket design"
- "scope design"
- "collection design"
- "embed vs reference"
- "document structure"
- "Couchbase multi-tenancy"
- "Couchbase document pattern"
- "Couchbase schema design"
- "manual secondary index"
- "KV lookup"
- "lookup document"
- "index document Couchbase"
- "fast lookup Couchbase"
- "design Couchbase documents"
- "model data Couchbase"
- skill: server-query-optimizer
priority: primary
use_when: the user has a slow SQL++ query or needs index recommendations
triggers:
- "CREATE INDEX"
- "DROP INDEX"
- "BUILD INDEX"
- "ALTER INDEX"
- "deferred build"
- "index not online"
- "GSI"
- "primary scan"
- "covering index"
- "partial index"
- "array index"
- "INCLUDE MISSING"
- "index replica"
- "index partition"
- "slow query Couchbase"
- "query performance Couchbase"
- "optimize Couchbase query"
- "query taking too long"
- "index recommendation Couchbase"
- "Couchbase query slow"
- "speed up Couchbase query"
- "EXPLAIN Couchbase"
- "query plan Couchbase"
- "read query plan"
- "EXPLAIN output"
- "IndexScan cost"
- skill: eventing
priority: primary
use_when: the user wants to trigger server-side logic when documents change
triggers:
- "Couchbase Eventing"
- "Eventing Function"
- "OnUpdate"
- "OnDelete"
- "document trigger"
- "Couchbase event-driven"
- "Eventing timer"
- "Couchbase webhook"
- "Couchbase data enrichment"
- "Couchbase cascade delete"
- "Eventing Service"
- "couchbase.query Eventing"
- "couchbase.analyticsQuery"
- "inline N1QL Eventing"
- "react to document changes"
- "trigger on document update"
- skill: security
priority: primary
use_when: the user needs to configure RBAC users, roles, or TLS for a Couchbase cluster
triggers:
- "Couchbase RBAC"
- "Couchbase roles"
- "Couchbase user"
- "Couchbase permissions"
- "least privilege Couchbase"
- "Couchbase authentication"
- "Couchbase authorization"
- "data_reader"
- "data_writer"
- "query_select"
- "Couchbase TLS"
- "Couchbase certificate"
- "Couchbase access denied"
- "403 Couchbase"
- "401 Couchbase"
- "encryption at rest Couchbase"
- "Couchbase encrypt data"
- "Couchbase node encryption"
- "Couchbase secret management"
- "HIPAA Couchbase"
- "PCI Couchbase"
- "secure Couchbase"
- "Couchbase audit log"
- skill: xdcr
priority: primary
use_when: the user needs to replicate data between Couchbase clusters across datacenters
triggers:
- "XDCR"
- "cross-datacenter replication"
- "Couchbase replication"
- "multi-region Couchbase"
- "active-active Couchbase"
- "XDCR filter"
- "XDCR conflict"
- "replicate between clusters"
- "Couchbase geo-distribution"
- "replicate Couchbase data"
- "Couchbase geo replication"
- "sync two Couchbase clusters"
- "bidirectional replication Couchbase"
- skill: cluster-ops
priority: primary
use_when: the user needs to add/remove nodes, configure failover, or plan cluster topology
triggers:
- "Couchbase cluster"
- "Couchbase replicas"
- "Couchbase failover"
- "Couchbase rebalance"
- "add node Couchbase"
- "remove node Couchbase"
- "Couchbase server groups"
- "rack awareness Couchbase"
- "Couchbase MDS"
- "Multi-Dimensional Scaling"
- "Couchbase node"
- "Couchbase topology"
- "Couchbase HA"
- "Couchbase high availability"
- "Couchbase node down"
- "Couchbase cluster size"
- "scale Couchbase"
- "Couchbase node failure"
- skill: kafka
priority: primary
use_when: the user wants to stream Couchbase data to or from Apache Kafka
triggers:
- "Couchbase Kafka"
- "Kafka Connect Couchbase"
- "DCP Couchbase"
- "Couchbase streaming"
- "Kafka source connector Couchbase"
- "Kafka sink connector Couchbase"
- "stream Couchbase to Kafka"
- "Couchbase event stream"
- "Couchbase change data capture"
- "CDC Couchbase"
- skill: migration
priority: primary
use_when: the user is migrating data or application code from another database to Couchbase
triggers:
- "migrate to Couchbase"
- "import data"
- "cbimport"
- "cbexport"
- "from MongoDB"
- "from PostgreSQL"
- "from MySQL"
- "from DynamoDB"
- "schema migration"
- "bulk load"
- "data import"
- "move data to Couchbase"
- "Couchbase data migration"
- skill: backup
priority: primary
use_when: the user needs to back up, restore, or schedule backups of a Couchbase cluster
triggers:
- "cbbackupmgr"
- "backup Couchbase"
- "restore Couchbase"
- "Couchbase backup strategy"
- "backup archive"
- "backup repository"
- "incremental backup"
- "full backup Couchbase"
- "backup to S3"
- "cbbackup"
- "cbrestore"
- "how to backup Couchbase"
- "Couchbase data loss"
- "restore Couchbase data"
- "schedule Couchbase backup"
- skill: disaster-recovery
priority: primary
use_when: the user is planning or executing a disaster recovery strategy for Couchbase
triggers:
- "Couchbase disaster recovery"
- "RTO Couchbase"
- "RPO Couchbase"
- "Couchbase DR plan"
- "Couchbase failover plan"
- "active-passive Couchbase"
- "regional failover Couchbase"
- "Couchbase recovery plan"
- "Couchbase DR runbook"
- "Couchbase business continuity"
- "Couchbase DR testing"
- "recover Couchbase cluster"
- "Couchbase region down"
- skill: monitoring
priority: primary
use_when: the user needs to monitor cluster health, diagnose slow queries, or set up alerting
triggers:
- "Couchbase metrics"
- "Prometheus Couchbase"
- "cbstats"
- "cbcollect_info"
- "Couchbase Grafana"
- "cluster health Couchbase"
- "memory pressure Couchbase"
- "Couchbase slow query log"
- "Couchbase alert"
- "Couchbase dashboard"
- "system:completed_requests"
- "resident ratio"
- "ep_mem_high_wat"
- "Couchbase monitoring"
- "Couchbase health check"
- "cluster not responding"
- "Couchbase performance"
- "memory usage Couchbase"
- "Couchbase down"
- skill: columnar-analytics
priority: primary
use_when: the user is running OLAP or analytical queries on Couchbase Server 8.x, or mentions Server 8, Couchbase 8, or the columnar engine
triggers:
- "columnar analytics"
- "Couchbase columnar"
- "Server 8 analytics"
- "column store Couchbase"
- "OLAP Couchbase 8"
- "analytics service 8.x"
- "columnar SQL++"
- "Couchbase columnar endpoint"
- "Couchbase 8 OLAP"
- "columnar engine Couchbase"
- "Couchbase 8 analytics"
- "analytics Couchbase 8"
- "Server 8.x analytics"
- "native columnar"
- "direct collection analytics"
- "Capella Columnar"
- "columnar DBaaS"
- "Capella analytics cluster"
- "managed columnar Couchbase"
- skill: shell
priority: primary
use_when: the user wants to use cbsh (Couchbase Shell) for scripting, data import/export, or cluster management
triggers:
- "cbsh"
- "Couchbase Shell"
- "cb-env"
- "doc get"
- "doc upsert"
- "doc import"
- "query cbsh"
- "cbsh script"
- "cbsh pipeline"
- "cbsh import"
- "cbsh export"
- "cbsh migrate"
- "cbsh vector"
- "cbsh RAG"
- "cbsh clusters"
- "cbsh Nushell"
- "Couchbase CLI scripting"
# ── Mobile — Android ──────────────────────────────────────────────
- skill: mobile-android
priority: primary
use_when: building Android apps with Couchbase Lite
triggers:
- "Couchbase Lite Android"
- "CBL Android"
- "couchbase-lite-android"
- "MutableDocument Android"
- "Database Android Couchbase"
- "QueryBuilder Android"
- "Replicator Android"
- "local database Android Couchbase"
- "sync Android Couchbase"
- "embedded database Android"
- "offline Android Couchbase"
- "Couchbase Lite"
- "CBL"
- "couchbase mobile"
- skill: mobile-sync-android
priority: primary
use_when: the user is setting up bi-directional sync between Couchbase Lite and Sync Gateway on Android
triggers:
- "Couchbase Lite sync Android"
- "Sync Gateway Android"
- "Couchbase Mobile Android sync"
- "offline-first Android"
- "replication Android Kotlin"
- "CBL sync Android"
- "sync function Android"
- "channels Android"
- "Couchbase Lite replication Android"
- "sync Couchbase Android app"
- "Android Couchbase offline sync"
- skill: mobile-conflict-resolution-android
priority: primary
use_when: implementing conflict resolution logic in Android apps that sync with Sync Gateway or Capella
triggers:
- "Couchbase Lite conflict Android"
- "conflict resolution CBL Android"
- "custom conflict resolver Android"
- "merge conflict CBL Kotlin"
- "auto-purge Android"
- "conflict handler Android"
- "resolve sync conflict Android"
- "CBL conflict Kotlin"
- skill: mobile-data-modeling
priority: primary
use_when: designing documents that will sync via Sync Gateway or Capella App Services
triggers:
- "Couchbase Mobile data model"
- "Sync Gateway document design"
- "channel design Couchbase"
- "ownership field sync"
- "type field Sync Gateway"
- "embed vs reference mobile"
- "document size Couchbase Lite"
- "tombstone Couchbase"
- "delta sync"
- "multi-tenant sync"
- "sync schema design"
- "offline-first data model"
- "design documents for sync"
- "mobile document schema"
- skill: mobile-logging-android
priority: primary
use_when: debugging Couchbase Lite Android/Kotlin issues or configuring production logging on Android
triggers:
- "Couchbase Lite logging Android"
- "CBL log Android"
- "LogSinks Android"
- "file logging CBL Android"
- "console logging CBL Kotlin"
- "custom log sink Android"
- "log level Couchbase Lite Android"
- "cbl-log tool"
- "debug replication Android"
- "Couchbase Lite diagnostic Android"
- "CBL debug Android"
- skill: mobile-p2p-sync-android
priority: primary
use_when: syncing directly between Android devices without Sync Gateway
triggers:
- "Couchbase Lite P2P Android"
- "peer-to-peer sync CBL Android"
- "URLEndpointListener Android"
- "device to device sync Android"
- "CBL listener Android"
- "passive peer Android"
- "active peer Android Kotlin"
- "P2P sync Android Couchbase"
- "local network sync Android CBL"
- skill: mobile-testing-android
priority: primary
use_when: writing unit or integration tests for Android apps that use Couchbase Lite
triggers:
- "test Couchbase Lite Android"
- "unit test CBL Android"
- "mock replicator Android"
- "in-memory database CBL Android"
- "JUnit Couchbase Lite"
- "test isolation CBL Android"
- "teardown CBL database Android"
- "testing live query CBL Android"
- "CBL test Android"
- "Couchbase Lite unit test Kotlin"
- skill: mobile-vector-search-android
priority: primary
use_when: implementing on-device AI search or semantic search in Android apps
triggers:
- "Couchbase Lite vector search Android"
- "CBL vector search Kotlin"
- "VectorIndexConfiguration Android"
- "vector index Android"
- "lazy vector index Android"
- "semantic search Android"
- "on-device RAG Android"
- "on-device vector search Android"
- "AI search Android Couchbase"
# ── Mobile — iOS ──────────────────────────────────────────────────
- skill: mobile-ios
priority: primary
use_when: building iOS or macOS apps with Couchbase Lite
triggers:
- "Couchbase Lite iOS"
- "Couchbase Lite Swift"
- "CBL iOS"
- "CouchbaseLiteSwift"
- "MutableDocument Swift"
- "Database Swift Couchbase"
- "QueryBuilder Swift"
- "Replicator Swift"
- "local database iOS Couchbase"
- "sync iOS Couchbase"
- "embedded database iOS"
- "offline iOS Couchbase"
- skill: mobile-sync-ios
priority: primary
use_when: the user is setting up bi-directional sync between Couchbase Lite and Sync Gateway on iOS
triggers:
- "Couchbase Lite sync iOS"
- "Sync Gateway iOS"
- "Couchbase Mobile iOS sync"
- "offline-first iOS"
- "replication iOS Swift"
- "CBL sync iOS"
- "sync function iOS"
- "channels iOS"
- "Couchbase Lite replication Swift"
- "sync Couchbase iOS app"
- "iOS Couchbase offline sync"
- skill: mobile-conflict-resolution-ios
priority: primary
use_when: implementing conflict resolution logic in iOS/macOS apps that sync with Sync Gateway or Capella
triggers:
- "Couchbase Lite conflict iOS"
- "conflict resolution CBL Swift"
- "custom conflict resolver iOS"
- "merge conflict CBL Swift"
- "auto-purge iOS"
- "conflict handler iOS"
- "resolve sync conflict iOS"
- "CBL conflict Swift"
- skill: mobile-logging-ios
priority: primary
use_when: debugging Couchbase Lite iOS/macOS/Swift issues or configuring production logging on iOS
triggers:
- "Couchbase Lite logging iOS"
- "CBL log Swift"
- "LogSinks Swift"
- "file logging CBL iOS"
- "console logging CBL Swift"
- "custom log sink iOS"
- "log level Couchbase Lite iOS"
- "debug replication iOS"
- "Couchbase Lite diagnostic Swift"
- "CBL debug iOS"
- skill: mobile-p2p-sync-ios
priority: primary
use_when: syncing directly between Apple devices without Sync Gateway
triggers:
- "Couchbase Lite P2P iOS"
- "peer-to-peer sync CBL Swift"
- "URLEndpointListener iOS"
- "device to device sync iOS"
- "CBL listener iOS"
- "passive peer iOS"
- "active peer Swift"
- "P2P sync iOS Couchbase"
- "local network sync iOS CBL"
- skill: mobile-testing-ios
priority: primary
use_when: writing unit or integration tests for iOS/macOS apps that use Couchbase Lite
triggers:
- "test Couchbase Lite iOS"
- "unit test CBL Swift"
- "mock replicator iOS"
- "in-memory database CBL iOS"
- "XCTest Couchbase Lite"
- "test isolation CBL iOS"
- "teardown CBL database iOS"
- "testing live query CBL Swift"
- "CBL test iOS"
- "Couchbase Lite unit test Swift"
- skill: mobile-vector-search-ios
priority: primary
use_when: implementing on-device AI search or semantic search in iOS/macOS apps
triggers:
- "Couchbase Lite vector search iOS"
- "CBL vector search Swift"
- "VectorIndexConfiguration iOS"
- "vector index iOS"
- "lazy vector index iOS"
- "semantic search iOS"
- "on-device RAG iOS"
- "on-device vector search iOS"
- "AI search iOS Couchbase"
# ── SDK Connection (per language) ─────────────────────────────────
- skill: server-connection-python
priority: primary
use_when: setting up a Couchbase SDK connection — defaults to Python; route to the matching language skill if the user specifies one
triggers:
- "connect to Couchbase"
- "Couchbase connection string"
- "Couchbase SDK setup"
- "how to connect Couchbase"
- "Couchbase client configuration"
- "Couchbase Python connection"
- "Python SDK connect"
- "couchbase-python-client"
- "acouchbase"
- "ClusterOptions Python"
- "PasswordAuthenticator"
- "wait_until_ready Python"
- "Couchbase Lambda Python"
- "Couchbase timeout Python"
- "ECONNREFUSED Couchbase Python"
- "Couchbase connection pool"
- "connection pooling Couchbase"
- "connect to Capella"
- "connect Python app to Capella"
- "Capella Python SDK"
- skill: server-connection-java
priority: secondary
use_when: instantiating or configuring a Java Couchbase client, troubleshooting connection errors, or building Java applications that connect to Couchbase
triggers:
- "Couchbase Java connection"
- "Java SDK connect"
- "java-client Couchbase"
- "ClusterOptions Java"
- "waitUntilReady Java"
- "Couchbase Spring Boot"
- "Couchbase timeout Java"
- "UnambiguousTimeoutException Java"
- skill: server-connection-go
priority: secondary
use_when: instantiating or configuring a Go Couchbase client, troubleshooting connection errors, or building Go services that connect to Couchbase
triggers:
- "Couchbase Go connection"
- "gocb connect"
- "gocb/v2"
- "ClusterOptions Go"
- "WaitUntilReady Go"
- "Couchbase timeout Go"
- "ErrUnambiguousTimeout Go"
- skill: server-connection-dotnet
priority: secondary
use_when: instantiating or configuring a .NET Couchbase client, troubleshooting connection errors, or building C# applications that connect to Couchbase
triggers:
- "Couchbase .NET connection"
- "Couchbase C# connect"
- "CouchbaseNetClient"
- "AddCouchbase"
- "IClusterProvider"
- "IBucketProvider"
- "WaitUntilReadyAsync"
- "Couchbase timeout .NET"
- "UnambiguousTimeoutException .NET"
- skill: server-connection-nodejs
priority: secondary
use_when: instantiating or configuring a Node.js Couchbase client, troubleshooting connection errors, or building Node.js serverless functions that connect to Couchbase
triggers:
- "Couchbase Node.js connection"
- "couchbase npm connect"
- "couchbase.connect Node.js"
- "waitUntilReady Node.js"
- "Couchbase Lambda Node.js"
- "Couchbase timeout Node.js"
- "UnambiguousTimeoutError Node.js"
- skill: server-connection-rust
priority: secondary
use_when: instantiating or configuring a Rust Couchbase client, troubleshooting connection errors, or building Rust services that connect to Couchbase
triggers:
- "Couchbase Rust"
- "couchbase crate"
- "cargo add couchbase"
- "Cluster::connect Rust"
- "collection.upsert Rust"
- "collection.get Rust"
- "tokio Couchbase"
- "async Couchbase Rust"
- "wait_until_ready Rust"
- "PasswordAuthenticator Rust"
- "ClusterOptions Rust"
- "transactions Rust Couchbase"
- "ACID Rust Couchbase"
- skill: server-connection-scala
priority: secondary
use_when: instantiating or configuring a Scala Couchbase client, troubleshooting connection errors, or building Scala applications that connect to Couchbase
triggers:
- "Couchbase Scala"
- "scala-sdk Couchbase"
- "Cluster.connect Scala"
- "collection.upsert Scala"
- "collection.get Scala"