@fulmenhq/tsfulmen 0.2.0 → 0.2.2

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.
Files changed (107) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/README.md +60 -7
  3. package/config/crucible-ts/agentic/roles/README.md +3 -3
  4. package/config/crucible-ts/library/fulencode/fixtures/README.md +18 -0
  5. package/config/crucible-ts/library/fulencode/fixtures/bom/bom.yaml +14 -0
  6. package/config/crucible-ts/library/fulencode/fixtures/detection/detection.yaml +12 -0
  7. package/config/crucible-ts/library/fulencode/fixtures/invalid-encodings/base64.yaml +10 -0
  8. package/config/crucible-ts/library/fulencode/fixtures/normalization/text-safe.yaml +10 -0
  9. package/config/crucible-ts/library/fulencode/fixtures/telemetry/telemetry-test-cases.yaml +24 -0
  10. package/config/crucible-ts/library/fulencode/fixtures/valid-encodings/base64.yaml +11 -0
  11. package/config/crucible-ts/taxonomy/library/platform-modules/v1.0.0/modules.yaml +2 -2
  12. package/config/crucible-ts/taxonomy/metrics.yaml +79 -1
  13. package/dist/appidentity/index.d.ts +1 -1
  14. package/dist/appidentity/index.js +122 -56
  15. package/dist/appidentity/index.js.map +1 -1
  16. package/dist/config/index.js +122 -56
  17. package/dist/config/index.js.map +1 -1
  18. package/dist/crucible/index.js +122 -56
  19. package/dist/crucible/index.js.map +1 -1
  20. package/dist/errors/index.d.ts +1 -1
  21. package/dist/errors/index.js +122 -56
  22. package/dist/errors/index.js.map +1 -1
  23. package/dist/foundry/index.js +122 -56
  24. package/dist/foundry/index.js.map +1 -1
  25. package/dist/fulencode/index.d.ts +102 -0
  26. package/dist/fulencode/index.js +806 -0
  27. package/dist/fulencode/index.js.map +1 -0
  28. package/dist/index.d.ts +2 -2
  29. package/dist/index.js +123 -57
  30. package/dist/index.js.map +1 -1
  31. package/dist/pathfinder/index.d.ts +1 -1
  32. package/dist/pathfinder/index.js +122 -56
  33. package/dist/pathfinder/index.js.map +1 -1
  34. package/dist/reports/license-inventory.csv +7 -6
  35. package/dist/schema/index.d.ts +2 -2
  36. package/dist/schema/index.js +122 -56
  37. package/dist/schema/index.js.map +1 -1
  38. package/dist/signals/index.js +122 -56
  39. package/dist/signals/index.js.map +1 -1
  40. package/dist/telemetry/http/index.js +122 -56
  41. package/dist/telemetry/http/index.js.map +1 -1
  42. package/dist/telemetry/index.d.ts +1 -1
  43. package/dist/telemetry/index.js +122 -56
  44. package/dist/telemetry/index.js.map +1 -1
  45. package/dist/telemetry/prometheus/index.d.ts +1 -1
  46. package/dist/telemetry/prometheus/index.js +122 -56
  47. package/dist/telemetry/prometheus/index.js.map +1 -1
  48. package/dist/{types-BJswWpQC.d.ts → types-DdoeE7F5.d.ts} +1 -1
  49. package/package.json +7 -2
  50. package/schemas/crucible-ts/library/fulencode/v1.0.0/README.md +37 -0
  51. package/schemas/crucible-ts/library/fulencode/v1.0.0/bom-result.schema.json +48 -0
  52. package/schemas/crucible-ts/library/fulencode/v1.0.0/decode-options.schema.json +60 -0
  53. package/schemas/crucible-ts/library/fulencode/v1.0.0/decoding-result.schema.json +70 -0
  54. package/schemas/crucible-ts/library/fulencode/v1.0.0/detect-options.schema.json +25 -0
  55. package/schemas/crucible-ts/library/fulencode/v1.0.0/detection-result.schema.json +57 -0
  56. package/schemas/crucible-ts/library/fulencode/v1.0.0/encode-options.schema.json +71 -0
  57. package/schemas/crucible-ts/library/fulencode/v1.0.0/encoding-result.schema.json +57 -0
  58. package/schemas/crucible-ts/library/fulencode/v1.0.0/fulencode-config.schema.json +8 -4
  59. package/schemas/crucible-ts/library/fulencode/v1.0.0/fulencode-error.schema.json +66 -0
  60. package/schemas/crucible-ts/library/fulencode/v1.0.0/normalization-result.schema.json +73 -0
  61. package/schemas/crucible-ts/library/fulencode/v1.0.0/normalize-options.schema.json +44 -0
  62. package/schemas/crucible-ts/meta/README.md +38 -2
  63. package/schemas/crucible-ts/meta/draft-04/schema.json +222 -0
  64. package/schemas/crucible-ts/meta/draft-06/schema.json +218 -0
  65. package/schemas/crucible-ts/meta/draft-2019-09/meta/applicator.json +93 -0
  66. package/schemas/crucible-ts/meta/draft-2019-09/meta/content.json +21 -0
  67. package/schemas/crucible-ts/meta/draft-2019-09/meta/core.json +58 -0
  68. package/schemas/crucible-ts/meta/draft-2019-09/meta/format.json +15 -0
  69. package/schemas/crucible-ts/meta/draft-2019-09/meta/meta-data.json +35 -0
  70. package/schemas/crucible-ts/meta/draft-2019-09/meta/validation.json +119 -0
  71. package/schemas/crucible-ts/meta/draft-2019-09/offline.schema.json +148 -0
  72. package/schemas/crucible-ts/meta/draft-2019-09/schema.json +62 -0
  73. package/schemas/crucible-ts/meta/fixtures/draft-04-sample.json +16 -0
  74. package/schemas/crucible-ts/meta/fixtures/draft-06-sample.json +16 -0
  75. package/schemas/crucible-ts/meta/fixtures/draft-07-sample.json +34 -0
  76. package/schemas/crucible-ts/meta/fixtures/draft-2019-09-sample.json +21 -0
  77. package/schemas/crucible-ts/meta/fixtures/draft-2020-12-sample.json +21 -0
  78. package/schemas/crucible-ts/taxonomy/library/fulencode/normalization-profiles/v1.0.0/profiles.yaml +16 -0
  79. package/schemas/crucible-ts/upstream/3leaps/crucible/PROVENANCE.md +64 -0
  80. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/access-tier.dimension.json +103 -0
  81. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/retention-lifecycle.dimension.json +103 -0
  82. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/schema-stability.dimension.json +100 -0
  83. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/sensitivity.dimension.json +130 -0
  84. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/velocity-mode.dimension.json +79 -0
  85. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/volatility.dimension.json +72 -0
  86. package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/volume-tier.dimension.json +66 -0
  87. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/catalog/classifiers/README.md +29 -0
  88. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/access-tier-classification.md +163 -0
  89. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/classifiers-framework.md +157 -0
  90. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/data-sensitivity-classification.md +259 -0
  91. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/retention-lifecycle-classification.md +200 -0
  92. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/schema-stability-classification.md +205 -0
  93. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/velocity-mode-classification.md +222 -0
  94. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/volatility-classification.md +209 -0
  95. package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/volume-tier-classification.md +200 -0
  96. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/ailink/v0/README.md +48 -0
  97. package/schemas/crucible-ts/upstream/3leaps/{ailink → crucible/schemas/ailink}/v0/prompt.schema.json +4 -18
  98. package/schemas/crucible-ts/upstream/3leaps/{ailink → crucible/schemas/ailink}/v0/search-response.schema.json +7 -37
  99. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/classifiers/v0/dimension-definition.schema.json +247 -0
  100. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/classifiers/v0/sensitivity-level.schema.json +67 -0
  101. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/error-response.schema.json +59 -0
  102. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/lifecycle-phases.data.json +102 -0
  103. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/lifecycle-phases.schema.json +101 -0
  104. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/release-phase.schema.json +18 -0
  105. package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/types.schema.json +177 -0
  106. package/schemas/crucible-ts/upstream/3leaps/PROVENANCE.md +0 -43
  107. /package/schemas/crucible-ts/upstream/3leaps/{agentic → crucible/schemas/agentic}/v0/role-prompt.schema.json +0 -0
