()
| 201 | } |
| 202 | |
| 203 | function 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 | |
| 224 | function captureLocalStatePaths() { |
| 225 | return { |
no test coverage detected