truememory-mirror 1.0.6 → 1.0.7
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/bin/mirror.js +17 -11
- package/package.json +1 -1
package/bin/mirror.js
CHANGED
|
@@ -101,23 +101,29 @@ function clearLine() {
|
|
|
101
101
|
|
|
102
102
|
const STATUS_PHRASES = [
|
|
103
103
|
'scanning cognitive patterns',
|
|
104
|
-
'
|
|
104
|
+
'indexing conversation fragments',
|
|
105
|
+
'parsing behavioral signals',
|
|
105
106
|
'extracting reasoning signatures',
|
|
106
107
|
'profiling communication style',
|
|
107
|
-
'analyzing delegation patterns',
|
|
108
108
|
'detecting stress responses',
|
|
109
|
-
'
|
|
110
|
-
'
|
|
109
|
+
'measuring risk tolerance curves',
|
|
110
|
+
'mapping decision architecture',
|
|
111
111
|
'isolating personality markers',
|
|
112
|
-
'decoding problem-solving heuristics',
|
|
113
112
|
'tracing collaboration fingerprint',
|
|
114
|
-
'
|
|
115
|
-
'
|
|
113
|
+
'decoding problem-solving heuristics',
|
|
114
|
+
'analyzing delegation patterns',
|
|
115
|
+
'triangulating identity vectors',
|
|
116
|
+
'calibrating behavioral model',
|
|
117
|
+
'resolving cognitive tensions',
|
|
116
118
|
'consolidating trait matrix',
|
|
119
|
+
'building predictive scaffolding',
|
|
117
120
|
'running scenario simulations',
|
|
118
|
-
'
|
|
121
|
+
'stress-testing edge cases',
|
|
122
|
+
'computing confidence intervals',
|
|
119
123
|
'rendering identity surface',
|
|
120
|
-
'
|
|
124
|
+
'locking archetype match',
|
|
125
|
+
'sealing behavioral predictions',
|
|
126
|
+
'finalizing your mirror',
|
|
121
127
|
];
|
|
122
128
|
|
|
123
129
|
let _phraseIndex = 0;
|
|
@@ -163,7 +169,7 @@ async function main() {
|
|
|
163
169
|
const spinTimer = setInterval(() => {
|
|
164
170
|
clearLine();
|
|
165
171
|
write(` ${DIM}${nextPhrase()}...${R}`);
|
|
166
|
-
},
|
|
172
|
+
}, 3750);
|
|
167
173
|
|
|
168
174
|
write(` ${DIM}${nextPhrase()}...${R}`);
|
|
169
175
|
const sources = await scan(args.source);
|
|
@@ -237,7 +243,7 @@ async function main() {
|
|
|
237
243
|
const bar = progressBar(pct);
|
|
238
244
|
const now = Date.now();
|
|
239
245
|
|
|
240
|
-
if (now - lastPhraseTick >
|
|
246
|
+
if (now - lastPhraseTick > 3750) {
|
|
241
247
|
currentPhrase = nextPhrase();
|
|
242
248
|
lastPhraseTick = now;
|
|
243
249
|
}
|