MCPcopy Create free account
hub / github.com/EvoMap/evolver / captureLocalState

Function captureLocalState

src/gep/localStateAwareness.js:203–222  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

201}
202
203function captureLocalState() {
204 var sections = [];
205
206 sections.push('[Node Identity]');
207 sections = sections.concat(captureNodeIdentity());
208
209 sections.push('[Environment Config]');
210 sections = sections.concat(captureEnvConfig());
211
212 sections.push('[Evolution State]');
213 sections = sections.concat(captureEvolutionState());
214
215 sections.push('[Memory & Knowledge]');
216 sections = sections.concat(captureMemoryState());
217
218 sections.push('[Skills]');
219 sections = sections.concat(captureSkillsState());
220
221 return sections.join('\n');
222}
223
224function captureLocalStatePaths() {
225 return {

Callers 1

Calls 5

captureNodeIdentityFunction · 0.85
captureEnvConfigFunction · 0.85
captureEvolutionStateFunction · 0.85
captureMemoryStateFunction · 0.85
captureSkillsStateFunction · 0.85

Tested by

no test coverage detected