bopodev-api 0.1.25 → 0.1.26
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/package.json +4 -4
- package/src/routes/governance.ts +80 -2
- package/src/routes/observability.ts +157 -9
- package/src/scripts/onboard-seed.ts +5 -6
- package/src/services/attention-service.ts +23 -2
- package/src/services/governance-service.ts +4 -5
- package/src/services/heartbeat-service.ts +1251 -69
- package/src/services/memory-file-service.ts +0 -3
|
@@ -74,9 +74,6 @@ export async function loadAgentMemoryContext(input: {
|
|
|
74
74
|
label: "agent"
|
|
75
75
|
}
|
|
76
76
|
];
|
|
77
|
-
for (const source of scopedRoots) {
|
|
78
|
-
await ensureMemoryDirs(source.root, join(source.root, "life"), join(source.root, "memory"));
|
|
79
|
-
}
|
|
80
77
|
const tacitBlocks = await Promise.all(
|
|
81
78
|
scopedRoots.map(async (source) => {
|
|
82
79
|
const tacit = await readTacitNotes(source.root);
|