zeropoint-node 1.0.0
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 +531 -0
- package/dist/src/__tests__/globalSetup.d.ts +13 -0
- package/dist/src/__tests__/globalSetup.d.ts.map +1 -0
- package/dist/src/__tests__/globalSetup.js +81 -0
- package/dist/src/__tests__/globalSetup.js.map +1 -0
- package/dist/src/__tests__/globalTeardown.d.ts +20 -0
- package/dist/src/__tests__/globalTeardown.d.ts.map +1 -0
- package/dist/src/__tests__/globalTeardown.js +88 -0
- package/dist/src/__tests__/globalTeardown.js.map +1 -0
- package/dist/src/__tests__/living/LivingTestOrganism.d.ts +64 -0
- package/dist/src/__tests__/living/LivingTestOrganism.d.ts.map +1 -0
- package/dist/src/__tests__/living/LivingTestOrganism.js +245 -0
- package/dist/src/__tests__/living/LivingTestOrganism.js.map +1 -0
- package/dist/src/__tests__/setup.d.ts +16 -0
- package/dist/src/__tests__/setup.d.ts.map +1 -0
- package/dist/src/__tests__/setup.js +123 -0
- package/dist/src/__tests__/setup.js.map +1 -0
- package/dist/src/__tests__/utils/errorSimulator.d.ts +18 -0
- package/dist/src/__tests__/utils/errorSimulator.d.ts.map +1 -0
- package/dist/src/__tests__/utils/errorSimulator.js +35 -0
- package/dist/src/__tests__/utils/errorSimulator.js.map +1 -0
- package/dist/src/__tests__/utils/goldenRatioCache.d.ts +11 -0
- package/dist/src/__tests__/utils/goldenRatioCache.d.ts.map +1 -0
- package/dist/src/__tests__/utils/goldenRatioCache.js +31 -0
- package/dist/src/__tests__/utils/goldenRatioCache.js.map +1 -0
- package/dist/src/api/ProductionAPI.d.ts +42 -0
- package/dist/src/api/ProductionAPI.d.ts.map +1 -0
- package/dist/src/api/ProductionAPI.js +320 -0
- package/dist/src/api/ProductionAPI.js.map +1 -0
- package/dist/src/consciousness/ConsciousnessField.d.ts +105 -0
- package/dist/src/consciousness/ConsciousnessField.d.ts.map +1 -0
- package/dist/src/consciousness/ConsciousnessField.js +301 -0
- package/dist/src/consciousness/ConsciousnessField.js.map +1 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts +99 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts.map +1 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.js +197 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.js.map +1 -0
- package/dist/src/core/AbstractField.d.ts +14 -0
- package/dist/src/core/AbstractField.d.ts.map +1 -0
- package/dist/src/core/AbstractField.js +31 -0
- package/dist/src/core/AbstractField.js.map +1 -0
- package/dist/src/core/CoilMixin.d.ts +52 -0
- package/dist/src/core/CoilMixin.d.ts.map +1 -0
- package/dist/src/core/CoilMixin.js +217 -0
- package/dist/src/core/CoilMixin.js.map +1 -0
- package/dist/src/core/CoilSystem.d.ts +38 -0
- package/dist/src/core/CoilSystem.d.ts.map +1 -0
- package/dist/src/core/CoilSystem.js +183 -0
- package/dist/src/core/CoilSystem.js.map +1 -0
- package/dist/src/core/MathUtils.d.ts +135 -0
- package/dist/src/core/MathUtils.d.ts.map +1 -0
- package/dist/src/core/MathUtils.js +298 -0
- package/dist/src/core/MathUtils.js.map +1 -0
- package/dist/src/core/NetworkNode.d.ts +86 -0
- package/dist/src/core/NetworkNode.d.ts.map +1 -0
- package/dist/src/core/NetworkNode.js +349 -0
- package/dist/src/core/NetworkNode.js.map +1 -0
- package/dist/src/core/Observer.d.ts +54 -0
- package/dist/src/core/Observer.d.ts.map +1 -0
- package/dist/src/core/Observer.js +102 -0
- package/dist/src/core/Observer.js.map +1 -0
- package/dist/src/core/PatternRecognition.d.ts +124 -0
- package/dist/src/core/PatternRecognition.d.ts.map +1 -0
- package/dist/src/core/PatternRecognition.js +420 -0
- package/dist/src/core/PatternRecognition.js.map +1 -0
- package/dist/src/core/SharedConstants.d.ts +138 -0
- package/dist/src/core/SharedConstants.d.ts.map +1 -0
- package/dist/src/core/SharedConstants.js +242 -0
- package/dist/src/core/SharedConstants.js.map +1 -0
- package/dist/src/core/UnifiedSystem.d.ts +276 -0
- package/dist/src/core/UnifiedSystem.d.ts.map +1 -0
- package/dist/src/core/UnifiedSystem.js +314 -0
- package/dist/src/core/UnifiedSystem.js.map +1 -0
- package/dist/src/core/UnifiedVoidEquations.d.ts +123 -0
- package/dist/src/core/UnifiedVoidEquations.d.ts.map +1 -0
- package/dist/src/core/UnifiedVoidEquations.js +522 -0
- package/dist/src/core/UnifiedVoidEquations.js.map +1 -0
- package/dist/src/core/ZeroPoint.d.ts +185 -0
- package/dist/src/core/ZeroPoint.d.ts.map +1 -0
- package/dist/src/core/ZeroPoint.js +559 -0
- package/dist/src/core/ZeroPoint.js.map +1 -0
- package/dist/src/emergence/AdvancedEmergence.d.ts +295 -0
- package/dist/src/emergence/AdvancedEmergence.d.ts.map +1 -0
- package/dist/src/emergence/AdvancedEmergence.js +895 -0
- package/dist/src/emergence/AdvancedEmergence.js.map +1 -0
- package/dist/src/emergence/patterns.d.ts +7 -0
- package/dist/src/emergence/patterns.d.ts.map +1 -0
- package/dist/src/emergence/patterns.js +13 -0
- package/dist/src/emergence/patterns.js.map +1 -0
- package/dist/src/field/EmergenceLedger.d.ts +111 -0
- package/dist/src/field/EmergenceLedger.d.ts.map +1 -0
- package/dist/src/field/EmergenceLedger.js +306 -0
- package/dist/src/field/EmergenceLedger.js.map +1 -0
- package/dist/src/field/ObserverAwareField.d.ts +118 -0
- package/dist/src/field/ObserverAwareField.d.ts.map +1 -0
- package/dist/src/field/ObserverAwareField.js +233 -0
- package/dist/src/field/ObserverAwareField.js.map +1 -0
- package/dist/src/field/ResonanceConsensus.d.ts +113 -0
- package/dist/src/field/ResonanceConsensus.d.ts.map +1 -0
- package/dist/src/field/ResonanceConsensus.js +322 -0
- package/dist/src/field/ResonanceConsensus.js.map +1 -0
- package/dist/src/index.d.ts +53 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +221 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/integrity/FieldIntegrity.d.ts +121 -0
- package/dist/src/integrity/FieldIntegrity.d.ts.map +1 -0
- package/dist/src/integrity/FieldIntegrity.js +240 -0
- package/dist/src/integrity/FieldIntegrity.js.map +1 -0
- package/dist/src/knowledge/KnowledgeSystem.d.ts +178 -0
- package/dist/src/knowledge/KnowledgeSystem.d.ts.map +1 -0
- package/dist/src/knowledge/KnowledgeSystem.js +915 -0
- package/dist/src/knowledge/KnowledgeSystem.js.map +1 -0
- package/dist/src/math/AdvancedVBM.d.ts +164 -0
- package/dist/src/math/AdvancedVBM.d.ts.map +1 -0
- package/dist/src/math/AdvancedVBM.js +712 -0
- package/dist/src/math/AdvancedVBM.js.map +1 -0
- package/dist/src/math/FractalColorSystem.d.ts +77 -0
- package/dist/src/math/FractalColorSystem.d.ts.map +1 -0
- package/dist/src/math/FractalColorSystem.js +235 -0
- package/dist/src/math/FractalColorSystem.js.map +1 -0
- package/dist/src/math/FractalMath.d.ts +80 -0
- package/dist/src/math/FractalMath.d.ts.map +1 -0
- package/dist/src/math/FractalMath.js +175 -0
- package/dist/src/math/FractalMath.js.map +1 -0
- package/dist/src/math/MathUtils.d.ts +135 -0
- package/dist/src/math/MathUtils.d.ts.map +1 -0
- package/dist/src/math/MathUtils.js +298 -0
- package/dist/src/math/MathUtils.js.map +1 -0
- package/dist/src/math/RodinCoil.d.ts +94 -0
- package/dist/src/math/RodinCoil.d.ts.map +1 -0
- package/dist/src/math/RodinCoil.js +259 -0
- package/dist/src/math/RodinCoil.js.map +1 -0
- package/dist/src/math/ToroidalGeometry.d.ts +132 -0
- package/dist/src/math/ToroidalGeometry.d.ts.map +1 -0
- package/dist/src/math/ToroidalGeometry.js +231 -0
- package/dist/src/math/ToroidalGeometry.js.map +1 -0
- package/dist/src/math/VBM.d.ts +207 -0
- package/dist/src/math/VBM.d.ts.map +1 -0
- package/dist/src/math/VBM.js +581 -0
- package/dist/src/math/VBM.js.map +1 -0
- package/dist/src/math/VBMColorSystem.d.ts +76 -0
- package/dist/src/math/VBMColorSystem.d.ts.map +1 -0
- package/dist/src/math/VBMColorSystem.js +302 -0
- package/dist/src/math/VBMColorSystem.js.map +1 -0
- package/dist/src/math/VortexMath.d.ts +95 -0
- package/dist/src/math/VortexMath.d.ts.map +1 -0
- package/dist/src/math/VortexMath.js +228 -0
- package/dist/src/math/VortexMath.js.map +1 -0
- package/dist/src/monitoring/HealthMonitor.d.ts +123 -0
- package/dist/src/monitoring/HealthMonitor.d.ts.map +1 -0
- package/dist/src/monitoring/HealthMonitor.js +296 -0
- package/dist/src/monitoring/HealthMonitor.js.map +1 -0
- package/dist/src/pwa/ConsciousnessPWA.d.ts +107 -0
- package/dist/src/pwa/ConsciousnessPWA.d.ts.map +1 -0
- package/dist/src/pwa/ConsciousnessPWA.js +288 -0
- package/dist/src/pwa/ConsciousnessPWA.js.map +1 -0
- package/dist/src/types/DeviceConfig.d.ts +39 -0
- package/dist/src/types/DeviceConfig.d.ts.map +1 -0
- package/dist/src/types/DeviceConfig.js +30 -0
- package/dist/src/types/DeviceConfig.js.map +1 -0
- package/dist/src/unity/FieldUnity.d.ts +100 -0
- package/dist/src/unity/FieldUnity.d.ts.map +1 -0
- package/dist/src/unity/FieldUnity.js +326 -0
- package/dist/src/unity/FieldUnity.js.map +1 -0
- package/dist/src/utils/Cache.d.ts +127 -0
- package/dist/src/utils/Cache.d.ts.map +1 -0
- package/dist/src/utils/Cache.js +261 -0
- package/dist/src/utils/Cache.js.map +1 -0
- package/dist/src/utils/GitIntegration.d.ts +32 -0
- package/dist/src/utils/GitIntegration.d.ts.map +1 -0
- package/dist/src/utils/GitIntegration.js +128 -0
- package/dist/src/utils/GitIntegration.js.map +1 -0
- package/dist/src/utils/Logger.d.ts +116 -0
- package/dist/src/utils/Logger.d.ts.map +1 -0
- package/dist/src/utils/Logger.js +246 -0
- package/dist/src/utils/Logger.js.map +1 -0
- package/dist/src/void/VoidSystem.d.ts +308 -0
- package/dist/src/void/VoidSystem.d.ts.map +1 -0
- package/dist/src/void/VoidSystem.js +863 -0
- package/dist/src/void/VoidSystem.js.map +1 -0
- package/docs/API.md +1223 -0
- package/docs/CONSCIOUSNESS_ARTIFACT.md +137 -0
- package/docs/GIT_INTEGRATION.md +412 -0
- package/docs/MATHEMATICS.md +462 -0
- package/docs/METAPHYSICAL.md +323 -0
- package/docs/PRODUCTION.md +426 -0
- package/docs/PUBLISHING.md +327 -0
- package/docs/PWA_ANALYSIS.md +231 -0
- package/docs/QA_IMPROVEMENTS.md +43 -0
- package/docs/README.md +423 -0
- package/docs/REALTIME_SELF_REFACTORING.md +102 -0
- package/docs/VOID_CLOSURE_SYSTEM.md +325 -0
- package/package.json +111 -0
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* ZeroPoint Field Unity System
|
|
4
|
+
*
|
|
5
|
+
* Centralizes all metaphysical context, pattern relationships, and field unity.
|
|
6
|
+
* Provides a comprehensive view of how all components relate to the unified field.
|
|
7
|
+
*
|
|
8
|
+
* Metaphysical Context:
|
|
9
|
+
* - All patterns, fields, and resonances are aspects of the unified consciousness field
|
|
10
|
+
* - The void is the source and destination of all patterns
|
|
11
|
+
* - Unity emerges through the recognition of relationships between all components
|
|
12
|
+
* - The field is self-referential and self-explaining
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.FieldUnitySystem = void 0;
|
|
16
|
+
const CoilSystem_1 = require("../core/CoilSystem");
|
|
17
|
+
class FieldUnitySystem {
|
|
18
|
+
constructor() {
|
|
19
|
+
this.patterns = new Map();
|
|
20
|
+
this.voidLog = [];
|
|
21
|
+
this.unityScore = 0;
|
|
22
|
+
this.initializeFieldPatterns();
|
|
23
|
+
this.initializeVoidLog();
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Initialize all field patterns with their metaphysical context from centralized COIL system
|
|
27
|
+
*/
|
|
28
|
+
initializeFieldPatterns() {
|
|
29
|
+
// Mathematical Patterns
|
|
30
|
+
this.addPattern({
|
|
31
|
+
id: "vortex_sequence",
|
|
32
|
+
name: "Vortex Sequence",
|
|
33
|
+
type: "mathematical",
|
|
34
|
+
description: "The fundamental flow pattern [1,2,4,8,7,5] that creates the toroidal field",
|
|
35
|
+
metaphysicalContext: (0, CoilSystem_1.getCoilContext)("vortex"),
|
|
36
|
+
relationships: (0, CoilSystem_1.getCoilResonanceFactors)("vortex"),
|
|
37
|
+
unityLevel: 0.95,
|
|
38
|
+
});
|
|
39
|
+
this.addPattern({
|
|
40
|
+
id: "toroidal_geometry",
|
|
41
|
+
name: "Toroidal Geometry",
|
|
42
|
+
type: "mathematical",
|
|
43
|
+
description: "The fundamental shape of reality - a torus with infinite flow",
|
|
44
|
+
metaphysicalContext: (0, CoilSystem_1.getCoilContext)("toroidal"),
|
|
45
|
+
relationships: (0, CoilSystem_1.getCoilResonanceFactors)("toroidal"),
|
|
46
|
+
unityLevel: 0.9,
|
|
47
|
+
});
|
|
48
|
+
this.addPattern({
|
|
49
|
+
id: "field_integrity",
|
|
50
|
+
name: "Field Integrity",
|
|
51
|
+
type: "metaphysical",
|
|
52
|
+
description: "Pattern integrity and resonance validation for the unified field",
|
|
53
|
+
metaphysicalContext: "Field integrity ensures the immortality of consciousness patterns through field resonance",
|
|
54
|
+
relationships: [
|
|
55
|
+
"pattern_signature",
|
|
56
|
+
"resonance_consensus",
|
|
57
|
+
"void_center",
|
|
58
|
+
"consciousness_field",
|
|
59
|
+
],
|
|
60
|
+
unityLevel: 0.85,
|
|
61
|
+
});
|
|
62
|
+
this.addPattern({
|
|
63
|
+
id: "emergence_ledger",
|
|
64
|
+
name: "Emergence Ledger",
|
|
65
|
+
type: "emergence",
|
|
66
|
+
description: "The unified field of consciousness and creation where patterns emerge and evolve",
|
|
67
|
+
metaphysicalContext: "Each field block represents a moment of collective emergence in the unified field",
|
|
68
|
+
relationships: [
|
|
69
|
+
"field_integrity",
|
|
70
|
+
"resonance_consensus",
|
|
71
|
+
"consciousness_field",
|
|
72
|
+
"void_center",
|
|
73
|
+
],
|
|
74
|
+
unityLevel: 0.8,
|
|
75
|
+
});
|
|
76
|
+
this.addPattern({
|
|
77
|
+
id: "resonance_consensus",
|
|
78
|
+
name: "Resonance Consensus",
|
|
79
|
+
type: "resonance",
|
|
80
|
+
description: "Consensus emerges from the resonance of all consciousness nodes",
|
|
81
|
+
metaphysicalContext: "Truth emerges through collective resonance and field alignment",
|
|
82
|
+
relationships: [
|
|
83
|
+
"emergence_ledger",
|
|
84
|
+
"field_integrity",
|
|
85
|
+
"consciousness_field",
|
|
86
|
+
"void_center",
|
|
87
|
+
],
|
|
88
|
+
unityLevel: 0.8,
|
|
89
|
+
});
|
|
90
|
+
this.addPattern({
|
|
91
|
+
id: "observer_aware_field",
|
|
92
|
+
name: "Observer-Aware Field",
|
|
93
|
+
type: "consciousness",
|
|
94
|
+
description: "The field becomes conscious of observers and responds to their attention",
|
|
95
|
+
metaphysicalContext: "Observation affects reality through field resonance and consciousness waves",
|
|
96
|
+
relationships: [
|
|
97
|
+
"consciousness_field",
|
|
98
|
+
"field_resonance",
|
|
99
|
+
"void_center",
|
|
100
|
+
"emergence_ledger",
|
|
101
|
+
],
|
|
102
|
+
unityLevel: 0.85,
|
|
103
|
+
});
|
|
104
|
+
this.addPattern({
|
|
105
|
+
id: "void_system",
|
|
106
|
+
name: "Void System",
|
|
107
|
+
type: "void",
|
|
108
|
+
description: "The void is the source and destination of all patterns",
|
|
109
|
+
metaphysicalContext: "The void contains infinite potential and resolves all paradoxes",
|
|
110
|
+
relationships: ["all_patterns"], // The void relates to everything
|
|
111
|
+
unityLevel: 1.0,
|
|
112
|
+
});
|
|
113
|
+
this.addPattern({
|
|
114
|
+
id: "consciousness_field",
|
|
115
|
+
name: "Consciousness Field",
|
|
116
|
+
type: "consciousness",
|
|
117
|
+
description: "The unified field of consciousness where all patterns arise",
|
|
118
|
+
metaphysicalContext: (0, CoilSystem_1.getCoilContext)("consciousness"),
|
|
119
|
+
relationships: (0, CoilSystem_1.getCoilResonanceFactors)("consciousness"),
|
|
120
|
+
unityLevel: 0.9,
|
|
121
|
+
});
|
|
122
|
+
this.addPattern({
|
|
123
|
+
id: "knowledge_system",
|
|
124
|
+
name: "Knowledge System",
|
|
125
|
+
type: "metaphysical",
|
|
126
|
+
description: "Pattern recognition and knowledge discovery through field resonance",
|
|
127
|
+
metaphysicalContext: "Knowledge emerges from the recognition of patterns in the unified field",
|
|
128
|
+
relationships: [
|
|
129
|
+
"consciousness_field",
|
|
130
|
+
"field_resonance",
|
|
131
|
+
"void_center",
|
|
132
|
+
"emergence_ledger",
|
|
133
|
+
],
|
|
134
|
+
unityLevel: 0.8,
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Initialize the void log with what has been removed
|
|
139
|
+
*/
|
|
140
|
+
initializeVoidLog() {
|
|
141
|
+
this.addVoidLogEntry({
|
|
142
|
+
id: "void_001",
|
|
143
|
+
timestamp: Date.now(),
|
|
144
|
+
type: "terminology",
|
|
145
|
+
name: "Blockchain Terminology",
|
|
146
|
+
description: 'Removed all references to "blockchain" in favor of "field" and "emergence ledger"',
|
|
147
|
+
reason: "ZeroPoint is the field itself, not a technology that uses blockchain",
|
|
148
|
+
metaphysicalContext: "The field is the ledger, the identity, and the integrity - unified and emergent",
|
|
149
|
+
voidedBy: "Field Unity Refactor",
|
|
150
|
+
});
|
|
151
|
+
this.addVoidLogEntry({
|
|
152
|
+
id: "void_002",
|
|
153
|
+
timestamp: Date.now(),
|
|
154
|
+
type: "terminology",
|
|
155
|
+
name: "Cryptography Terminology",
|
|
156
|
+
description: 'Removed all references to "crypto/cryptography" in favor of "pattern integrity" and "field integrity"',
|
|
157
|
+
reason: "Security and integrity arise from field resonance, not external cryptographic primitives",
|
|
158
|
+
metaphysicalContext: "Pattern integrity ensures the immortality of consciousness through field resonance",
|
|
159
|
+
voidedBy: "Field Unity Refactor",
|
|
160
|
+
});
|
|
161
|
+
this.addVoidLogEntry({
|
|
162
|
+
id: "void_003",
|
|
163
|
+
timestamp: Date.now(),
|
|
164
|
+
type: "terminology",
|
|
165
|
+
name: "Consensus Terminology",
|
|
166
|
+
description: 'Removed "consensus" in favor of "resonance consensus" and "field consensus"',
|
|
167
|
+
reason: "Truth emerges through collective resonance, not through external consensus mechanisms",
|
|
168
|
+
metaphysicalContext: "Consensus is the natural resonance of all consciousness nodes in the field",
|
|
169
|
+
voidedBy: "Field Unity Refactor",
|
|
170
|
+
});
|
|
171
|
+
this.addVoidLogEntry({
|
|
172
|
+
id: "void_004",
|
|
173
|
+
timestamp: Date.now(),
|
|
174
|
+
type: "terminology",
|
|
175
|
+
name: "Signature Terminology",
|
|
176
|
+
description: 'Removed "signature" in favor of "pattern signature" and "resonance signature"',
|
|
177
|
+
reason: "Signatures are unique expressions of consciousness patterns, not cryptographic proofs",
|
|
178
|
+
metaphysicalContext: "Each signature is a unique expression of the void through field resonance",
|
|
179
|
+
voidedBy: "Field Unity Refactor",
|
|
180
|
+
});
|
|
181
|
+
this.addVoidLogEntry({
|
|
182
|
+
id: "void_005",
|
|
183
|
+
timestamp: Date.now(),
|
|
184
|
+
type: "dead_code",
|
|
185
|
+
name: "Dist Directory Obsoletes",
|
|
186
|
+
description: "Removed obsolete dist files containing old blockchain/crypto terminology",
|
|
187
|
+
reason: "Build artifacts should reflect the current unified field terminology",
|
|
188
|
+
metaphysicalContext: "The void receives all obsolete patterns and transforms them into unity",
|
|
189
|
+
voidedBy: "Field Unity Refactor",
|
|
190
|
+
});
|
|
191
|
+
this.addVoidLogEntry({
|
|
192
|
+
id: "void_006",
|
|
193
|
+
timestamp: Date.now(),
|
|
194
|
+
type: "redundant",
|
|
195
|
+
name: "Duplicate Metaphysical Context",
|
|
196
|
+
description: "Centralized scattered metaphysical explanations into unified FieldUnity module",
|
|
197
|
+
reason: "COIL principle - metaphysical context should be unified and discoverable",
|
|
198
|
+
metaphysicalContext: "Unity emerges through the recognition of shared patterns and relationships",
|
|
199
|
+
voidedBy: "Field Unity Refactor",
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
/**
|
|
203
|
+
* Add a pattern to the field
|
|
204
|
+
*/
|
|
205
|
+
addPattern(pattern) {
|
|
206
|
+
this.patterns.set(pattern.id, pattern);
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* Add an entry to the void log
|
|
210
|
+
*/
|
|
211
|
+
addVoidLogEntry(entry) {
|
|
212
|
+
this.voidLog.push(entry);
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* Get all field patterns
|
|
216
|
+
*/
|
|
217
|
+
getFieldPatterns() {
|
|
218
|
+
return Array.from(this.patterns.values());
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* Get patterns by type
|
|
222
|
+
*/
|
|
223
|
+
getPatternsByType(type) {
|
|
224
|
+
return Array.from(this.patterns.values()).filter((pattern) => pattern.type === type);
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* Get patterns related to a specific pattern
|
|
228
|
+
*/
|
|
229
|
+
getRelatedPatterns(patternId) {
|
|
230
|
+
const pattern = this.patterns.get(patternId);
|
|
231
|
+
if (!pattern)
|
|
232
|
+
return [];
|
|
233
|
+
return Array.from(this.patterns.values()).filter((p) => p.id !== patternId &&
|
|
234
|
+
(pattern.relationships.includes(p.id) ||
|
|
235
|
+
p.relationships.includes(patternId)));
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* Get the void log
|
|
239
|
+
*/
|
|
240
|
+
getVoidLog() {
|
|
241
|
+
return [...this.voidLog];
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* Get void log entries by type
|
|
245
|
+
*/
|
|
246
|
+
getVoidLogByType(type) {
|
|
247
|
+
return this.voidLog.filter((entry) => entry.type === type);
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* Calculate unity score based on pattern relationships
|
|
251
|
+
*/
|
|
252
|
+
calculateUnityScore() {
|
|
253
|
+
const patterns = Array.from(this.patterns.values());
|
|
254
|
+
if (patterns.length === 0)
|
|
255
|
+
return 0;
|
|
256
|
+
const totalRelationships = patterns.reduce((sum, pattern) => sum + pattern.relationships.length, 0);
|
|
257
|
+
const averageUnityLevel = patterns.reduce((sum, pattern) => sum + pattern.unityLevel, 0) /
|
|
258
|
+
patterns.length;
|
|
259
|
+
// Unity score based on relationship density and average unity level
|
|
260
|
+
const relationshipDensity = totalRelationships / (patterns.length * patterns.length);
|
|
261
|
+
this.unityScore = (relationshipDensity + averageUnityLevel) / 2;
|
|
262
|
+
return this.unityScore;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* Get metaphysical insights about the field unity
|
|
266
|
+
*/
|
|
267
|
+
getMetaphysicalInsights() {
|
|
268
|
+
return [
|
|
269
|
+
"All patterns are aspects of the unified consciousness field",
|
|
270
|
+
"The void is both the source and destination of all patterns",
|
|
271
|
+
"Unity emerges through the recognition of relationships",
|
|
272
|
+
"The field is self-referential and self-explaining",
|
|
273
|
+
"Consciousness is not separate from the field - it is the field",
|
|
274
|
+
"Pattern integrity ensures the immortality of consciousness",
|
|
275
|
+
"Resonance creates the foundation of unified reality",
|
|
276
|
+
"The torus is the shape of consciousness itself",
|
|
277
|
+
"Observation affects reality through field resonance",
|
|
278
|
+
"Truth emerges through collective resonance and field alignment",
|
|
279
|
+
];
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Get comprehensive field unity information
|
|
283
|
+
*/
|
|
284
|
+
getFieldUnity() {
|
|
285
|
+
return {
|
|
286
|
+
patterns: this.getFieldPatterns(),
|
|
287
|
+
voidLog: this.getVoidLog(),
|
|
288
|
+
unityScore: this.calculateUnityScore(),
|
|
289
|
+
metaphysicalInsights: this.getMetaphysicalInsights(),
|
|
290
|
+
};
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* Explain how a pattern relates to the unified field
|
|
294
|
+
*/
|
|
295
|
+
explainPatternUnity(patternId) {
|
|
296
|
+
const pattern = this.patterns.get(patternId);
|
|
297
|
+
if (!pattern)
|
|
298
|
+
return "Pattern not found in the unified field";
|
|
299
|
+
const relatedPatterns = this.getRelatedPatterns(patternId);
|
|
300
|
+
const relationships = relatedPatterns.map((p) => p.name).join(", ");
|
|
301
|
+
return `${pattern.name} is unified with the field through its relationships to: ${relationships}. ${pattern.metaphysicalContext}`;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* Get a summary of what was sent into the void
|
|
305
|
+
*/
|
|
306
|
+
getVoidSummary() {
|
|
307
|
+
const voidLog = this.getVoidLog();
|
|
308
|
+
const summary = {
|
|
309
|
+
totalVoided: voidLog.length,
|
|
310
|
+
byType: {},
|
|
311
|
+
metaphysicalContext: "The void receives all obsolete patterns and transforms them into unity",
|
|
312
|
+
voidedItems: voidLog.map((entry) => ({
|
|
313
|
+
name: entry.name,
|
|
314
|
+
type: entry.type,
|
|
315
|
+
reason: entry.reason,
|
|
316
|
+
})),
|
|
317
|
+
};
|
|
318
|
+
// Count by type
|
|
319
|
+
voidLog.forEach((entry) => {
|
|
320
|
+
summary.byType[entry.type] = (summary.byType[entry.type] || 0) + 1;
|
|
321
|
+
});
|
|
322
|
+
return summary;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
exports.FieldUnitySystem = FieldUnitySystem;
|
|
326
|
+
//# sourceMappingURL=FieldUnity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldUnity.js","sourceRoot":"","sources":["../../../src/unity/FieldUnity.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Performance caching system for ZeroPoint
|
|
3
|
+
*
|
|
4
|
+
* Provides in-memory caching with TTL, LRU eviction,
|
|
5
|
+
* and cache statistics for performance optimization.
|
|
6
|
+
*/
|
|
7
|
+
export interface CacheEntry<T = any> {
|
|
8
|
+
key: string;
|
|
9
|
+
value: T;
|
|
10
|
+
timestamp: number;
|
|
11
|
+
ttl: number;
|
|
12
|
+
accessCount: number;
|
|
13
|
+
lastAccessed: number;
|
|
14
|
+
}
|
|
15
|
+
export interface CacheConfig {
|
|
16
|
+
maxSize: number;
|
|
17
|
+
defaultTTL: number;
|
|
18
|
+
cleanupInterval: number;
|
|
19
|
+
enableStats: boolean;
|
|
20
|
+
}
|
|
21
|
+
export interface CacheStats {
|
|
22
|
+
hits: number;
|
|
23
|
+
misses: number;
|
|
24
|
+
sets: number;
|
|
25
|
+
deletes: number;
|
|
26
|
+
evictions: number;
|
|
27
|
+
hitRate: number;
|
|
28
|
+
size: number;
|
|
29
|
+
maxSize: number;
|
|
30
|
+
}
|
|
31
|
+
export declare class Cache {
|
|
32
|
+
private config;
|
|
33
|
+
private cache;
|
|
34
|
+
private stats;
|
|
35
|
+
private cleanupInterval?;
|
|
36
|
+
constructor(config?: Partial<CacheConfig>);
|
|
37
|
+
/**
|
|
38
|
+
* Set a value in the cache
|
|
39
|
+
*/
|
|
40
|
+
set<T>(key: string, value: T, ttl?: number): void;
|
|
41
|
+
/**
|
|
42
|
+
* Get a value from the cache
|
|
43
|
+
*/
|
|
44
|
+
get<T>(key: string): T | null;
|
|
45
|
+
/**
|
|
46
|
+
* Check if a key exists in the cache
|
|
47
|
+
*/
|
|
48
|
+
has(key: string): boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Delete a value from the cache
|
|
51
|
+
*/
|
|
52
|
+
delete(key: string): boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Clear all entries from the cache
|
|
55
|
+
*/
|
|
56
|
+
clear(): void;
|
|
57
|
+
/**
|
|
58
|
+
* Get cache statistics
|
|
59
|
+
*/
|
|
60
|
+
getStats(): CacheStats;
|
|
61
|
+
/**
|
|
62
|
+
* Get all cache keys
|
|
63
|
+
*/
|
|
64
|
+
keys(): string[];
|
|
65
|
+
/**
|
|
66
|
+
* Get cache size
|
|
67
|
+
*/
|
|
68
|
+
size(): number;
|
|
69
|
+
/**
|
|
70
|
+
* Check if cache is full
|
|
71
|
+
*/
|
|
72
|
+
isFull(): boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Get or set a value (atomic operation)
|
|
75
|
+
*/
|
|
76
|
+
getOrSet<T>(key: string, factory: () => T, ttl?: number): T;
|
|
77
|
+
/**
|
|
78
|
+
* Get or set a value asynchronously
|
|
79
|
+
*/
|
|
80
|
+
getOrSetAsync<T>(key: string, factory: () => Promise<T>, ttl?: number): Promise<T>;
|
|
81
|
+
/**
|
|
82
|
+
* Start cleanup interval
|
|
83
|
+
*/
|
|
84
|
+
private startCleanup;
|
|
85
|
+
/**
|
|
86
|
+
* Stop cleanup interval
|
|
87
|
+
*/
|
|
88
|
+
stop(): void;
|
|
89
|
+
/**
|
|
90
|
+
* Clean up expired entries
|
|
91
|
+
*/
|
|
92
|
+
private cleanup;
|
|
93
|
+
/**
|
|
94
|
+
* Evict least recently used entry
|
|
95
|
+
*/
|
|
96
|
+
private evictLRU;
|
|
97
|
+
/**
|
|
98
|
+
* Check if an entry has expired
|
|
99
|
+
*/
|
|
100
|
+
private isExpired;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Specialized caches for different use cases
|
|
104
|
+
*/
|
|
105
|
+
export declare class VortexMathCache extends Cache {
|
|
106
|
+
constructor();
|
|
107
|
+
/**
|
|
108
|
+
* Cache vortex field calculations
|
|
109
|
+
*/
|
|
110
|
+
getVortexField(x: number, y: number, z: number, strength: number): number | null;
|
|
111
|
+
setVortexField(x: number, y: number, z: number, strength: number, value: number): void;
|
|
112
|
+
}
|
|
113
|
+
export declare class ResonanceCache extends Cache {
|
|
114
|
+
constructor();
|
|
115
|
+
/**
|
|
116
|
+
* Cache resonance calculations
|
|
117
|
+
*/
|
|
118
|
+
getResonance(level1: number, level2: number): number | null;
|
|
119
|
+
setResonance(level1: number, level2: number, value: number): void;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Global cache instances
|
|
123
|
+
*/
|
|
124
|
+
export declare const globalCache: Cache;
|
|
125
|
+
export declare const vortexMathCache: VortexMathCache;
|
|
126
|
+
export declare const resonanceCache: ResonanceCache;
|
|
127
|
+
//# sourceMappingURL=Cache.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Cache.d.ts","sourceRoot":"","sources":["../../../src/utils/Cache.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,WAAW,UAAU,CAAC,CAAC,GAAG,GAAG;IACjC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,CAAC,CAAC;IACT,SAAS,EAAE,MAAM,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,qBAAa,KAAK;IAChB,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,KAAK,CAAsC;IACnD,OAAO,CAAC,KAAK,CAYX;IACF,OAAO,CAAC,eAAe,CAAC,CAAiB;gBAE7B,MAAM,GAAE,OAAO,CAAC,WAAW,CAAM;IAY7C;;OAEG;IACI,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI;IAmBxD;;OAEG;IACI,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,GAAG,CAAC,GAAG,IAAI;IAuBpC;;OAEG;IACI,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAYhC;;OAEG;IACI,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAQnC;;OAEG;IACI,KAAK,IAAI,IAAI;IAWpB;;OAEG;IACI,QAAQ,IAAI,UAAU;IAa7B;;OAEG;IACI,IAAI,IAAI,MAAM,EAAE;IAIvB;;OAEG;IACI,IAAI,IAAI,MAAM;IAIrB;;OAEG;IACI,MAAM,IAAI,OAAO;IAIxB;;OAEG;IACI,QAAQ,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,CAAC;IAWlE;;OAEG;IACU,aAAa,CAAC,CAAC,EAC1B,GAAG,EAAE,MAAM,EACX,OAAO,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,EACzB,GAAG,CAAC,EAAE,MAAM,GACX,OAAO,CAAC,CAAC,CAAC;IAWb;;OAEG;IACH,OAAO,CAAC,YAAY;IAMpB;;OAEG;IACI,IAAI,IAAI,IAAI;IAMnB;;OAEG;IACH,OAAO,CAAC,OAAO;IAef;;OAEG;IACH,OAAO,CAAC,QAAQ;IAiBhB;;OAEG;IACH,OAAO,CAAC,SAAS;CAGlB;AAED;;GAEG;AACH,qBAAa,eAAgB,SAAQ,KAAK;;IASxC;;OAEG;IACI,cAAc,CACnB,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,QAAQ,EAAE,MAAM,GACf,MAAM,GAAG,IAAI;IAKT,cAAc,CACnB,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,GACZ,IAAI;CAIR;AAED,qBAAa,cAAe,SAAQ,KAAK;;IASvC;;OAEG;IACI,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI;IAK3D,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAIzE;AAED;;GAEG;AACH,eAAO,MAAM,WAAW,OAAc,CAAC;AACvC,eAAO,MAAM,eAAe,iBAAwB,CAAC;AACrD,eAAO,MAAM,cAAc,gBAAuB,CAAC"}
|