@@ -0,0 +1,103 @@
1
+ {
2
+ "$schema": "https://schemas.3leaps.dev/classifiers/v0/dimension-definition.schema.json",
3
+ "key": "access-tier",
4
+ "name": "Access Tier",
5
+ "version": "1.0.0",
6
+ "status": "stable",
7
+ "type": "categorical",
8
+ "cardinality": "single",
9
+ "description": "Distribution and access control classification. Often derived from sensitivity but can be overridden to further restrict distribution. Used for ACL policies, publishing gates, and data sharing decisions.",
10
+ "categorical": {
11
+ "values": [
12
+ {
13
+ "key": "unknown",
14
+ "label": "Unknown",
15
+ "description": "Access tier not yet classified; must be classified before sharing or distribution.",
16
+ "order": 0,
17
+ "is_none": false,
18
+ "synonyms": ["unclassified"]
19
+ },
20
+ {
21
+ "key": "public",
22
+ "label": "Public",
23
+ "description": "Unrestricted access; suitable for public distribution.",
24
+ "order": 1,
25
+ "is_none": true,
26
+ "synonyms": ["open"]
27
+ },
28
+ {
29
+ "key": "internal",
30
+ "label": "Internal",
31
+ "description": "Organization-wide access; authentication required.",
32
+ "order": 2,
33
+ "is_none": false,
34
+ "synonyms": ["org-wide"]
35
+ },
36
+ {
37
+ "key": "restricted",
38
+ "label": "Restricted",
39
+ "description": "Team or project-level access; explicit authorization required.",
40
+ "order": 3,
41
+ "is_none": false,
42
+ "synonyms": ["team-only"]
43
+ },
44
+ {
45
+ "key": "privileged",
46
+ "label": "Privileged",
47
+ "description": "Named individuals only; documented business need.",
48
+ "order": 4,
49
+ "is_none": false,
50
+ "synonyms": ["need-to-know"]
51
+ },
52
+ {
53
+ "key": "eyes-only",
54
+ "label": "Eyes Only",
55
+ "description": "Executive/legal authorization required; immutable audit trail.",
56
+ "order": 5,
57
+ "is_none": false,
58
+ "synonyms": ["legal-only", "exec-only"]
59
+ }
60
+ ],
61
+ "index_strategy": {
62
+ "default_order": ["unknown", "public", "internal", "restricted", "privileged", "eyes-only"],
63
+ "ordinal_mapping": {
64
+ "unknown": 0,
65
+ "public": 1,
66
+ "internal": 2,
67
+ "restricted": 3,
68
+ "privileged": 4,
69
+ "eyes-only": 5
70
+ },
71
+ "missing_handling": "error",
72
+ "sentinel": 0
73
+ }
74
+ },
75
+ "transitions": {
76
+ "downgrade": [
77
+ "eyes-only->privileged (legal release required)",
78
+ "privileged->restricted (documented approval)",
79
+ "restricted->internal (access review)",
80
+ "internal->public (publication review)"
81
+ ],
82
+ "upgrade": [
83
+ "public->internal (restriction applied)",
84
+ "internal->restricted (access tightening)",
85
+ "restricted->privileged (need-to-know imposed)",
86
+ "any->eyes-only (legal hold or exec order)"
87
+ ]
88
+ },
89
+ "governance": {
90
+ "owner": "3leaps-core",
91
+ "reviewers": ["security", "compliance"],
92
+ "review_cycle": "quarterly",
93
+ "last_updated": "2026-01-22"
94
+ },
95
+ "examples": [
96
+ { "dataset": "unreviewed-upload", "value": "unknown" },
97
+ { "dataset": "public-api-docs", "value": "public" },
98
+ { "dataset": "internal-runbooks", "value": "internal" },
99
+ { "dataset": "project-roadmap", "value": "restricted" },
100
+ { "dataset": "security-audit-findings", "value": "privileged" },
101
+ { "dataset": "legal-discovery-materials", "value": "eyes-only" }
102
+ ]
103
+ }
@@ -0,0 +1,103 @@
1
+ {
2
+ "$schema": "https://schemas.3leaps.dev/classifiers/v0/dimension-definition.schema.json",
3
+ "key": "retention-lifecycle",
4
+ "name": "Retention & Lifecycle",
5
+ "version": "1.0.0",
6
+ "status": "stable",
7
+ "type": "categorical",
8
+ "cardinality": "single",
9
+ "description": "Data retention period classification for deletion SLAs, archival policies, and compliance requirements. Governs storage lifecycle, backup retention, and legal hold procedures.",
10
+ "categorical": {
11
+ "values": [
12
+ {
13
+ "key": "unknown",
14
+ "label": "Unknown",
15
+ "description": "Retention not yet classified; must be classified before storage provisioning.",
16
+ "order": 0,
17
+ "is_none": false,
18
+ "synonyms": ["unclassified"]
19
+ },
20
+ {
21
+ "key": "transient",
22
+ "label": "Transient",
23
+ "description": "Short-lived data (≤7 days); auto-deleted, no backup required.",
24
+ "order": 1,
25
+ "is_none": false,
26
+ "synonyms": ["ephemeral", "temp"]
27
+ },
28
+ {
29
+ "key": "short",
30
+ "label": "Short",
31
+ "description": "Short retention (≤90 days); routine cleanup, basic backup.",
32
+ "order": 2,
33
+ "is_none": false,
34
+ "synonyms": ["short-term"]
35
+ },
36
+ {
37
+ "key": "standard",
38
+ "label": "Standard",
39
+ "description": "Standard retention (≤2 years); regular backup, tiered storage.",
40
+ "order": 3,
41
+ "is_none": true,
42
+ "synonyms": ["default"]
43
+ },
44
+ {
45
+ "key": "long",
46
+ "label": "Long",
47
+ "description": "Long retention (>2 years); archive storage, compliance backup.",
48
+ "order": 4,
49
+ "is_none": false,
50
+ "synonyms": ["long-term", "archive"]
51
+ },
52
+ {
53
+ "key": "legal-hold",
54
+ "label": "Legal Hold",
55
+ "description": "Indefinite retention; immutable, protected from deletion, chain of custody.",
56
+ "order": 5,
57
+ "is_none": false,
58
+ "synonyms": ["litigation-hold", "preservation"]
59
+ }
60
+ ],
61
+ "index_strategy": {
62
+ "default_order": ["unknown", "transient", "short", "standard", "long", "legal-hold"],
63
+ "ordinal_mapping": {
64
+ "unknown": 0,
65
+ "transient": 1,
66
+ "short": 2,
67
+ "standard": 3,
68
+ "long": 4,
69
+ "legal-hold": 5
70
+ },
71
+ "missing_handling": "error",
72
+ "sentinel": 0
73
+ }
74
+ },
75
+ "transitions": {
76
+ "downgrade": [
77
+ "legal-hold->long (legal release authorization)",
78
+ "long->standard (retention review)",
79
+ "standard->short (documented approval)",
80
+ "short->transient (explicit deletion policy)"
81
+ ],
82
+ "upgrade": [
83
+ "any->legal-hold (legal order or investigation)",
84
+ "transient->short (retention extension)",
85
+ "short->standard (compliance requirement)",
86
+ "standard->long (regulatory or archival need)"
87
+ ]
88
+ },
89
+ "governance": {
90
+ "owner": "3leaps-core",
91
+ "reviewers": ["compliance", "legal"],
92
+ "review_cycle": "semiannual",
93
+ "last_updated": "2026-01-22"
94
+ },
95
+ "examples": [
96
+ { "dataset": "new-data-source", "value": "unknown" },
97
+ { "dataset": "session-cache", "value": "transient" },
98
+ { "dataset": "debug-logs", "value": "short" },
99
+ { "dataset": "transaction-history", "value": "standard" },
100
+ { "dataset": "audit-records", "value": "long" },
101
+ { "dataset": "litigation-evidence", "value": "legal-hold" }
102
+ ]
103
+ }
@@ -0,0 +1,100 @@
1
+ {
2
+ "$schema": "https://schemas.3leaps.dev/classifiers/v0/dimension-definition.schema.json",
3
+ "key": "schema-stability",
4
+ "name": "Schema Stability",
5
+ "version": "1.0.0",
6
+ "status": "stable",
7
+ "type": "categorical",
8
+ "cardinality": "single",
9
+ "description": "Schema evolution and stability classification. Used to set expectations for backward compatibility, versioning cadence, and deprecation windows. Applies to APIs, data schemas, config formats, and protocol definitions.",
10
+ "categorical": {
11
+ "values": [
12
+ {
13
+ "key": "unknown",
14
+ "label": "Unknown",
15
+ "description": "Stability not yet classified; must be classified before consumers adopt.",
16
+ "order": 0,
17
+ "is_none": false,
18
+ "synonyms": ["unclassified"]
19
+ },
20
+ {
21
+ "key": "experimental",
22
+ "label": "Experimental",
23
+ "description": "No stability guarantees; may change without notice.",
24
+ "order": 1,
25
+ "is_none": false,
26
+ "synonyms": ["alpha", "unstable", "preview"]
27
+ },
28
+ {
29
+ "key": "evolving",
30
+ "label": "Evolving",
31
+ "description": "Active development; additive changes expected, breaking changes with notice.",
32
+ "order": 2,
33
+ "is_none": false,
34
+ "synonyms": ["beta", "developing"]
35
+ },
36
+ {
37
+ "key": "stable",
38
+ "label": "Stable",
39
+ "description": "Production-ready; breaking changes require major version bump and deprecation period.",
40
+ "order": 3,
41
+ "is_none": true,
42
+ "synonyms": ["ga", "production"]
43
+ },
44
+ {
45
+ "key": "frozen",
46
+ "label": "Frozen",
47
+ "description": "No changes expected; security patches only.",
48
+ "order": 4,
49
+ "is_none": false,
50
+ "synonyms": ["locked", "maintenance-only"]
51
+ },
52
+ {
53
+ "key": "deprecated",
54
+ "label": "Deprecated",
55
+ "description": "Scheduled for removal; migration path documented.",
56
+ "order": 5,
57
+ "is_none": false,
58
+ "synonyms": ["sunset", "legacy"]
59
+ }
60
+ ],
61
+ "index_strategy": {
62
+ "default_order": ["unknown", "experimental", "evolving", "stable", "frozen", "deprecated"],
63
+ "ordinal_mapping": {
64
+ "unknown": 0,
65
+ "experimental": 1,
66
+ "evolving": 2,
67
+ "stable": 3,
68
+ "frozen": 4,
69
+ "deprecated": 5
70
+ },
71
+ "missing_handling": "error",
72
+ "sentinel": 0
73
+ }
74
+ },
75
+ "transitions": {
76
+ "downgrade": [
77
+ "stable->evolving (breaking changes needed; major version bump)",
78
+ "frozen->stable (reactivation with new maintainer)"
79
+ ],
80
+ "upgrade": [
81
+ "experimental->evolving (initial users onboarded)",
82
+ "evolving->stable (GA release)",
83
+ "stable->frozen (maintenance mode)",
84
+ "any->deprecated (sunset decision)"
85
+ ]
86
+ },
87
+ "governance": {
88
+ "owner": "3leaps-core",
89
+ "reviewers": ["platform", "api-standards"],
90
+ "review_cycle": "quarterly",
91
+ "last_updated": "2026-01-22"
92
+ },
93
+ "examples": [
94
+ { "path": "schemas/new-feature/", "value": "unknown" },
95
+ { "path": "schemas/agentic/v0/", "value": "experimental" },
96
+ { "path": "schemas/foundation/v1/", "value": "stable" },
97
+ { "dataset": "api-v2-endpoints", "value": "evolving" },
98
+ { "dataset": "api-v1-endpoints", "value": "deprecated" }
99
+ ]
100
+ }
@@ -0,0 +1,130 @@
1
+ {
2
+ "$schema": "https://schemas.3leaps.dev/classifiers/v0/dimension-definition.schema.json",
3
+ "key": "sensitivity",
4
+ "name": "Data Sensitivity",
5
+ "version": "1.0.0",
6
+ "status": "stable",
7
+ "type": "categorical",
8
+ "cardinality": "single",
9
+ "description": "Realm-agnostic data sensitivity levels for classification, handling, access control, and publishing policy across all 3leaps ecosystems.",
10
+ "categorical": {
11
+ "values": [
12
+ {
13
+ "key": "unknown",
14
+ "label": "UNKNOWN",
15
+ "description": "Unclassified; isolate until classified within 24 hours.",
16
+ "order": 0,
17
+ "is_none": false,
18
+ "synonyms": []
19
+ },
20
+ {
21
+ "key": "0-public",
22
+ "label": "0 — Public",
23
+ "description": "Public domain or intended for public distribution.",
24
+ "order": 1,
25
+ "is_none": true,
26
+ "synonyms": ["public"]
27
+ },
28
+ {
29
+ "key": "1-confidential",
30
+ "label": "1 — Confidential",
31
+ "description": "Internal but non-sensitive; NDA-level, access logged.",
32
+ "order": 2,
33
+ "is_none": false,
34
+ "synonyms": ["internal"]
35
+ },
36
+ {
37
+ "key": "2-blinded",
38
+ "label": "2 — Blinded",
39
+ "description": "Identities/source obfuscated; verify blinding effectiveness.",
40
+ "order": 3,
41
+ "is_none": false,
42
+ "synonyms": ["anonymized", "de-identified"]
43
+ },
44
+ {
45
+ "key": "3-proprietary",
46
+ "label": "3 — Proprietary",
47
+ "description": "Enterprise-sensitive (MNPI, trade secrets); strict least-privilege.",
48
+ "order": 4,
49
+ "is_none": false,
50
+ "synonyms": []
51
+ },
52
+ {
53
+ "key": "4-personal",
54
+ "label": "4 — Personal/Secret",
55
+ "description": "NPPII or secrets; vault-managed only, real-time monitoring.",
56
+ "order": 5,
57
+ "is_none": false,
58
+ "synonyms": ["secret", "personal"]
59
+ },
60
+ {
61
+ "key": "5-privileged",
62
+ "label": "5 — Privileged/Sysadmin",
63
+ "description": "Platform control data; HSM/air-gapped isolation required.",
64
+ "order": 6,
65
+ "is_none": false,
66
+ "synonyms": ["privileged", "sysadmin"]
67
+ },
68
+ {
69
+ "key": "6-eyes-only",
70
+ "label": "6 — Eyes Only/Legal Hold",
71
+ "description": "Immutable storage, legal-controlled access, exec authorization.",
72
+ "order": 7,
73
+ "is_none": false,
74
+ "synonyms": ["legal-hold", "eyes-only"]
75
+ }
76
+ ],
77
+ "index_strategy": {
78
+ "default_order": [
79
+ "unknown",
80
+ "0-public",
81
+ "1-confidential",
82
+ "2-blinded",
83
+ "3-proprietary",
84
+ "4-personal",
85
+ "5-privileged",
86
+ "6-eyes-only"
87
+ ],
88
+ "ordinal_mapping": {
89
+ "unknown": 0,
90
+ "0-public": 1,
91
+ "1-confidential": 2,
92
+ "2-blinded": 3,
93
+ "3-proprietary": 4,
94
+ "4-personal": 5,
95
+ "5-privileged": 6,
96
+ "6-eyes-only": 7
97
+ },
98
+ "missing_handling": "error",
99
+ "sentinel": 0
100
+ }
101
+ },
102
+ "transitions": {
103
+ "downgrade": [
104
+ "4-personal->2-blinded (tokenization/masking/synthetic surrogates; verification required)",
105
+ "5-privileged->3-proprietary (with security review)",
106
+ "6-eyes-only->3-proprietary (legal release required)",
107
+ "2-blinded->1-confidential (statistical privacy checks)",
108
+ "1-confidential->0-public (publication review)"
109
+ ],
110
+ "upgrade": [
111
+ "unknown->1-confidential (default classification)",
112
+ "0-public->1-confidential (restriction applied)",
113
+ "any->4-personal (if secrets/PII discovered)",
114
+ "any->6-eyes-only (legal hold imposed)"
115
+ ]
116
+ },
117
+ "governance": {
118
+ "owner": "3leaps-core",
119
+ "reviewers": ["security", "compliance"],
120
+ "review_cycle": "quarterly",
121
+ "last_updated": "2026-01-22"
122
+ },
123
+ "examples": [
124
+ { "dataset": "retail-pos-transactions", "value": "0-public" },
125
+ { "dataset": "proxy-session-logs", "value": "2-blinded" },
126
+ { "dataset": "api-keys-inventory", "value": "4-personal" },
127
+ { "dataset": "credential-dumps", "value": "5-privileged" },
128
+ { "dataset": "security-breach-evidence", "value": "6-eyes-only" }
129
+ ]
130
+ }
@@ -0,0 +1,79 @@
1
+ {
2
+ "$schema": "https://schemas.3leaps.dev/classifiers/v0/dimension-definition.schema.json",
3
+ "key": "velocity-mode",
4
+ "name": "Velocity Mode",
5
+ "version": "1.0.0",
6
+ "status": "stable",
7
+ "type": "categorical",
8
+ "cardinality": "single",
9
+ "description": "Data processing velocity pattern classification. Determines pipeline topology, infrastructure requirements, and processing semantics.",
10
+ "categorical": {
11
+ "values": [
12
+ {
13
+ "key": "unknown",
14
+ "label": "Unknown",
15
+ "description": "Velocity mode not yet classified; must be classified before pipeline design.",
16
+ "order": 0,
17
+ "is_none": false,
18
+ "synonyms": ["unclassified"]
19
+ },
20
+ {
21
+ "key": "batch",
22
+ "label": "Batch",
23
+ "description": "Scheduled batch processing; data at rest, periodic execution.",
24
+ "order": 1,
25
+ "is_none": true,
26
+ "synonyms": ["scheduled", "periodic"]
27
+ },
28
+ {
29
+ "key": "micro-batch",
30
+ "label": "Micro-batch",
31
+ "description": "Frequent small batches (minutes); near-real-time with batch semantics.",
32
+ "order": 2,
33
+ "is_none": false,
34
+ "synonyms": ["mini-batch"]
35
+ },
36
+ {
37
+ "key": "streaming",
38
+ "label": "Streaming",
39
+ "description": "Event-driven continuous processing; data in motion, sub-second latency.",
40
+ "order": 3,
41
+ "is_none": false,
42
+ "synonyms": ["real-time", "continuous"]
43
+ },
44
+ {
45
+ "key": "hybrid",
46
+ "label": "Hybrid",
47
+ "description": "Combined batch and streaming; lambda/kappa architecture patterns.",
48
+ "order": 4,
49
+ "is_none": false,
50
+ "synonyms": ["lambda", "kappa"]
51
+ }
52
+ ],
53
+ "index_strategy": {
54
+ "default_order": ["unknown", "batch", "micro-batch", "streaming", "hybrid"],
55
+ "ordinal_mapping": {
56
+ "unknown": 0,
57
+ "batch": 1,
58
+ "micro-batch": 2,
59
+ "streaming": 3,
60
+ "hybrid": 4
61
+ },
62
+ "missing_handling": "error",
63
+ "sentinel": 0
64
+ }
65
+ },
66
+ "governance": {
67
+ "owner": "3leaps-core",
68
+ "reviewers": ["platform", "data-engineering"],
69
+ "review_cycle": "semiannual",
70
+ "last_updated": "2026-01-22"
71
+ },
72
+ "examples": [
73
+ { "dataset": "new-pipeline", "value": "unknown" },
74
+ { "dataset": "daily-etl-jobs", "value": "batch" },
75
+ { "dataset": "dashboard-metrics", "value": "micro-batch" },
76
+ { "dataset": "fraud-detection", "value": "streaming" },
77
+ { "dataset": "analytics-platform", "value": "hybrid" }
78
+ ]
79
+ }
@@ -0,0 +1,72 @@
1
+ {
2
+ "$schema": "https://schemas.3leaps.dev/classifiers/v0/dimension-definition.schema.json",
3
+ "key": "volatility",
4
+ "name": "Volatility & Update Cadence",
5
+ "version": "1.0.0",
6
+ "status": "stable",
7
+ "type": "sortable",
8
+ "cardinality": "single",
9
+ "description": "Ordered update cadence from static to streaming. Used to set freshness SLAs, scheduling, partitioning strategies, and caching policies across all 3leaps ecosystems.",
10
+ "sortable": {
11
+ "scale": "ordinal",
12
+ "order_direction": "asc",
13
+ "ordered_values": [
14
+ {
15
+ "key": "unknown",
16
+ "label": "Unknown",
17
+ "description": "Volatility not yet classified; must be classified before operational use.",
18
+ "order": 0
19
+ },
20
+ {
21
+ "key": "static",
22
+ "label": "Static",
23
+ "description": "No scheduled updates (one-time or ad-hoc).",
24
+ "order": 1
25
+ },
26
+ {
27
+ "key": "monthly",
28
+ "label": "Monthly",
29
+ "description": "Batch updates roughly monthly.",
30
+ "order": 2
31
+ },
32
+ {
33
+ "key": "weekly",
34
+ "label": "Weekly",
35
+ "description": "Batch updates roughly weekly.",
36
+ "order": 3
37
+ },
38
+ {
39
+ "key": "daily",
40
+ "label": "Daily",
41
+ "description": "Daily batches.",
42
+ "order": 4
43
+ },
44
+ {
45
+ "key": "hourly",
46
+ "label": "Hourly",
47
+ "description": "Sub-daily batches; hourly or more frequent.",
48
+ "order": 5
49
+ },
50
+ {
51
+ "key": "streaming",
52
+ "label": "Streaming",
53
+ "description": "Event-driven continuous updates (< minutes).",
54
+ "order": 6
55
+ }
56
+ ]
57
+ },
58
+ "governance": {
59
+ "owner": "3leaps-core",
60
+ "reviewers": ["platform", "data-engineering"],
61
+ "review_cycle": "semiannual",
62
+ "last_updated": "2026-01-22"
63
+ },
64
+ "examples": [
65
+ { "dataset": "newly-ingested-feed", "value": "unknown" },
66
+ { "dataset": "retail-pos-transactions", "value": "daily" },
67
+ { "dataset": "network-telemetry", "value": "streaming" },
68
+ { "dataset": "product-catalog", "value": "weekly" },
69
+ { "dataset": "agentic-role-definitions", "value": "static" },
70
+ { "dataset": "api-rate-limits", "value": "hourly" }
71
+ ]
72
+ }
@@ -0,0 +1,66 @@
1
+ {
2
+ "$schema": "https://schemas.3leaps.dev/classifiers/v0/dimension-definition.schema.json",
3
+ "key": "volume-tier",
4
+ "name": "Volume Tier",
5
+ "version": "1.0.0",
6
+ "status": "stable",
7
+ "type": "sortable",
8
+ "cardinality": "single",
9
+ "description": "Data volume classification for scale planning, partitioning strategies, file sizing, and benchmark profiles. Ordered from smallest to largest scale.",
10
+ "sortable": {
11
+ "scale": "ordinal",
12
+ "order_direction": "asc",
13
+ "ordered_values": [
14
+ {
15
+ "key": "unknown",
16
+ "label": "Unknown",
17
+ "description": "Volume not yet classified; must be classified before infrastructure provisioning.",
18
+ "order": 0
19
+ },
20
+ {
21
+ "key": "tiny",
22
+ "label": "Tiny",
23
+ "description": "Very small datasets (≤100K rows); single-file, in-memory processing.",
24
+ "order": 1
25
+ },
26
+ {
27
+ "key": "small",
28
+ "label": "Small",
29
+ "description": "Small datasets (≤10M rows); single-node processing, moderate file sizes.",
30
+ "order": 2
31
+ },
32
+ {
33
+ "key": "medium",
34
+ "label": "Medium",
35
+ "description": "Medium datasets (≤1B rows); partitioned storage, distributed processing beneficial.",
36
+ "order": 3
37
+ },
38
+ {
39
+ "key": "large",
40
+ "label": "Large",
41
+ "description": "Large datasets (≤100B rows); distributed processing required, columnar formats.",
42
+ "order": 4
43
+ },
44
+ {
45
+ "key": "massive",
46
+ "label": "Massive",
47
+ "description": "Massive datasets (>100B rows); specialized infrastructure, aggressive partitioning.",
48
+ "order": 5
49
+ }
50
+ ]
51
+ },
52
+ "governance": {
53
+ "owner": "3leaps-core",
54
+ "reviewers": ["platform", "data-engineering"],
55
+ "review_cycle": "semiannual",
56
+ "last_updated": "2026-01-22"
57
+ },
58
+ "examples": [
59
+ { "dataset": "new-data-feed", "value": "unknown" },
60
+ { "dataset": "test-fixtures", "value": "tiny" },
61
+ { "dataset": "product-catalog", "value": "small" },
62
+ { "dataset": "transaction-history", "value": "medium" },
63
+ { "dataset": "event-telemetry", "value": "large" },
64
+ { "dataset": "global-clickstream", "value": "massive" }
65
+ ]
66
+ }