-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathkinds_meta.json
More file actions
6287 lines (6287 loc) · 201 KB
/
kinds_meta.json
File metadata and controls
6287 lines (6287 loc) · 201 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
{
"ab_test_config": {
"boundary": "A/B test spec. NOT feature_flag (toggle) nor experiment_config (ML training).",
"core": false,
"deprecated_by": null,
"description": "A/B test experiment configuration for conversion optimization",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 4096,
"naming": "p11_abt_{{name}}.yaml",
"pillar": "P11",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"feature_flag",
"eval_metric"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F1_constrain"
},
"action_paradigm": {
"boundary": "Action execution paradigm. NOT agent_computer_interface (specific protocol) nor cli_tool (CLI wrapper).",
"core": false,
"deprecated_by": null,
"description": "How agents execute actions in environments",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 4096,
"naming": "p04_act_{{name}}.md",
"pillar": "P04",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"function_def",
"skill"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F6_produce"
},
"action_prompt": {
"boundary": "Specific task. The LLM EXECUTES this. NOT prompt_template (reusable template) nor system_prompt (identity).",
"core": true,
"deprecated_by": null,
"description": "Task prompt sent by human/orchestrator to the agent",
"last_reviewed": "2026-04-14",
"llm_function": "INJECT",
"max_bytes": 2048,
"naming": "p03_up_{{task}}.md",
"pillar": "P03",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"prompt_template"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F6_produce"
},
"agent": {
"boundary": "Complete agent definition (persona + capabilities). NOT a skill (P04, executable capability) nor system_prompt (P03, how it speaks).",
"core": true,
"deprecated_by": null,
"description": "Agent definition (persona + capabilities)",
"last_reviewed": "2026-04-18",
"llm_function": "BECOME",
"max_bytes": 5120,
"naming": "p02_agent_{{name}}.md + .yaml",
"pillar": "P02",
"spec_version": "1.0.1",
"status": "stable",
"upstream_source": null,
"depends_on": [
"system_prompt",
"boot_config",
"agent_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"agent_card": {
"boundary": "Agent deployment spec. NOT agent (P02, persona only) nor boot_config (P02, provider startup) nor spawn_config (P12, runtime launch).",
"core": false,
"deprecated_by": null,
"description": "Deployment spec for autonomous agent identity, model, tools, boot, dispatch, constraints",
"last_reviewed": "2026-04-14",
"llm_function": "BECOME",
"max_bytes": 4096,
"naming": "p08_ac_{{agent_name}}.yaml",
"pillar": "P08",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"agent",
"capability_registry"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"agent_computer_interface": {
"boundary": "Agent-computer interface. NOT browser_tool (web automation) nor computer_use (screen control).",
"core": false,
"deprecated_by": null,
"description": "GUI/terminal interaction protocol for agents",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 5120,
"naming": "p08_aci_{{name}}.md",
"pillar": "P08",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"agent_card",
"computer_use"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"agent_grounding_record": {
"boundary": "Per-inference grounding record. NOT trace_config (raw OTel spans) nor model_card (training provenance).",
"core": false,
"deprecated_by": null,
"description": "Per-inference provenance record: tool calls, RAG chunks, model signature, output hash, OTel/C2PA traceability",
"last_reviewed": "2026-04-14",
"llm_function": "PRODUCE",
"max_bytes": 4096,
"naming": "p10_gr_{{inference_id}}.md",
"pillar": "P10",
"spec_version": null,
"status": "stable",
"upstream_source": "OTel GenAI semconv v1.37 + C2PA v2.3",
"depends_on": [
"entity_memory",
"knowledge_index"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"agent_name_service_record": {
"boundary": "Agent discovery record (DNS-like). NOT agent_card (capabilities) nor transport_config (protocol only).",
"core": false,
"deprecated_by": null,
"description": "IETF ANS + CNCF AgentDNS registry record for agent discovery: name, endpoint, PKI cert, protocol adapters",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 3072,
"naming": "p04_ans_{{agent_name}}.md",
"pillar": "P04",
"spec_version": null,
"status": "stable",
"upstream_source": "IETF draft-narajala-ans-00 + CNCF AgentDNS",
"depends_on": [
"agent_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"agent_package": {
"boundary": "Distributable agent package in ISO format. NOT agent (agent spec) -- agent_package is the portable bundle.",
"core": true,
"deprecated_by": null,
"description": "Portable AI agent package (ISO format) -- self-contained, LLM-agnostic",
"last_reviewed": "2026-04-14",
"llm_function": "BECOME",
"max_bytes": 4096,
"naming": "agents/{{agent_name}}/manifest.yaml",
"pillar": "P02",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"agent",
"agent_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"agent_profile": {
"boundary": "Agent persona construction. NOT agent (full agent def) nor system_prompt (how agent speaks).",
"core": false,
"deprecated_by": null,
"description": "Agent persona and identity construction method",
"last_reviewed": "2026-04-14",
"llm_function": "BECOME",
"max_bytes": 4096,
"naming": "p02_ap_{{name}}.md",
"pillar": "P02",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"agent",
"agent_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"agentic_rag": {
"boundary": "Agentic RAG pattern. NOT retriever (simple retrieval) nor agent (agent definition).",
"core": false,
"deprecated_by": null,
"description": "Agent-driven retrieval augmented generation pattern",
"last_reviewed": "2026-04-14",
"llm_function": "INJECT",
"max_bytes": 5120,
"naming": "p01_ar_{{name}}.md",
"pillar": "P01",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"rag_source",
"retriever_config",
"embedding_config",
"chunk_strategy"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F3_inject"
},
"agents_md": {
"boundary": "AGENTS.md standardized manifest. NOT CLAUDE.md (vendor-specific) nor README.md (human docs) nor .cursorrules (editor-specific).",
"core": false,
"deprecated_by": null,
"description": "AAIF/OpenAI AGENTS.md project-root manifest: setup/test/lint commands, PR format, deploy rules, coding-agent conventions",
"last_reviewed": "2026-04-14",
"llm_function": "CONSTRAIN",
"max_bytes": 3072,
"naming": "p02_am_{{name}}.md",
"pillar": "P02",
"spec_version": "AAIF 2025-12 / 60K+ project adoption",
"status": "stable",
"upstream_source": "agents.md",
"depends_on": [
"agent",
"agent_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"aggregate_root": {
"boundary": "DDD aggregate root. NOT interface (contract definition) nor input_schema (data validation). Evans Aggregate Root.",
"core": false,
"deprecated_by": null,
"description": "DDD entry point entity that enforces domain invariants and controls access to its aggregate cluster",
"last_reviewed": "2026-04-17",
"llm_function": "CONSTRAIN",
"max_bytes": 4096,
"naming": "p06_agr_{{name}}.md",
"pillar": "P06",
"spec_version": null,
"status": "stable",
"upstream_source": "Evans DDD 2003",
"depends_on": [
"type_def",
"input_schema",
"interface",
"value_object",
"process_manager",
"domain_event"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F4_reason"
},
"ai_rmf_profile": {
"boundary": "NIST AI-RMF vertical profile. NOT compliance_framework (broad regulatory mapping) nor threat_model (risk assessment). Structured per AI 600-1 GenAI-profile with action-IDs.",
"core": false,
"deprecated_by": null,
"description": "NIST AI RMF profile artifact -- 4 functions (GOVERN/MAP/MEASURE/MANAGE), 13 GenAI risk categories, action-ID mappings per risk. AI 600-1 compliant.",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 5120,
"naming": "p11_rmf_{{profile}}.md",
"pillar": "P11",
"spec_version": "600-1",
"status": "stable",
"upstream_source": "NIST AI 600-1 (July 2024)",
"depends_on": [
"safety_policy",
"guardrail"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F7_govern"
},
"alert_rule": {
"boundary": "Monitoring trigger. NOT guardrail (LLM behavior constraint) nor quality_gate (artifact scoring). Industry: Prometheus alerting rule.",
"core": false,
"deprecated_by": null,
"description": "Observable threshold condition that triggers a notification or automated response",
"last_reviewed": "2026-04-17",
"llm_function": "GOVERN",
"max_bytes": 2048,
"naming": "p09_alr_{{name}}.md",
"pillar": "P09",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"trace_config",
"env_config"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F8_collaborate"
},
"analyst_briefing": {
"boundary": "Analyst briefing. NOT pitch_deck (sales) nor case_study (single ref).",
"core": false,
"deprecated_by": null,
"description": "Gartner/Forrester/IDC analyst briefing deck with positioning, proof points, customer wins",
"last_reviewed": "2026-04-14",
"llm_function": "PRODUCE",
"max_bytes": 6144,
"naming": "p05_ab_{{name}}.md",
"pillar": "P05",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"knowledge_card",
"scoring_rubric"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F4_reason"
},
"api_client": {
"boundary": "Typed unidirectional client. NOT db_connector nor mcp_server.",
"core": false,
"deprecated_by": null,
"description": "Typed REST/GraphQL/gRPC API client",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 1024,
"naming": "p04_api_{{service}}.md + .yaml",
"pillar": "P04",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"env_config",
"secret_config"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F5_call"
},
"api_reference": {
"boundary": "API docs. NOT schema (internal) nor sdk_example (code-only).",
"core": false,
"deprecated_by": null,
"description": "API reference doc with endpoints, params, responses, auth, examples",
"last_reviewed": "2026-04-14",
"llm_function": "CONSTRAIN",
"max_bytes": 8192,
"naming": "p06_ar_{{name}}.md",
"pillar": "P06",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"api_client",
"input_schema"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F5_call"
},
"app_directory_entry": {
"boundary": "App directory entry. NOT marketplace_app_manifest (machine spec) nor partner_listing (sales).",
"core": false,
"deprecated_by": null,
"description": "App directory entry for FREE-tier discovery: tagline, screenshots, install steps, demo link",
"last_reviewed": "2026-04-14",
"llm_function": "PRODUCE",
"max_bytes": 4096,
"naming": "p05_ade_{{name}}.md",
"pillar": "P05",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"agent_card",
"knowledge_card"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F8_collaborate"
},
"audio_tool": {
"boundary": "Processes audio input/output. NOT vision_tool (visual) nor notifier (message delivery).",
"core": false,
"deprecated_by": null,
"description": "Speech-to-text, text-to-speech, audio analysis",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 2048,
"naming": "p04_audio_{{capability}}.md + .yaml",
"pillar": "P04",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"toolkit"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F5_call"
},
"audit_log": {
"boundary": "Audit log spec. NOT trace_config (observability) nor regression_check (quality).",
"core": false,
"deprecated_by": null,
"description": "Immutable audit log configuration for SOC2 Type II compliance",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 3072,
"naming": "p11_al_{{name}}.yaml",
"pillar": "P11",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"env_config",
"knowledge_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F8_collaborate"
},
"axiom": {
"boundary": "Immutable fundamental rule. NOT law (P08, adjustable operational) nor instruction (P03, flexible).",
"core": true,
"deprecated_by": null,
"description": "Principio fundamental imutavel â parte da identidade profunda da entidade",
"last_reviewed": "2026-04-14",
"llm_function": "BECOME",
"max_bytes": 3072,
"naming": "p02_ax_{{rule}}.md",
"pillar": "P02",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"mental_model"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F4_reason"
},
"backpressure_policy": {
"boundary": "Downstream overwhelm handling. NOT rate_limit_config (inbound throttle) nor circuit_breaker (dependency failure). Reactive Streams backpressure.",
"core": false,
"deprecated_by": null,
"description": "Policy defining how a system responds when downstream consumers cannot keep up with upstream producers",
"last_reviewed": "2026-04-17",
"llm_function": "GOVERN",
"max_bytes": 2048,
"naming": "p09_bp_{{name}}.md",
"pillar": "P09",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"rate_limit_config"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F1_constrain"
},
"batch_config": {
"boundary": "API-level async batch job config. NOT a schedule (cron-based) nor a workflow (multi-step). This is a single bulk request.",
"core": false,
"deprecated_by": null,
"description": "Async batch processing config for bulk API operations (OpenAI Batch, Anthropic Batches)",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 2048,
"naming": "p09_bc_{{name}}.yaml",
"pillar": "P09",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"env_config"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F1_constrain"
},
"benchmark": {
"boundary": "Quantitative performance measurement. NOT eval (does not test correctness) nor scoring_rubric (does not define criteria).",
"core": false,
"deprecated_by": null,
"description": "Performance measurement (latency, cost, quality)",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 4096,
"naming": "p07_bm_{{metric}}.md + .yaml",
"pillar": "P07",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"eval_dataset",
"scoring_rubric",
"eval_metric"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F7_govern"
},
"benchmark_suite": {
"boundary": "Benchmark suite. NOT benchmark (single benchmark) nor eval_framework (evaluation tooling).",
"core": false,
"deprecated_by": null,
"description": "Composite benchmark definition with multiple tasks",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 5120,
"naming": "p07_bs_{{name}}.md",
"pillar": "P07",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"benchmark",
"eval_dataset",
"scoring_rubric"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F7_govern"
},
"bias_audit": {
"boundary": "Fairness evaluation. NOT benchmark (general perf) nor eval_metric (single metric def).",
"core": false,
"deprecated_by": null,
"description": "Fairness evaluation methodology and results",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 5120,
"naming": "p07_ba_{{name}}.md",
"pillar": "P07",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"eval_dataset",
"scoring_rubric"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F7_govern"
},
"boot_config": {
"boundary": "Bootstrap per provider (claude, cursor, codex). NOT env_config (P09, generic variables) nor spawn_config (P12, agent_groups).",
"core": false,
"deprecated_by": null,
"description": "Boot configuration per provider",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 2048,
"naming": "p02_boot_{{provider}}.md",
"pillar": "P02",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"env_config",
"secret_config"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"bounded_context": {
"boundary": "DDD boundary definition. NOT component_map (deployment structure) nor namespace (code boundary). Evans Bounded Context.",
"core": false,
"deprecated_by": null,
"description": "Explicit boundary within which a domain model applies, with its own vocabulary and rules",
"last_reviewed": "2026-04-17",
"llm_function": "CONSTRAIN",
"max_bytes": 4096,
"naming": "p08_bc_{{name}}.md",
"pillar": "P08",
"spec_version": null,
"status": "stable",
"upstream_source": "Evans DDD 2003",
"depends_on": [
"domain_vocabulary",
"context_map"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F4_reason"
},
"browser_tool": {
"boundary": "Interacts with web pages via DOM. NOT computer_use (generic screen) nor search_tool (search without navigation).",
"core": true,
"deprecated_by": null,
"description": "Browser automation: DOM parsing, navigation, interaction, screenshot",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 2048,
"naming": "p04_browser_{{target}}.md + .yaml",
"pillar": "P04",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"computer_use"
],
"requires_external_context": false,
"requires_live_tools": true,
"primary_8f": "F5_call"
},
"bugloop": {
"boundary": "Automatic detect>fix>verify cycle. NOT unit_eval (P07, manual test) nor optimizer (continuous improvement, not correction).",
"core": false,
"deprecated_by": null,
"description": "Automatic correction loop (detect > fix > verify)",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 4096,
"naming": "p11_bl_{{scope}}.md + .yaml",
"pillar": "P11",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"regression_check",
"quality_gate"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F7_govern"
},
"c2pa_manifest": {
"boundary": "C2PA 2.3 manifest with JUMBF/COSE structure. NOT camera capture manifest, document signing, or W3C VC agent identity.",
"core": false,
"deprecated_by": null,
"description": "C2PA 2.3 content credential for AI-generated media: claim, assertions, ingredient, signature, AI-ML generator attribution",
"last_reviewed": "2026-04-14",
"llm_function": "CONSTRAIN",
"max_bytes": 4096,
"naming": "p10_cm_{{name}}.md",
"pillar": "P10",
"spec_version": "2.3",
"status": "stable",
"upstream_source": "https://spec.c2pa.org/specifications/specifications/2.3/",
"depends_on": [
"knowledge_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F1_constrain"
},
"canary_config": {
"boundary": "Canary deployment spec. NOT feature_flag (boolean toggle) nor ab_test_config (experiment split). Industry: Argo Rollouts, Flagger.",
"core": false,
"deprecated_by": null,
"description": "Gradual traffic rollout configuration for safe deployment with automatic rollback triggers",
"last_reviewed": "2026-04-17",
"llm_function": "GOVERN",
"max_bytes": 2048,
"naming": "p09_can_{{name}}.md",
"pillar": "P09",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"deployment_manifest",
"feature_flag",
"ab_test_config",
"sandbox_spec"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F1_constrain"
},
"capability_registry": {
"boundary": "Discovery catalog. NOT a handoff (P02) or agent card (P08/agent_card). Does not dispatch or execute agents.",
"core": false,
"description": "Searchable catalog of all agents available to crews. Indexes 252 builder sub-agents, nucleus domain agents, and nucleus cards. Fields: capability_name, provider_agent, input/output schemas, cost, quality_baseline, availability. Enables ranked candidate discovery for crew orchestration.",
"llm_function": "CONSTRAIN",
"max_bytes": 5120,
"naming": "p08_cr_{{registry_name}}.md",
"pillar": "P08",
"depends_on": [
"agent_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F2_become"
},
"case_study": {
"boundary": "Case study. NOT pitch_deck (all-purpose) nor testimonial (quote only).",
"core": false,
"deprecated_by": null,
"description": "Customer case study with challenge/solution/outcome/quote narrative",
"last_reviewed": "2026-04-14",
"llm_function": "PRODUCE",
"max_bytes": 6144,
"naming": "p05_cs_{{name}}.md",
"pillar": "P05",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"knowledge_card",
"customer_segment"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F4_reason"
},
"chain": {
"boundary": "Sequence of PROMPTS. NOT workflow (P12, agents+tools).",
"core": false,
"deprecated_by": null,
"description": "Chained prompt sequence (output A -> input B)",
"last_reviewed": "2026-04-14",
"llm_function": "PRODUCE",
"max_bytes": 6144,
"naming": "p03_ch_{{pipeline}}.md",
"pillar": "P03",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"prompt_template",
"action_prompt"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F6_produce"
},
"changelog": {
"boundary": "Changelog. NOT decision_record (rationale) nor release_notes (prose).",
"core": false,
"deprecated_by": null,
"description": "Product changelog entry with semver, features, fixes, breaking changes",
"last_reviewed": "2026-04-14",
"llm_function": "INJECT",
"max_bytes": 5120,
"naming": "p01_ch_{{name}}.md",
"pillar": "P01",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"knowledge_card",
"learning_record"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F8_collaborate"
},
"checkpoint": {
"boundary": "Saved state. NOT signal.",
"core": true,
"deprecated_by": null,
"description": "Workflow state snapshot",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 2048,
"naming": "p12_ckpt_{{name}}.md",
"pillar": "P12",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"workflow"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F8_collaborate"
},
"chunk_strategy": {
"boundary": "Split method. NOT embedding_config.",
"core": true,
"deprecated_by": null,
"description": "Chunking strategy",
"last_reviewed": "2026-04-14",
"llm_function": "CONSTRAIN",
"max_bytes": 2048,
"naming": "p01_chunk_{{strategy}}.md",
"pillar": "P01",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"embedding_config"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F3_inject"
},
"churn_prevention_playbook": {
"boundary": "Churn playbook. NOT renewal_workflow (process) nor expansion_play (upsell).",
"core": false,
"deprecated_by": null,
"description": "Churn prevention playbook: signal detection, intervention triggers, save-the-account scripts",
"last_reviewed": "2026-04-14",
"llm_function": "PRODUCE",
"max_bytes": 6144,
"naming": "p03_cpp_{{name}}.md",
"pillar": "P03",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"customer_segment",
"cohort_analysis"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F6_produce"
},
"circuit_breaker": {
"boundary": "Dependency circuit breaker. NOT fallback_chain (ordered provider fallback) nor rate_limit_config (inbound throttle). Industry: Hystrix, Resilience4j.",
"core": false,
"deprecated_by": null,
"description": "Resilience pattern that auto-disables failing dependencies and allows recovery after a cooldown period",
"last_reviewed": "2026-04-17",
"llm_function": "GOVERN",
"max_bytes": 3072,
"naming": "p09_cb_{{name}}.md",
"pillar": "P09",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"retry_policy",
"rate_limit_config"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F8_collaborate"
},
"citation": {
"boundary": "Source reference with provenance. NOT knowledge_card (the content itself), rag_source (pipeline config), nor glossary_entry (term definition).",
"core": false,
"deprecated_by": null,
"description": "Structured source attribution with provenance, URL, date, and reliability metadata",
"last_reviewed": "2026-04-14",
"llm_function": "INJECT",
"max_bytes": 2048,
"naming": "p01_cit_{{topic}}.md",
"pillar": "P01",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"knowledge_card"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F3_inject"
},
"cli_tool": {
"boundary": "One-shot command-line tool. NOT skill (no phases) nor daemon (does not persist in background).",
"core": false,
"deprecated_by": null,
"description": "Ferramenta CLI",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 1024,
"naming": "p04_cli_{{tool}}.md",
"pillar": "P04",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"function_def"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F5_call"
},
"code_executor": {
"boundary": "Isolated environment that executes code. NOT cli_tool (one-shot shell command) nor daemon (persistent process).",
"core": true,
"deprecated_by": null,
"description": "Sandboxed runtime for code execution (Docker, E2B, Jupyter)",
"last_reviewed": "2026-04-14",
"llm_function": "CALL",
"max_bytes": 2048,
"naming": "p04_exec_{{runtime}}.md + .yaml",
"pillar": "P04",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"env_config"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F5_call"
},
"code_of_conduct": {
"boundary": "Code of conduct. NOT contributor_guide (technical) nor governance (decision rules).",
"core": false,
"deprecated_by": null,
"description": "Community code of conduct (Contributor Covenant pattern) with reporting + enforcement",
"last_reviewed": "2026-04-14",
"llm_function": "PRODUCE",
"max_bytes": 4096,
"naming": "p05_coc_{{name}}.md",
"pillar": "P05",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"knowledge_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F8_collaborate"
},
"cohort_analysis": {
"boundary": "Cohort analytics. NOT benchmark (model eval) nor usage_report (billing).",
"core": false,
"deprecated_by": null,
"description": "Cohort analysis spec for retention measurement and LTV modeling",
"last_reviewed": "2026-04-14",
"llm_function": "GOVERN",
"max_bytes": 3072,
"naming": "p07_ca_{{name}}.yaml",
"pillar": "P07",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"eval_dataset",
"customer_segment"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F4_reason"
},
"collaboration_pattern": {
"boundary": "Coordination pattern. NOT workflow (execution sequence) nor handoff_protocol (handoff rules).",
"core": false,
"deprecated_by": null,
"description": "Multi-agent coordination topology",
"last_reviewed": "2026-04-14",
"llm_function": "COLLABORATE",
"max_bytes": 5120,
"naming": "p12_collab_{{name}}.md",
"pillar": "P12",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"workflow",
"agent_card"
],
"requires_external_context": false,
"requires_live_tools": false,
"primary_8f": "F8_collaborate"
},
"competitive_matrix": {
"boundary": "Competitive doc. NOT customer_segment (ICP) nor pitch_deck (narrative).",
"core": false,
"deprecated_by": null,
"description": "Competitive feature matrix for sales battle cards and procurement evals",
"last_reviewed": "2026-04-14",
"llm_function": "INJECT",
"max_bytes": 5120,
"naming": "p01_cm_{{name}}.md",
"pillar": "P01",
"spec_version": null,
"status": "stable",
"upstream_source": null,
"depends_on": [
"knowledge_card",
"customer_segment"
],
"requires_external_context": true,
"requires_live_tools": false,
"primary_8f": "F4_reason"
},