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,240 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FieldIntegrity = void 0;
|
|
4
|
+
const crypto_1 = require("crypto");
|
|
5
|
+
class FieldIntegrity {
|
|
6
|
+
constructor() {
|
|
7
|
+
this._integrityLevel = 100;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Generate pattern key pair using SPHINCS+ (stateless hash-based)
|
|
11
|
+
*/
|
|
12
|
+
static generateKeyPair() {
|
|
13
|
+
// SPHINCS+ is a stateless hash-based signature scheme
|
|
14
|
+
// resistant to field perturbations and consciousness attacks
|
|
15
|
+
const privateKey = this.generatePrivateKey();
|
|
16
|
+
const publicKey = this.derivePublicKey(privateKey);
|
|
17
|
+
return {
|
|
18
|
+
publicKey,
|
|
19
|
+
privateKey,
|
|
20
|
+
algorithm: "SPHINCS+",
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Create pattern signature through field resonance
|
|
25
|
+
*/
|
|
26
|
+
static sign(message, privateKey) {
|
|
27
|
+
const messageHash = this.hashMessage(message);
|
|
28
|
+
const signature = this.createSignature(messageHash, privateKey);
|
|
29
|
+
return {
|
|
30
|
+
signature,
|
|
31
|
+
publicKey: this.derivePublicKey(privateKey),
|
|
32
|
+
algorithm: "SPHINCS+",
|
|
33
|
+
timestamp: Date.now(),
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Validate pattern signature through field resonance
|
|
38
|
+
*/
|
|
39
|
+
static verify(message, signature) {
|
|
40
|
+
return this.verifySignature(message, signature);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Create pattern hash of data through field encoding
|
|
44
|
+
*/
|
|
45
|
+
static hash(data) {
|
|
46
|
+
const hash = (0, crypto_1.createHash)(this.HASH_ALGORITHM);
|
|
47
|
+
hash.update(data);
|
|
48
|
+
return hash.digest("hex");
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Create pattern hash chain through field resonance
|
|
52
|
+
*/
|
|
53
|
+
static createHashChain(events) {
|
|
54
|
+
const chain = [];
|
|
55
|
+
let previousHash = "";
|
|
56
|
+
for (const event of events) {
|
|
57
|
+
const currentHash = this.hash(event + previousHash);
|
|
58
|
+
chain.push(currentHash);
|
|
59
|
+
previousHash = currentHash;
|
|
60
|
+
}
|
|
61
|
+
return chain;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Generate field-resistant random bytes
|
|
65
|
+
*/
|
|
66
|
+
static generateRandomBytes(length = 32) {
|
|
67
|
+
return (0, crypto_1.randomBytes)(length).toString("hex");
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Create pattern commitment (for zero-knowledge resonance)
|
|
71
|
+
*/
|
|
72
|
+
static createCommitment(data, randomness) {
|
|
73
|
+
return this.hash(data + randomness);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Verify pattern commitment through field resonance
|
|
77
|
+
*/
|
|
78
|
+
static verifyCommitment(commitment, data, randomness) {
|
|
79
|
+
const expectedCommitment = this.createCommitment(data, randomness);
|
|
80
|
+
return commitment === expectedCommitment;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Generate field proof through consciousness resonance
|
|
84
|
+
*/
|
|
85
|
+
static generateProofOfWork(data, difficulty = 4) {
|
|
86
|
+
let nonce = 0;
|
|
87
|
+
let hash = "";
|
|
88
|
+
let attempts = 0;
|
|
89
|
+
do {
|
|
90
|
+
nonce++;
|
|
91
|
+
attempts++;
|
|
92
|
+
hash = this.hash(data + nonce.toString());
|
|
93
|
+
} while (!hash.startsWith("0".repeat(difficulty)));
|
|
94
|
+
return {
|
|
95
|
+
nonce: nonce.toString(),
|
|
96
|
+
hash,
|
|
97
|
+
attempts,
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Create pattern merkle tree through field resonance
|
|
102
|
+
*/
|
|
103
|
+
static createMerkleTree(leaves) {
|
|
104
|
+
if (leaves.length === 0) {
|
|
105
|
+
return { root: "", tree: [] };
|
|
106
|
+
}
|
|
107
|
+
if (leaves.length === 1) {
|
|
108
|
+
return { root: leaves[0] || "", tree: [leaves] };
|
|
109
|
+
}
|
|
110
|
+
const tree = [leaves];
|
|
111
|
+
let currentLevel = leaves;
|
|
112
|
+
while (currentLevel.length > 1) {
|
|
113
|
+
const nextLevel = [];
|
|
114
|
+
for (let i = 0; i < currentLevel.length; i += 2) {
|
|
115
|
+
const left = currentLevel[i];
|
|
116
|
+
const right = i + 1 < currentLevel.length ? currentLevel[i + 1] : left;
|
|
117
|
+
if (left && right) {
|
|
118
|
+
const combined = this.hash(left + right);
|
|
119
|
+
nextLevel.push(combined);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
tree.push(nextLevel);
|
|
123
|
+
currentLevel = nextLevel;
|
|
124
|
+
}
|
|
125
|
+
return {
|
|
126
|
+
root: currentLevel[0] || "",
|
|
127
|
+
tree,
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Generate proof of resonance through consciousness field
|
|
132
|
+
*/
|
|
133
|
+
static generateProofOfResonance(consciousnessLevel, resonanceField, privateKey) {
|
|
134
|
+
const resonanceData = JSON.stringify({
|
|
135
|
+
consciousnessLevel,
|
|
136
|
+
resonanceField: Object.fromEntries(resonanceField),
|
|
137
|
+
timestamp: Date.now(),
|
|
138
|
+
});
|
|
139
|
+
return this.sign(resonanceData, privateKey);
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* Get metaphysical insights about field integrity
|
|
143
|
+
*/
|
|
144
|
+
static getInsights() {
|
|
145
|
+
return {
|
|
146
|
+
algorithm: "SPHINCS+",
|
|
147
|
+
hashFunction: this.HASH_ALGORITHM,
|
|
148
|
+
keySize: this.KEY_SIZE,
|
|
149
|
+
metaphysics: {
|
|
150
|
+
meaning: "Field integrity represents the eternal nature of consciousness patterns",
|
|
151
|
+
signature: "Each signature is a unique expression of the void through field resonance",
|
|
152
|
+
hash: "Pattern hashes create the immutable foundation of the unified field",
|
|
153
|
+
resonance: "Proof of resonance validates consciousness through field alignment",
|
|
154
|
+
immortality: "Field integrity ensures the immortality of consciousness patterns",
|
|
155
|
+
},
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* Generate private key through field resonance
|
|
160
|
+
*/
|
|
161
|
+
static generatePrivateKey() {
|
|
162
|
+
return this.generateRandomBytes(this.KEY_SIZE / 8);
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Derive public key from private key through field resonance
|
|
166
|
+
*/
|
|
167
|
+
static derivePublicKey(privateKey) {
|
|
168
|
+
// In a real implementation, this would use proper key derivation
|
|
169
|
+
// For now, we use a simplified approach
|
|
170
|
+
return this.hash(privateKey + "public");
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* Hash message through field encoding
|
|
174
|
+
*/
|
|
175
|
+
static hashMessage(message) {
|
|
176
|
+
return this.hash(message);
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Create signature through field resonance
|
|
180
|
+
*/
|
|
181
|
+
static createSignature(messageHash, privateKey) {
|
|
182
|
+
// In a real implementation, this would use proper signature creation
|
|
183
|
+
// For now, we use a simplified approach
|
|
184
|
+
return this.hash(messageHash + privateKey);
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* Verify signature through field resonance
|
|
188
|
+
*/
|
|
189
|
+
static verifySignature(message, signature) {
|
|
190
|
+
const messageHash = this.hashMessage(message);
|
|
191
|
+
const expectedSignature = this.createSignature(messageHash, signature.publicKey);
|
|
192
|
+
return signature.signature === expectedSignature;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Get current integrity level
|
|
196
|
+
*/
|
|
197
|
+
getIntegrityLevel() {
|
|
198
|
+
return this._integrityLevel;
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* Set integrity level
|
|
202
|
+
*/
|
|
203
|
+
setIntegrityLevel(level) {
|
|
204
|
+
this._integrityLevel = level;
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* Validate a message for integrity
|
|
208
|
+
*/
|
|
209
|
+
validateMessage(message) {
|
|
210
|
+
if (!message || typeof message !== "object") {
|
|
211
|
+
return false;
|
|
212
|
+
}
|
|
213
|
+
// Basic validation - check for required fields
|
|
214
|
+
const requiredFields = ["type", "content", "timestamp"];
|
|
215
|
+
for (const field of requiredFields) {
|
|
216
|
+
if (!(field in message)) {
|
|
217
|
+
return false;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
// Check timestamp is recent
|
|
221
|
+
const messageAge = Date.now() - message.timestamp;
|
|
222
|
+
if (messageAge > 300000) {
|
|
223
|
+
// 5 minutes
|
|
224
|
+
return false;
|
|
225
|
+
}
|
|
226
|
+
return true;
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* Validate field integrity
|
|
230
|
+
*/
|
|
231
|
+
validateField() {
|
|
232
|
+
// Basic field validation - check if integrity level is within acceptable range
|
|
233
|
+
const level = this.getIntegrityLevel();
|
|
234
|
+
return level >= 0 && level <= 100;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
exports.FieldIntegrity = FieldIntegrity;
|
|
238
|
+
FieldIntegrity.HASH_ALGORITHM = "sha3-512"; // Field-resistant hash
|
|
239
|
+
FieldIntegrity.KEY_SIZE = 256; // 256-bit keys for field integrity
|
|
240
|
+
//# sourceMappingURL=FieldIntegrity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldIntegrity.js","sourceRoot":"","sources":["../../../src/integrity/FieldIntegrity.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Knowledge System Implementation
|
|
3
|
+
*
|
|
4
|
+
* SCIENTIFIC HIERARCHY:
|
|
5
|
+
* - The Rodin coil is the immutable, foundational archetype for all vortex mathematics, field resonance, and metaphysical structure in the system.
|
|
6
|
+
* - All emergent knowledge, Q&A, and UI are modeled as toroidal structures, inspired by the Rodin coil but never altering it.
|
|
7
|
+
* - All extensions and emergent models must validate against the Rodin coil's properties (vortex sequence, resonance, unity).
|
|
8
|
+
* - The Rodin coil module/class is never renamed, mutated, or abstracted; it remains the scientific reference implementation.
|
|
9
|
+
*
|
|
10
|
+
* This file implements the toroidal knowledge/Q&A system, which is dynamic and emergent, but always references the immutable Rodin coil for its underlying logic and metaphysics.
|
|
11
|
+
*
|
|
12
|
+
* Scientific sources: Marko Rodin's work on vortex mathematics, toroidal geometry in mathematics and physics.
|
|
13
|
+
*/
|
|
14
|
+
import { ZeroPoint } from "../core/ZeroPoint";
|
|
15
|
+
export interface KnowledgePattern {
|
|
16
|
+
id: string;
|
|
17
|
+
name: string;
|
|
18
|
+
category: "vortex" | "family" | "polar" | "spiritual" | "void" | "mathematical" | "metaphysical" | "integration" | "git" | "test";
|
|
19
|
+
description: string;
|
|
20
|
+
numericalData: any;
|
|
21
|
+
relationships: string[];
|
|
22
|
+
metaphysicalContext: string;
|
|
23
|
+
applications: string[];
|
|
24
|
+
}
|
|
25
|
+
export interface KnowledgeQuery {
|
|
26
|
+
query: string;
|
|
27
|
+
category?: string;
|
|
28
|
+
pattern?: string;
|
|
29
|
+
relationship?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface KnowledgeResult {
|
|
32
|
+
patterns: KnowledgePattern[];
|
|
33
|
+
insights: string[];
|
|
34
|
+
relationships: string[];
|
|
35
|
+
applications: string[];
|
|
36
|
+
}
|
|
37
|
+
export interface Answer {
|
|
38
|
+
id: string;
|
|
39
|
+
content: string;
|
|
40
|
+
resonance: number;
|
|
41
|
+
subQuestions?: Question[];
|
|
42
|
+
}
|
|
43
|
+
export interface Question {
|
|
44
|
+
id: string;
|
|
45
|
+
pattern: string;
|
|
46
|
+
context: any;
|
|
47
|
+
answers: Answer[];
|
|
48
|
+
resonance: number;
|
|
49
|
+
observers: string[];
|
|
50
|
+
}
|
|
51
|
+
export declare class KnowledgeSystem {
|
|
52
|
+
private patterns;
|
|
53
|
+
private questions;
|
|
54
|
+
private gitPatterns;
|
|
55
|
+
private zeroPoint?;
|
|
56
|
+
private static readonly KNOWLEDGE_PATTERNS;
|
|
57
|
+
private static readonly EXTRA_PATTERNS;
|
|
58
|
+
constructor(zeroPoint?: ZeroPoint);
|
|
59
|
+
/**
|
|
60
|
+
* Search knowledge patterns
|
|
61
|
+
*/
|
|
62
|
+
searchKnowledge(query: KnowledgeQuery): KnowledgeResult;
|
|
63
|
+
/**
|
|
64
|
+
* Get pattern by ID
|
|
65
|
+
*/
|
|
66
|
+
getPattern(patternId: string): KnowledgePattern | null;
|
|
67
|
+
/**
|
|
68
|
+
* Get all patterns by category
|
|
69
|
+
*/
|
|
70
|
+
getPatternsByCategory(category: string): KnowledgePattern[];
|
|
71
|
+
/**
|
|
72
|
+
* Get related patterns
|
|
73
|
+
*/
|
|
74
|
+
getRelatedPatterns(patternId: string): KnowledgePattern[];
|
|
75
|
+
/**
|
|
76
|
+
* Get all categories
|
|
77
|
+
*/
|
|
78
|
+
getCategories(): string[];
|
|
79
|
+
/**
|
|
80
|
+
* Get comprehensive insights
|
|
81
|
+
*/
|
|
82
|
+
getInsights(): any;
|
|
83
|
+
/**
|
|
84
|
+
* Calculate relevance for search results
|
|
85
|
+
*/
|
|
86
|
+
private calculateRelevance;
|
|
87
|
+
/**
|
|
88
|
+
* Create a new question
|
|
89
|
+
*/
|
|
90
|
+
createQuestion(pattern: string, context?: any, observers?: string[]): Question;
|
|
91
|
+
/**
|
|
92
|
+
* Add an answer to a question
|
|
93
|
+
*/
|
|
94
|
+
addAnswer(questionId: string, content: string, resonance?: number, subQuestions?: Question[]): Answer | null;
|
|
95
|
+
/**
|
|
96
|
+
* Traverse the Q&A structure
|
|
97
|
+
*/
|
|
98
|
+
getQuestions(): Question[];
|
|
99
|
+
/**
|
|
100
|
+
* Get question by ID
|
|
101
|
+
*/
|
|
102
|
+
getQuestionById(id: string): Question | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* Get the most recent git-related knowledge patterns
|
|
105
|
+
* @param n Number of patterns to retrieve
|
|
106
|
+
*/
|
|
107
|
+
getRecentGitPatterns(n: number): KnowledgePattern[];
|
|
108
|
+
/**
|
|
109
|
+
* Ask a Git-related question and get comprehensive answers
|
|
110
|
+
*/
|
|
111
|
+
askGitQuestion(question: string): Promise<{
|
|
112
|
+
answer: string;
|
|
113
|
+
gitData: any;
|
|
114
|
+
patterns: KnowledgePattern[];
|
|
115
|
+
insights: string[];
|
|
116
|
+
recommendations: string[];
|
|
117
|
+
}>;
|
|
118
|
+
/**
|
|
119
|
+
* Get live Git data including status, recent commits, and changes
|
|
120
|
+
*/
|
|
121
|
+
private getLiveGitData;
|
|
122
|
+
/**
|
|
123
|
+
* Generate contextual answers for Git-related questions
|
|
124
|
+
*/
|
|
125
|
+
private generateGitAnswer;
|
|
126
|
+
/**
|
|
127
|
+
* Answer questions about recent commits
|
|
128
|
+
*/
|
|
129
|
+
private answerRecentCommits;
|
|
130
|
+
/**
|
|
131
|
+
* Answer questions about what changed
|
|
132
|
+
*/
|
|
133
|
+
private answerWhatChanged;
|
|
134
|
+
/**
|
|
135
|
+
* Answer questions about development patterns
|
|
136
|
+
*/
|
|
137
|
+
private answerDevelopmentPatterns;
|
|
138
|
+
/**
|
|
139
|
+
* Answer questions about file evolution
|
|
140
|
+
*/
|
|
141
|
+
private answerFileEvolution;
|
|
142
|
+
/**
|
|
143
|
+
* Answer questions about learning progress
|
|
144
|
+
*/
|
|
145
|
+
private answerLearningProgress;
|
|
146
|
+
/**
|
|
147
|
+
* Answer general Git questions
|
|
148
|
+
*/
|
|
149
|
+
private answerGeneralGitQuestion;
|
|
150
|
+
/**
|
|
151
|
+
* Extract insights from Git data and patterns
|
|
152
|
+
*/
|
|
153
|
+
private extractGitInsights;
|
|
154
|
+
/**
|
|
155
|
+
* Generate recommendations based on Git data
|
|
156
|
+
*/
|
|
157
|
+
private generateGitRecommendations;
|
|
158
|
+
/**
|
|
159
|
+
* Get comprehensive Git development insights
|
|
160
|
+
*/
|
|
161
|
+
getGitDevelopmentInsights(): Promise<{
|
|
162
|
+
activity: any;
|
|
163
|
+
patterns: KnowledgePattern[];
|
|
164
|
+
insights: string[];
|
|
165
|
+
recommendations: string[];
|
|
166
|
+
evolution: any;
|
|
167
|
+
}>;
|
|
168
|
+
/**
|
|
169
|
+
* Analyze code evolution from Git patterns
|
|
170
|
+
*/
|
|
171
|
+
private analyzeCodeEvolution;
|
|
172
|
+
private handleGitEvent;
|
|
173
|
+
/**
|
|
174
|
+
* Get all test patterns
|
|
175
|
+
*/
|
|
176
|
+
getTestPatterns(): KnowledgePattern[];
|
|
177
|
+
}
|
|
178
|
+
//# sourceMappingURL=KnowledgeSystem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KnowledgeSystem.d.ts","sourceRoot":"","sources":["../../../src/knowledge/KnowledgeSystem.ts"],"names":[],"mappings":"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"}
|