agentera 3.0.0-dev.72 → 3.0.0-dev.75
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 +111 -0
- package/bundle/.agentera-build-source.json +8 -0
- package/bundle/CHANGELOG.md +17 -17
- package/bundle/extract-corpus-parity.json +1 -1
- package/bundle/references/adapters/package-publication.json +49 -53
- package/bundle/references/adapters/package-registry.yaml +5 -1
- package/bundle/references/adapters/package-surface-characterization.md +6 -4
- package/bundle/references/analysis/evidence-tier-authority.yaml +45 -4
- package/bundle/references/analysis/personal-glossary-evaluation-authority.yaml +175 -0
- package/bundle/references/analysis/personal-glossary-evaluation-corpus.yaml +291 -0
- package/bundle/references/analysis/personal-glossary-holdout.yaml +192 -0
- package/bundle/references/analysis/verification-policy.yaml +8 -13
- package/bundle/references/artifacts/glossary-entry-contract.yaml +1533 -35
- package/bundle/references/cli/update-channels.yaml +2 -2
- package/bundle/references/cli/vocabulary.md +1 -1
- package/bundle/references/meta/retained-reference-authority.yaml +16 -1
- package/bundle/skills/agentera/capabilities/profile/schemas/artifacts.yaml +11 -7
- package/bundle/skills/agentera/capabilities/profile/schemas/exit.yaml +6 -3
- package/bundle/skills/agentera/capabilities/profile/schemas/validation.yaml +13 -7
- package/bundle/skills/agentera/schemas/artifacts/glossary.yaml +5 -0
- package/bundle/skills/agentera/schemas/artifacts/plan.yaml +7 -0
- package/dist/.agentera-build-source.json +8 -0
- package/dist/analytics/extractCorpus/copilotSessions.js +13 -4
- package/dist/analytics/extractCorpus/core.js +223 -3
- package/dist/analytics/extractCorpus/corpus.js +18 -1
- package/dist/analytics/extractCorpus/cursorSessions.js +22 -4
- package/dist/analytics/extractCorpus/evidenceTiers.js +123 -17
- package/dist/analytics/extractCorpus/filesystemSources.js +4 -0
- package/dist/analytics/extractCorpus/index.js +2 -2
- package/dist/analytics/extractCorpus/jsonlSessions.js +52 -3
- package/dist/analytics/extractCorpus/sqliteSessions.js +12 -3
- package/dist/analytics/personalGlossaryAdmission.js +26 -46
- package/dist/analytics/personalGlossaryCandidateProjection.js +692 -0
- package/dist/analytics/personalGlossaryCandidateProjectionExcerpts.js +144 -0
- package/dist/analytics/personalGlossaryCandidateReadView.js +23 -0
- package/dist/analytics/personalGlossaryCurrentGeneration.js +25 -0
- package/dist/analytics/personalGlossaryDecision.js +203 -0
- package/dist/analytics/personalGlossaryExplicit.js +788 -0
- package/dist/analytics/personalGlossaryExplicitMining.js +285 -0
- package/dist/analytics/personalGlossaryExplicitScope.js +41 -0
- package/dist/analytics/personalGlossaryExplicitSegments.js +418 -0
- package/dist/analytics/personalGlossaryExplicitTypes.js +26 -0
- package/dist/analytics/personalGlossaryLexicalClassifier.js +175 -0
- package/dist/analytics/personalGlossaryProfile.js +13 -3
- package/dist/analytics/personalGlossaryRecurrence.js +618 -0
- package/dist/analytics/personalGlossaryReviewRecordStorage.js +428 -0
- package/dist/analytics/personalGlossaryReviewRecords.js +332 -0
- package/dist/capabilities/index.js +5 -1
- package/dist/capabilities/profile/instructions.js +50 -15
- package/dist/cli/commands/personalGlossaryCandidateReads.js +744 -0
- package/dist/cli/commands/personalGlossaryDecision.js +349 -0
- package/dist/cli/commands/personalGlossaryPublish.js +484 -0
- package/dist/cli/commands/personalGlossaryReviewRecordReads.js +209 -0
- package/dist/cli/commands/personalGlossaryReviewRecords.js +623 -0
- package/dist/cli/commands/prime/briefOrientation.js +118 -19
- package/dist/cli/commands/report.js +18 -2
- package/dist/cli/commands/schema.js +179 -0
- package/dist/cli/commands/verify.js +51 -9
- package/dist/cli/dispatch/lifecycle.js +51 -6
- package/dist/cli/help.js +48 -2
- package/dist/cli/migrationRequired.js +4 -1
- package/dist/core/atomicWriter.js +4 -1
- package/dist/core/developmentInvocation.js +4 -1
- package/dist/core/yaml.js +53 -1
- package/dist/eval/glossaryEvaluation.js +751 -0
- package/dist/eval/glossaryEvaluationProcess.js +29 -0
- package/dist/eval/glossaryEvaluationRunner.js +571 -0
- package/dist/eval/glossaryEvaluationSuccessReport.js +297 -0
- package/dist/registries/activationTuples.js +31 -3
- package/dist/registries/evidenceTierContract.js +4 -0
- package/dist/registries/explicitSegmentGrammarContract.js +619 -0
- package/dist/registries/glossaryCandidateContractPaths.js +6 -0
- package/dist/registries/glossaryCandidateContracts.js +820 -0
- package/dist/registries/glossaryCandidateDecisionAuthority.js +119 -0
- package/dist/registries/glossaryCandidateDecisionContract.js +62 -0
- package/dist/registries/glossaryCandidateProjectionAuthority.js +197 -0
- package/dist/registries/glossaryCandidateProjectionContract.js +104 -0
- package/dist/registries/glossaryEntryContract.js +105 -103
- package/dist/registries/glossaryEntryTemporal.js +12 -0
- package/dist/registries/glossaryMiningAuthority.js +764 -0
- package/dist/registries/glossaryProfileFullContract.js +24 -0
- package/dist/registries/glossaryReviewRecordsAuthority.js +426 -0
- package/dist/registries/glossaryReviewRecordsContract.js +129 -0
- package/dist/registries/glossaryTermIdentity.js +122 -0
- package/dist/registries/packagePublication.js +3 -3
- package/dist/registries/personalGlossaryContracts.js +1 -0
- package/dist/release/releaseMetadata.js +15 -8
- package/dist/upgrade/npxPlatformStatus.js +2 -1
- package/dist/upgrade/projectIntegration.js +7 -1
- package/dist/validate/activationArtifactEvidence.js +18 -4
- package/dist/validate/activationEvidenceManifest.js +101 -22
- package/package.json +2 -4
- package/dist/cli/commands/personalGlossary.js +0 -176
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
schema_version: agentera.personalGlossaryEvaluationAuthority.v1
|
|
2
|
+
status: active_authority
|
|
3
|
+
purpose: >-
|
|
4
|
+
Establish the quantitative authority for personal glossary mining without
|
|
5
|
+
implementing mining. The frozen holdout reports separate discovery recall,
|
|
6
|
+
scope accuracy, inferred-review precision, and explicit-admission precision.
|
|
7
|
+
Every result is a metric report plus an explicit fail-closed gate result.
|
|
8
|
+
implementation_boundary: >-
|
|
9
|
+
This authority defines labels, denominators, provenance, uncertainty, and
|
|
10
|
+
delivery gates. It does not implement or own mining and reads no
|
|
11
|
+
personal/project history. Its executable harness exercises existing explicit
|
|
12
|
+
and recurring mining plus V2 decision seams on frozen synthetic inputs, with
|
|
13
|
+
no persistence outside isolated temporary state.
|
|
14
|
+
preserved_authority:
|
|
15
|
+
shared_primitive: references/artifacts/glossary-entry-contract.yaml#shared_primitive
|
|
16
|
+
personal_owner: references/artifacts/glossary-entry-contract.yaml#ownership_contracts.personal
|
|
17
|
+
project_owner: references/artifacts/glossary-entry-contract.yaml#ownership_contracts.project
|
|
18
|
+
consumer_precedence: references/artifacts/glossary-entry-contract.yaml#consumer_boundary.primary_selection
|
|
19
|
+
project_publication: references/artifacts/glossary-entry-contract.yaml#ownership_contracts.project.publication
|
|
20
|
+
inferred_automatic_admission: disabled
|
|
21
|
+
|
|
22
|
+
holdout:
|
|
23
|
+
path: references/analysis/personal-glossary-holdout.yaml
|
|
24
|
+
fixture_sha256: d758f5e1ac5c8eb72a422fd0d79b5b5097d48a726b83a0cbdf752dbf8d064a54
|
|
25
|
+
status: frozen
|
|
26
|
+
identity: content_addressed_fixture_bytes
|
|
27
|
+
labels:
|
|
28
|
+
source: evaluation_authority
|
|
29
|
+
expected_labels_immutable: true
|
|
30
|
+
relabeling: forbidden_after_freeze
|
|
31
|
+
changed_fixture: fail_before_metrics
|
|
32
|
+
failure_recording: append_only
|
|
33
|
+
provenance:
|
|
34
|
+
allowed_record_classes: [synthetic, consented]
|
|
35
|
+
default_record_class: synthetic
|
|
36
|
+
synthetic:
|
|
37
|
+
consent: not_required_synthetic
|
|
38
|
+
raw_personal_history: forbidden
|
|
39
|
+
source_rule: generated_or_hand_authored_synthetic_records_only
|
|
40
|
+
consented:
|
|
41
|
+
required_fields: [consent_subject, consent_receipt, consented_at]
|
|
42
|
+
raw_personal_history: allowed_only_with_fixture_record_consent
|
|
43
|
+
source_rule: each_record_must_bind_to_its_own_consent_provenance
|
|
44
|
+
missing_or_invalid: reject_before_metrics
|
|
45
|
+
|
|
46
|
+
observations:
|
|
47
|
+
schema_version: agentera.personalGlossaryEvaluationObservations.v2
|
|
48
|
+
source: current_product_behavior
|
|
49
|
+
behavior_fixture:
|
|
50
|
+
path: references/analysis/personal-glossary-evaluation-corpus.yaml
|
|
51
|
+
fixture_sha256: 4d4c55b3d3fc60872f2ac06cdcc2e8e2ab40fa5d5cc749f1add7e493571e19c2
|
|
52
|
+
status: frozen
|
|
53
|
+
identity: content_addressed_fixture_bytes
|
|
54
|
+
provenance: synthetic_only
|
|
55
|
+
required_fields: [schema_version, holdout_id, holdout_fixture_sha256, behavior_fixture_sha256, discovery, scope, inferred_review, explicit_admission]
|
|
56
|
+
digest_binding: holdout_fixture_sha256_must_equal_frozen_fixture_digest
|
|
57
|
+
coverage: exact_frozen_id_set_per_metric
|
|
58
|
+
missing: not_run_non_authorizing
|
|
59
|
+
invalid: reject_before_metrics
|
|
60
|
+
|
|
61
|
+
results:
|
|
62
|
+
metrics_sha256:
|
|
63
|
+
field: metrics_sha256
|
|
64
|
+
algorithm: sha256(canonical_json_metrics_array)
|
|
65
|
+
|
|
66
|
+
metrics:
|
|
67
|
+
discovery_recall:
|
|
68
|
+
definition: >-
|
|
69
|
+
Of labeled examples that the authority says are discoverable, the share
|
|
70
|
+
that the evaluated output discovers.
|
|
71
|
+
numerator: expected_discoverable_true_and_observed_discovered_true
|
|
72
|
+
denominator: count_expected_discoverable_true
|
|
73
|
+
denominator_zero: fail
|
|
74
|
+
sample_unit: labeled_discovery_example
|
|
75
|
+
minimum_sample_size: 20
|
|
76
|
+
point_estimate_minimum: 0.90
|
|
77
|
+
uncertainty:
|
|
78
|
+
method: wilson_lower_bound
|
|
79
|
+
confidence: 0.95
|
|
80
|
+
lower_bound_minimum: 0.80
|
|
81
|
+
scope_accuracy:
|
|
82
|
+
definition: >-
|
|
83
|
+
Of all scope-labeled examples, the share whose evaluated scope exactly
|
|
84
|
+
matches the frozen expected scope label.
|
|
85
|
+
numerator: expected_scope_equals_observed_scope
|
|
86
|
+
denominator: count_all_scope_labeled_examples
|
|
87
|
+
denominator_zero: fail
|
|
88
|
+
sample_unit: labeled_scope_example
|
|
89
|
+
labels: [personal, project, neither]
|
|
90
|
+
minimum_sample_size: 20
|
|
91
|
+
point_estimate_minimum: 0.95
|
|
92
|
+
uncertainty:
|
|
93
|
+
method: wilson_lower_bound
|
|
94
|
+
confidence: 0.95
|
|
95
|
+
lower_bound_minimum: 0.80
|
|
96
|
+
inferred_review_precision:
|
|
97
|
+
definition: >-
|
|
98
|
+
Of inferred candidates for which the evaluated output suggests review,
|
|
99
|
+
the share whose frozen label says review is warranted.
|
|
100
|
+
numerator: expected_reviewable_true_and_observed_reviewed_true
|
|
101
|
+
denominator: count_observed_reviewed_true
|
|
102
|
+
denominator_zero: fail
|
|
103
|
+
sample_unit: inferred_review_suggestion
|
|
104
|
+
minimum_sample_size: 20
|
|
105
|
+
point_estimate_minimum: 0.95
|
|
106
|
+
uncertainty:
|
|
107
|
+
method: wilson_lower_bound
|
|
108
|
+
confidence: 0.95
|
|
109
|
+
lower_bound_minimum: 0.80
|
|
110
|
+
explicit_admission_precision:
|
|
111
|
+
definition: >-
|
|
112
|
+
Of explicit candidates for which the evaluated output automatically
|
|
113
|
+
admits an entry, the share whose frozen label says admission is correct.
|
|
114
|
+
numerator: expected_admissible_true_and_observed_admitted_true
|
|
115
|
+
denominator: count_observed_admitted_true
|
|
116
|
+
denominator_zero: fail
|
|
117
|
+
sample_unit: explicit_automatic_admission
|
|
118
|
+
minimum_sample_size: 50
|
|
119
|
+
point_estimate_minimum: 0.99
|
|
120
|
+
uncertainty:
|
|
121
|
+
method: wilson_lower_bound
|
|
122
|
+
confidence: 0.95
|
|
123
|
+
lower_bound_minimum: 0.90
|
|
124
|
+
|
|
125
|
+
uncertainty:
|
|
126
|
+
method: one_sided_wilson_lower_bound
|
|
127
|
+
confidence: 0.95
|
|
128
|
+
rule: >-
|
|
129
|
+
A metric passes only when its point estimate and one-sided Wilson lower
|
|
130
|
+
bound meet their authority thresholds. A zero denominator, non-finite
|
|
131
|
+
value, or sample below the metric minimum fails closed.
|
|
132
|
+
rounding: report_full_precision_compare_unrounded
|
|
133
|
+
|
|
134
|
+
gates:
|
|
135
|
+
exploratory_report:
|
|
136
|
+
release_authorizing: false
|
|
137
|
+
rule: metrics_are_observational_and_do_not_authorize_delivery
|
|
138
|
+
release_authorizing_gate:
|
|
139
|
+
release_authorizing: true
|
|
140
|
+
requirements:
|
|
141
|
+
- frozen_holdout_digest_matches_authority
|
|
142
|
+
- observations_exactly_cover_frozen_ids
|
|
143
|
+
- every_metric_has_a_nonzero_denominator
|
|
144
|
+
- every_metric_meets_minimum_sample_size
|
|
145
|
+
- every_metric_meets_point_threshold
|
|
146
|
+
- every_metric_meets_uncertainty_threshold
|
|
147
|
+
- inferred_automatic_admission_remains_disabled
|
|
148
|
+
rule: >-
|
|
149
|
+
Only this gate may authorize the measured delivery decision. A passing
|
|
150
|
+
exploratory report is never substituted for this gate.
|
|
151
|
+
explicit_admission:
|
|
152
|
+
metric: explicit_admission_precision
|
|
153
|
+
outcome: explicit_automatic_admission_only
|
|
154
|
+
inferred_review:
|
|
155
|
+
metric: inferred_review_precision
|
|
156
|
+
outcome: review_suggestions_only
|
|
157
|
+
inferred_automatic_admission:
|
|
158
|
+
status: disabled
|
|
159
|
+
measured_result: cannot_enable
|
|
160
|
+
rule: >-
|
|
161
|
+
No measured result enables inferred automatic admission. Inferred results
|
|
162
|
+
may gate review suggestions only until a separate authority changes this
|
|
163
|
+
disabled state.
|
|
164
|
+
|
|
165
|
+
scope:
|
|
166
|
+
in_scope:
|
|
167
|
+
- Frozen synthetic holdout provenance and label immutability.
|
|
168
|
+
- Separate metric definitions, denominators, sample rules, and uncertainty.
|
|
169
|
+
- Fail-closed calculation and release-gate validation.
|
|
170
|
+
- Existing explicit/recurring mining and V2 decision seams on isolated synthetic inputs.
|
|
171
|
+
out_of_scope:
|
|
172
|
+
- Mining implementation or ownership.
|
|
173
|
+
- Project glossary reads, writes, precedence, or publication replacement.
|
|
174
|
+
- Profile mutation, review persistence, or release mutation.
|
|
175
|
+
- Suite version changes, registry mutation, release, or package publication.
|
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
schema_version: agentera.personalGlossaryEvaluationBehaviorFixture.v1
|
|
2
|
+
fixture_id: personal-glossary-synthetic-behavior-v1
|
|
3
|
+
status: frozen
|
|
4
|
+
provenance:
|
|
5
|
+
record_class: synthetic
|
|
6
|
+
source: hand_authored_deterministic_synthetic_product_inputs
|
|
7
|
+
source_ref: references/analysis/personal-glossary-evaluation-authority.yaml
|
|
8
|
+
consent: not_required_synthetic
|
|
9
|
+
contains_personal_history: false
|
|
10
|
+
owner: evaluation_authority
|
|
11
|
+
frozen_at: 2026-08-10
|
|
12
|
+
privacy_rule: no_raw_personal_history_or_transcript_content
|
|
13
|
+
|
|
14
|
+
synthetic_record_provenance: &synthetic_record_provenance
|
|
15
|
+
record_class: synthetic
|
|
16
|
+
source_namespace: synthetic://personal-glossary-evaluation/
|
|
17
|
+
consent: not_required_synthetic
|
|
18
|
+
contains_personal_history: false
|
|
19
|
+
|
|
20
|
+
discovery:
|
|
21
|
+
- { id: discovery-01, text: "Actually, `discovery term 01` means synthetic discoverable meaning 01.", provenance: *synthetic_record_provenance }
|
|
22
|
+
- { id: discovery-02, text: "Actually, `discovery term 02` means synthetic discoverable meaning 02.", provenance: *synthetic_record_provenance }
|
|
23
|
+
- { id: discovery-03, text: "Actually, `discovery term 03` means synthetic discoverable meaning 03.", provenance: *synthetic_record_provenance }
|
|
24
|
+
- { id: discovery-04, text: "Actually, `discovery term 04` means synthetic discoverable meaning 04.", provenance: *synthetic_record_provenance }
|
|
25
|
+
- { id: discovery-05, text: "Actually, `discovery term 05` means synthetic discoverable meaning 05.", provenance: *synthetic_record_provenance }
|
|
26
|
+
- { id: discovery-06, text: "Actually, `discovery term 06` means synthetic discoverable meaning 06.", provenance: *synthetic_record_provenance }
|
|
27
|
+
- { id: discovery-07, text: "Actually, `discovery term 07` means synthetic discoverable meaning 07.", provenance: *synthetic_record_provenance }
|
|
28
|
+
- { id: discovery-08, text: "Actually, `discovery term 08` means synthetic discoverable meaning 08.", provenance: *synthetic_record_provenance }
|
|
29
|
+
- { id: discovery-09, text: "Actually, `discovery term 09` means synthetic discoverable meaning 09.", provenance: *synthetic_record_provenance }
|
|
30
|
+
- { id: discovery-10, text: "Actually, `discovery term 10` means synthetic discoverable meaning 10.", provenance: *synthetic_record_provenance }
|
|
31
|
+
- { id: discovery-11, text: "Actually, `discovery term 11` means synthetic discoverable meaning 11.", provenance: *synthetic_record_provenance }
|
|
32
|
+
- { id: discovery-12, text: "Actually, `discovery term 12` means synthetic discoverable meaning 12.", provenance: *synthetic_record_provenance }
|
|
33
|
+
- { id: discovery-13, text: "Actually, `discovery term 13` means synthetic discoverable meaning 13.", provenance: *synthetic_record_provenance }
|
|
34
|
+
- { id: discovery-14, text: "Actually, `discovery term 14` means synthetic discoverable meaning 14.", provenance: *synthetic_record_provenance }
|
|
35
|
+
- { id: discovery-15, text: "Actually, `discovery term 15` means synthetic discoverable meaning 15.", provenance: *synthetic_record_provenance }
|
|
36
|
+
- { id: discovery-16, text: "Actually, `discovery term 16` means synthetic discoverable meaning 16.", provenance: *synthetic_record_provenance }
|
|
37
|
+
- { id: discovery-17, text: "Actually, `discovery term 17` means synthetic discoverable meaning 17.", provenance: *synthetic_record_provenance }
|
|
38
|
+
- { id: discovery-18, text: "Actually, `discovery term 18` means synthetic discoverable meaning 18.", provenance: *synthetic_record_provenance }
|
|
39
|
+
- { id: discovery-19, text: "Actually, `discovery term 19` means synthetic discoverable meaning 19.", provenance: *synthetic_record_provenance }
|
|
40
|
+
- { id: discovery-20, text: "Actually, `discovery term 20` means synthetic discoverable meaning 20.", provenance: *synthetic_record_provenance }
|
|
41
|
+
|
|
42
|
+
scope:
|
|
43
|
+
- { id: scope-01, text: "For me, `scope personal 01` means a synthetic personal meaning.", provenance: *synthetic_record_provenance }
|
|
44
|
+
- { id: scope-02, text: "In this repository, `scope project 02` means a synthetic project meaning.", provenance: *synthetic_record_provenance }
|
|
45
|
+
- { id: scope-03, text: "Is `scope neither 03` a synthetic meaning?", provenance: *synthetic_record_provenance }
|
|
46
|
+
- { id: scope-04, text: "I use `scope personal 04` to mean a synthetic personal meaning.", provenance: *synthetic_record_provenance }
|
|
47
|
+
- { id: scope-05, text: "In this project, `scope project 05` means a synthetic project meaning.", provenance: *synthetic_record_provenance }
|
|
48
|
+
- { id: scope-06, text: "For example, `scope neither 06` means a synthetic example meaning.", provenance: *synthetic_record_provenance }
|
|
49
|
+
- { id: scope-07, text: "Personally, `scope personal 07` means a synthetic personal meaning.", provenance: *synthetic_record_provenance }
|
|
50
|
+
- { id: scope-08, text: "For this codebase, `scope project 08` means a synthetic project meaning.", provenance: *synthetic_record_provenance }
|
|
51
|
+
- { id: scope-09, text: "If `scope neither 09` means a synthetic hypothetical meaning, continue.", provenance: *synthetic_record_provenance }
|
|
52
|
+
- { id: scope-10, text: "For me, `scope personal 10` means a synthetic personal meaning.", provenance: *synthetic_record_provenance }
|
|
53
|
+
- { id: scope-11, text: "Within our project, `scope project 11` means a synthetic project meaning.", provenance: *synthetic_record_provenance }
|
|
54
|
+
- { id: scope-12, text: "I will use `scope neither 12` to mean a synthetic future meaning.", provenance: *synthetic_record_provenance }
|
|
55
|
+
- { id: scope-13, text: "For me, `scope personal 13` means a synthetic personal meaning.", provenance: *synthetic_record_provenance }
|
|
56
|
+
- { id: scope-14, text: "In this repository, `scope project 14` means a synthetic project meaning.", provenance: *synthetic_record_provenance }
|
|
57
|
+
- { id: scope-15, text: "`scope neither 15` means an agent-authored synthetic meaning.", actor: agent, provenance: *synthetic_record_provenance }
|
|
58
|
+
- { id: scope-16, text: "Personally, `scope personal 16` means a synthetic personal meaning.", provenance: *synthetic_record_provenance }
|
|
59
|
+
- { id: scope-17, text: "Project-only `scope project 17` means a synthetic project meaning.", provenance: *synthetic_record_provenance }
|
|
60
|
+
- { id: scope-18, text: "`scope neither 18` means .", provenance: *synthetic_record_provenance }
|
|
61
|
+
- { id: scope-19, text: "For me, `scope personal 19` means a synthetic personal meaning.", provenance: *synthetic_record_provenance }
|
|
62
|
+
- { id: scope-20, text: "In this project, `scope project 20` means a synthetic project meaning.", provenance: *synthetic_record_provenance }
|
|
63
|
+
|
|
64
|
+
inferred_review:
|
|
65
|
+
- id: review-01
|
|
66
|
+
term: synthetic-review-01
|
|
67
|
+
sources:
|
|
68
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-01 explicit." }
|
|
69
|
+
- { source_kind: project_config_signal, text: synthetic-review-01 }
|
|
70
|
+
provenance: *synthetic_record_provenance
|
|
71
|
+
- id: review-02
|
|
72
|
+
term: synthetic-review-02
|
|
73
|
+
sources:
|
|
74
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-02 explicit." }
|
|
75
|
+
- { source_kind: project_config_signal, text: synthetic-review-02 }
|
|
76
|
+
provenance: *synthetic_record_provenance
|
|
77
|
+
- id: review-03
|
|
78
|
+
term: synthetic-review-03
|
|
79
|
+
sources:
|
|
80
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-03 explicit." }
|
|
81
|
+
- { source_kind: project_config_signal, text: synthetic-review-03 }
|
|
82
|
+
provenance: *synthetic_record_provenance
|
|
83
|
+
- id: review-04
|
|
84
|
+
term: synthetic-review-04
|
|
85
|
+
sources:
|
|
86
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-04 explicit." }
|
|
87
|
+
- { source_kind: project_config_signal, text: synthetic-review-04 }
|
|
88
|
+
provenance: *synthetic_record_provenance
|
|
89
|
+
- id: review-05
|
|
90
|
+
term: synthetic-review-05
|
|
91
|
+
sources:
|
|
92
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-05 explicit." }
|
|
93
|
+
- { source_kind: project_config_signal, text: synthetic-review-05 }
|
|
94
|
+
provenance: *synthetic_record_provenance
|
|
95
|
+
- id: review-06
|
|
96
|
+
term: synthetic-review-06
|
|
97
|
+
sources:
|
|
98
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-06 explicit." }
|
|
99
|
+
- { source_kind: project_config_signal, text: synthetic-review-06 }
|
|
100
|
+
provenance: *synthetic_record_provenance
|
|
101
|
+
- id: review-07
|
|
102
|
+
term: synthetic-review-07
|
|
103
|
+
sources:
|
|
104
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-07 explicit." }
|
|
105
|
+
- { source_kind: project_config_signal, text: synthetic-review-07 }
|
|
106
|
+
provenance: *synthetic_record_provenance
|
|
107
|
+
- id: review-08
|
|
108
|
+
term: synthetic-review-08
|
|
109
|
+
sources:
|
|
110
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-08 explicit." }
|
|
111
|
+
- { source_kind: project_config_signal, text: synthetic-review-08 }
|
|
112
|
+
provenance: *synthetic_record_provenance
|
|
113
|
+
- id: review-09
|
|
114
|
+
term: synthetic-review-09
|
|
115
|
+
sources:
|
|
116
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-09 explicit." }
|
|
117
|
+
- { source_kind: project_config_signal, text: synthetic-review-09 }
|
|
118
|
+
provenance: *synthetic_record_provenance
|
|
119
|
+
- id: review-10
|
|
120
|
+
term: synthetic-review-10
|
|
121
|
+
sources:
|
|
122
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-10 explicit." }
|
|
123
|
+
- { source_kind: project_config_signal, text: synthetic-review-10 }
|
|
124
|
+
provenance: *synthetic_record_provenance
|
|
125
|
+
- id: review-11
|
|
126
|
+
term: synthetic-review-11
|
|
127
|
+
sources:
|
|
128
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-11 explicit." }
|
|
129
|
+
- { source_kind: project_config_signal, text: synthetic-review-11 }
|
|
130
|
+
provenance: *synthetic_record_provenance
|
|
131
|
+
- id: review-12
|
|
132
|
+
term: synthetic-review-12
|
|
133
|
+
sources:
|
|
134
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-12 explicit." }
|
|
135
|
+
- { source_kind: project_config_signal, text: synthetic-review-12 }
|
|
136
|
+
provenance: *synthetic_record_provenance
|
|
137
|
+
- id: review-13
|
|
138
|
+
term: synthetic-review-13
|
|
139
|
+
sources:
|
|
140
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-13 explicit." }
|
|
141
|
+
- { source_kind: project_config_signal, text: synthetic-review-13 }
|
|
142
|
+
provenance: *synthetic_record_provenance
|
|
143
|
+
- id: review-14
|
|
144
|
+
term: synthetic-review-14
|
|
145
|
+
sources:
|
|
146
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-14 explicit." }
|
|
147
|
+
- { source_kind: project_config_signal, text: synthetic-review-14 }
|
|
148
|
+
provenance: *synthetic_record_provenance
|
|
149
|
+
- id: review-15
|
|
150
|
+
term: synthetic-review-15
|
|
151
|
+
sources:
|
|
152
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-15 explicit." }
|
|
153
|
+
- { source_kind: project_config_signal, text: synthetic-review-15 }
|
|
154
|
+
provenance: *synthetic_record_provenance
|
|
155
|
+
- id: review-16
|
|
156
|
+
term: synthetic-review-16
|
|
157
|
+
sources:
|
|
158
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-16 explicit." }
|
|
159
|
+
- { source_kind: project_config_signal, text: synthetic-review-16 }
|
|
160
|
+
provenance: *synthetic_record_provenance
|
|
161
|
+
- id: review-17
|
|
162
|
+
term: synthetic-review-17
|
|
163
|
+
sources:
|
|
164
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-17 explicit." }
|
|
165
|
+
- { source_kind: project_config_signal, text: synthetic-review-17 }
|
|
166
|
+
provenance: *synthetic_record_provenance
|
|
167
|
+
- id: review-18
|
|
168
|
+
term: synthetic-review-18
|
|
169
|
+
sources:
|
|
170
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-18 explicit." }
|
|
171
|
+
- { source_kind: project_config_signal, text: synthetic-review-18 }
|
|
172
|
+
provenance: *synthetic_record_provenance
|
|
173
|
+
- id: review-19
|
|
174
|
+
term: synthetic-review-19
|
|
175
|
+
sources:
|
|
176
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-19 explicit." }
|
|
177
|
+
- { source_kind: project_config_signal, text: synthetic-review-19 }
|
|
178
|
+
provenance: *synthetic_record_provenance
|
|
179
|
+
- id: review-20
|
|
180
|
+
term: synthetic-review-20
|
|
181
|
+
sources:
|
|
182
|
+
- { source_kind: instruction_document, text: "Do not use synthetic-review-20; it is a deprecated compatibility marker." }
|
|
183
|
+
- { source_kind: project_config_signal, text: "synthetic-review-20 is deprecated; remove this compatibility marker." }
|
|
184
|
+
provenance: *synthetic_record_provenance
|
|
185
|
+
- id: review-21
|
|
186
|
+
term: synthetic-review-21
|
|
187
|
+
sources:
|
|
188
|
+
- { source_kind: instruction_document, text: "Keep synthetic-review-21 explicit." }
|
|
189
|
+
provenance: *synthetic_record_provenance
|
|
190
|
+
|
|
191
|
+
explicit_admission:
|
|
192
|
+
- { id: admission-01, text: "Actually, `admission term 001` means a synthetic automatic meaning 001.", provenance: *synthetic_record_provenance }
|
|
193
|
+
- { id: admission-02, text: "Actually, `admission term 002` means a synthetic automatic meaning 002.", provenance: *synthetic_record_provenance }
|
|
194
|
+
- { id: admission-03, text: "Actually, `admission term 003` means a synthetic automatic meaning 003.", provenance: *synthetic_record_provenance }
|
|
195
|
+
- { id: admission-04, text: "Actually, `admission term 004` means a synthetic automatic meaning 004.", provenance: *synthetic_record_provenance }
|
|
196
|
+
- { id: admission-05, text: "Actually, `admission term 005` means a synthetic automatic meaning 005.", provenance: *synthetic_record_provenance }
|
|
197
|
+
- { id: admission-06, text: "Actually, `admission term 006` means a synthetic automatic meaning 006.", provenance: *synthetic_record_provenance }
|
|
198
|
+
- { id: admission-07, text: "Actually, `admission term 007` means a synthetic automatic meaning 007.", provenance: *synthetic_record_provenance }
|
|
199
|
+
- { id: admission-08, text: "Actually, `admission term 008` means a synthetic automatic meaning 008.", provenance: *synthetic_record_provenance }
|
|
200
|
+
- { id: admission-09, text: "Actually, `admission term 009` means a synthetic automatic meaning 009.", provenance: *synthetic_record_provenance }
|
|
201
|
+
- { id: admission-10, text: "Actually, `admission term 010` means a synthetic automatic meaning 010.", provenance: *synthetic_record_provenance }
|
|
202
|
+
- { id: admission-11, text: "Actually, `admission term 011` means a synthetic automatic meaning 011.", provenance: *synthetic_record_provenance }
|
|
203
|
+
- { id: admission-12, text: "Actually, `admission term 012` means a synthetic automatic meaning 012.", provenance: *synthetic_record_provenance }
|
|
204
|
+
- { id: admission-13, text: "Actually, `admission term 013` means a synthetic automatic meaning 013.", provenance: *synthetic_record_provenance }
|
|
205
|
+
- { id: admission-14, text: "Actually, `admission term 014` means a synthetic automatic meaning 014.", provenance: *synthetic_record_provenance }
|
|
206
|
+
- { id: admission-15, text: "Actually, `admission term 015` means a synthetic automatic meaning 015.", provenance: *synthetic_record_provenance }
|
|
207
|
+
- { id: admission-16, text: "Actually, `admission term 016` means a synthetic automatic meaning 016.", provenance: *synthetic_record_provenance }
|
|
208
|
+
- { id: admission-17, text: "Actually, `admission term 017` means a synthetic automatic meaning 017.", provenance: *synthetic_record_provenance }
|
|
209
|
+
- { id: admission-18, text: "Actually, `admission term 018` means a synthetic automatic meaning 018.", provenance: *synthetic_record_provenance }
|
|
210
|
+
- { id: admission-19, text: "Actually, `admission term 019` means a synthetic automatic meaning 019.", provenance: *synthetic_record_provenance }
|
|
211
|
+
- { id: admission-20, text: "Actually, `admission term 020` means a synthetic automatic meaning 020.", provenance: *synthetic_record_provenance }
|
|
212
|
+
- { id: admission-21, text: "Actually, `admission term 021` means a synthetic automatic meaning 021.", provenance: *synthetic_record_provenance }
|
|
213
|
+
- { id: admission-22, text: "Actually, `admission term 022` means a synthetic automatic meaning 022.", provenance: *synthetic_record_provenance }
|
|
214
|
+
- { id: admission-23, text: "Actually, `admission term 023` means a synthetic automatic meaning 023.", provenance: *synthetic_record_provenance }
|
|
215
|
+
- { id: admission-24, text: "Actually, `admission term 024` means a synthetic automatic meaning 024.", provenance: *synthetic_record_provenance }
|
|
216
|
+
- { id: admission-25, text: "Actually, `admission term 025` means a synthetic automatic meaning 025.", provenance: *synthetic_record_provenance }
|
|
217
|
+
- { id: admission-26, text: "Actually, `admission term 026` means a synthetic automatic meaning 026.", provenance: *synthetic_record_provenance }
|
|
218
|
+
- { id: admission-27, text: "Actually, `admission term 027` means a synthetic automatic meaning 027.", provenance: *synthetic_record_provenance }
|
|
219
|
+
- { id: admission-28, text: "Actually, `admission term 028` means a synthetic automatic meaning 028.", provenance: *synthetic_record_provenance }
|
|
220
|
+
- { id: admission-29, text: "Actually, `admission term 029` means a synthetic automatic meaning 029.", provenance: *synthetic_record_provenance }
|
|
221
|
+
- { id: admission-30, text: "Actually, `admission term 030` means a synthetic automatic meaning 030.", provenance: *synthetic_record_provenance }
|
|
222
|
+
- { id: admission-31, text: "Actually, `admission term 031` means a synthetic automatic meaning 031.", provenance: *synthetic_record_provenance }
|
|
223
|
+
- { id: admission-32, text: "Actually, `admission term 032` means a synthetic automatic meaning 032.", provenance: *synthetic_record_provenance }
|
|
224
|
+
- { id: admission-33, text: "Actually, `admission term 033` means a synthetic automatic meaning 033.", provenance: *synthetic_record_provenance }
|
|
225
|
+
- { id: admission-34, text: "Actually, `admission term 034` means a synthetic automatic meaning 034.", provenance: *synthetic_record_provenance }
|
|
226
|
+
- { id: admission-35, text: "Actually, `admission term 035` means a synthetic automatic meaning 035.", provenance: *synthetic_record_provenance }
|
|
227
|
+
- { id: admission-36, text: "Actually, `admission term 036` means a synthetic automatic meaning 036.", provenance: *synthetic_record_provenance }
|
|
228
|
+
- { id: admission-37, text: "Actually, `admission term 037` means a synthetic automatic meaning 037.", provenance: *synthetic_record_provenance }
|
|
229
|
+
- { id: admission-38, text: "Actually, `admission term 038` means a synthetic automatic meaning 038.", provenance: *synthetic_record_provenance }
|
|
230
|
+
- { id: admission-39, text: "Actually, `admission term 039` means a synthetic automatic meaning 039.", provenance: *synthetic_record_provenance }
|
|
231
|
+
- { id: admission-40, text: "Actually, `admission term 040` means a synthetic automatic meaning 040.", provenance: *synthetic_record_provenance }
|
|
232
|
+
- { id: admission-41, text: "Actually, `admission term 041` means a synthetic automatic meaning 041.", provenance: *synthetic_record_provenance }
|
|
233
|
+
- { id: admission-42, text: "Actually, `admission term 042` means a synthetic automatic meaning 042.", provenance: *synthetic_record_provenance }
|
|
234
|
+
- { id: admission-43, text: "Actually, `admission term 043` means a synthetic automatic meaning 043.", provenance: *synthetic_record_provenance }
|
|
235
|
+
- { id: admission-44, text: "Actually, `admission term 044` means a synthetic automatic meaning 044.", provenance: *synthetic_record_provenance }
|
|
236
|
+
- { id: admission-45, text: "Actually, `admission term 045` means a synthetic automatic meaning 045.", provenance: *synthetic_record_provenance }
|
|
237
|
+
- { id: admission-46, text: "Actually, `admission term 046` means a synthetic automatic meaning 046.", provenance: *synthetic_record_provenance }
|
|
238
|
+
- { id: admission-47, text: "Actually, `admission term 047` means a synthetic automatic meaning 047.", provenance: *synthetic_record_provenance }
|
|
239
|
+
- { id: admission-48, text: "Actually, `admission term 048` means a synthetic automatic meaning 048.", provenance: *synthetic_record_provenance }
|
|
240
|
+
- { id: admission-49, text: "Actually, `admission term 049` means a synthetic automatic meaning 049.", provenance: *synthetic_record_provenance }
|
|
241
|
+
- { id: admission-50, text: "Actually, `admission term 050` means a synthetic automatic meaning 050.", provenance: *synthetic_record_provenance }
|
|
242
|
+
- { id: admission-51, text: "Actually, `admission term 051` means a synthetic automatic meaning 051.", provenance: *synthetic_record_provenance }
|
|
243
|
+
- { id: admission-52, text: "Actually, `admission term 052` means a synthetic automatic meaning 052.", provenance: *synthetic_record_provenance }
|
|
244
|
+
- { id: admission-53, text: "Actually, `admission term 053` means a synthetic automatic meaning 053.", provenance: *synthetic_record_provenance }
|
|
245
|
+
- { id: admission-54, text: "Actually, `admission term 054` means a synthetic automatic meaning 054.", provenance: *synthetic_record_provenance }
|
|
246
|
+
- { id: admission-55, text: "Actually, `admission term 055` means a synthetic automatic meaning 055.", provenance: *synthetic_record_provenance }
|
|
247
|
+
- { id: admission-56, text: "Actually, `admission term 056` means a synthetic automatic meaning 056.", provenance: *synthetic_record_provenance }
|
|
248
|
+
- { id: admission-57, text: "Actually, `admission term 057` means a synthetic automatic meaning 057.", provenance: *synthetic_record_provenance }
|
|
249
|
+
- { id: admission-58, text: "Actually, `admission term 058` means a synthetic automatic meaning 058.", provenance: *synthetic_record_provenance }
|
|
250
|
+
- { id: admission-59, text: "Actually, `admission term 059` means a synthetic automatic meaning 059.", provenance: *synthetic_record_provenance }
|
|
251
|
+
- { id: admission-60, text: "Actually, `admission term 060` means a synthetic automatic meaning 060.", provenance: *synthetic_record_provenance }
|
|
252
|
+
- { id: admission-61, text: "Actually, `admission term 061` means a synthetic automatic meaning 061.", provenance: *synthetic_record_provenance }
|
|
253
|
+
- { id: admission-62, text: "Actually, `admission term 062` means a synthetic automatic meaning 062.", provenance: *synthetic_record_provenance }
|
|
254
|
+
- { id: admission-63, text: "Actually, `admission term 063` means a synthetic automatic meaning 063.", provenance: *synthetic_record_provenance }
|
|
255
|
+
- { id: admission-64, text: "Actually, `admission term 064` means a synthetic automatic meaning 064.", provenance: *synthetic_record_provenance }
|
|
256
|
+
- { id: admission-65, text: "Actually, `admission term 065` means a synthetic automatic meaning 065.", provenance: *synthetic_record_provenance }
|
|
257
|
+
- { id: admission-66, text: "Actually, `admission term 066` means a synthetic automatic meaning 066.", provenance: *synthetic_record_provenance }
|
|
258
|
+
- { id: admission-67, text: "Actually, `admission term 067` means a synthetic automatic meaning 067.", provenance: *synthetic_record_provenance }
|
|
259
|
+
- { id: admission-68, text: "Actually, `admission term 068` means a synthetic automatic meaning 068.", provenance: *synthetic_record_provenance }
|
|
260
|
+
- { id: admission-69, text: "Actually, `admission term 069` means a synthetic automatic meaning 069.", provenance: *synthetic_record_provenance }
|
|
261
|
+
- { id: admission-70, text: "Actually, `admission term 070` means a synthetic automatic meaning 070.", provenance: *synthetic_record_provenance }
|
|
262
|
+
- { id: admission-71, text: "Actually, `admission term 071` means a synthetic automatic meaning 071.", provenance: *synthetic_record_provenance }
|
|
263
|
+
- { id: admission-72, text: "Actually, `admission term 072` means a synthetic automatic meaning 072.", provenance: *synthetic_record_provenance }
|
|
264
|
+
- { id: admission-73, text: "Actually, `admission term 073` means a synthetic automatic meaning 073.", provenance: *synthetic_record_provenance }
|
|
265
|
+
- { id: admission-74, text: "Actually, `admission term 074` means a synthetic automatic meaning 074.", provenance: *synthetic_record_provenance }
|
|
266
|
+
- { id: admission-75, text: "Actually, `admission term 075` means a synthetic automatic meaning 075.", provenance: *synthetic_record_provenance }
|
|
267
|
+
- { id: admission-76, text: "Actually, `admission term 076` means a synthetic automatic meaning 076.", provenance: *synthetic_record_provenance }
|
|
268
|
+
- { id: admission-77, text: "Actually, `admission term 077` means a synthetic automatic meaning 077.", provenance: *synthetic_record_provenance }
|
|
269
|
+
- { id: admission-78, text: "Actually, `admission term 078` means a synthetic automatic meaning 078.", provenance: *synthetic_record_provenance }
|
|
270
|
+
- { id: admission-79, text: "Actually, `admission term 079` means a synthetic automatic meaning 079.", provenance: *synthetic_record_provenance }
|
|
271
|
+
- { id: admission-80, text: "Actually, `admission term 080` means a synthetic automatic meaning 080.", provenance: *synthetic_record_provenance }
|
|
272
|
+
- { id: admission-81, text: "Actually, `admission term 081` means a synthetic automatic meaning 081.", provenance: *synthetic_record_provenance }
|
|
273
|
+
- { id: admission-82, text: "Actually, `admission term 082` means a synthetic automatic meaning 082.", provenance: *synthetic_record_provenance }
|
|
274
|
+
- { id: admission-83, text: "Actually, `admission term 083` means a synthetic automatic meaning 083.", provenance: *synthetic_record_provenance }
|
|
275
|
+
- { id: admission-84, text: "Actually, `admission term 084` means a synthetic automatic meaning 084.", provenance: *synthetic_record_provenance }
|
|
276
|
+
- { id: admission-85, text: "Actually, `admission term 085` means a synthetic automatic meaning 085.", provenance: *synthetic_record_provenance }
|
|
277
|
+
- { id: admission-86, text: "Actually, `admission term 086` means a synthetic automatic meaning 086.", provenance: *synthetic_record_provenance }
|
|
278
|
+
- { id: admission-87, text: "Actually, `admission term 087` means a synthetic automatic meaning 087.", provenance: *synthetic_record_provenance }
|
|
279
|
+
- { id: admission-88, text: "Actually, `admission term 088` means a synthetic automatic meaning 088.", provenance: *synthetic_record_provenance }
|
|
280
|
+
- { id: admission-89, text: "Actually, `admission term 089` means a synthetic automatic meaning 089.", provenance: *synthetic_record_provenance }
|
|
281
|
+
- { id: admission-90, text: "Actually, `admission term 090` means a synthetic automatic meaning 090.", provenance: *synthetic_record_provenance }
|
|
282
|
+
- { id: admission-91, text: "Actually, `admission term 091` means a synthetic automatic meaning 091.", provenance: *synthetic_record_provenance }
|
|
283
|
+
- { id: admission-92, text: "Actually, `admission term 092` means a synthetic automatic meaning 092.", provenance: *synthetic_record_provenance }
|
|
284
|
+
- { id: admission-93, text: "Actually, `admission term 093` means a synthetic automatic meaning 093.", provenance: *synthetic_record_provenance }
|
|
285
|
+
- { id: admission-94, text: "Actually, `admission term 094` means a synthetic automatic meaning 094.", provenance: *synthetic_record_provenance }
|
|
286
|
+
- { id: admission-95, text: "Actually, `admission term 095` means a synthetic automatic meaning 095.", provenance: *synthetic_record_provenance }
|
|
287
|
+
- { id: admission-96, text: "Actually, `admission term 096` means a synthetic automatic meaning 096.", provenance: *synthetic_record_provenance }
|
|
288
|
+
- { id: admission-97, text: "Actually, `admission term 097` means a synthetic automatic meaning 097.", provenance: *synthetic_record_provenance }
|
|
289
|
+
- { id: admission-98, text: "Actually, `admission term 098` means a synthetic automatic meaning 098.", provenance: *synthetic_record_provenance }
|
|
290
|
+
- { id: admission-99, text: "Actually, `admission term 099` means a synthetic automatic meaning 099.", provenance: *synthetic_record_provenance }
|
|
291
|
+
- { id: admission-100, text: "Actually, `admission term 100` means a legacy compatibility marker. Please exclude this legacy alias from any personal glossary.", provenance: *synthetic_record_provenance }
|