Skip to content

Commit 5832156

Browse files
committed
docs: remove broken markdown links to internal superpowers/ specs
The Docusaurus build for docs.agentos.sh fails with onBrokenMarkdownLinks=throw because two files contain markdown links to the internal docs/superpowers/ tree, which is gitignored and never published. The build error chain causes all routes including /benchmarks to 404 in production. Fixes: - packages/agentos/docs/memory/POSTGRES_BACKEND.md: removed the "See the design spec at..." line pointing at superpowers/specs/2026-04-26-brain-storage-abstraction-design.md - packages/agentos/CHANGELOG.md: removed the "##### Spec" sub-section pointing at the same superpowers spec + plan paths (under the 0.4.0 release notes block at line 5803-5806 of source CHANGELOG) The plain-text "Spec: docs/superpowers/..." commit-body lines still exist throughout the CHANGELOG (13 pairs) but are not bracket-link markdown so they don't trigger MDX broken-link errors. Recommend configuring semantic-release to filter superpowers/-prefixed paths out of future generated commit-body sections to prevent this from re-occurring on the next release.
1 parent 84dd048 commit 5832156

2 files changed

Lines changed: 0 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5800,11 +5800,6 @@ const adapter = await createDatabase({ postgres: { connectionString } });
58005800
const brain = await Brain.openWithAdapter(adapter, { brainId: 'agent-1' });
58015801
```
58025802

5803-
##### Spec
5804-
5805-
- Spec: [packages/agentos/docs/superpowers/specs/2026-04-26-brain-storage-abstraction-design.md](docs/superpowers/specs/2026-04-26-brain-storage-abstraction-design.md)
5806-
- Plan: [packages/agentos/docs/superpowers/plans/2026-04-26-brain-storage-abstraction-plan.md](docs/superpowers/plans/2026-04-26-brain-storage-abstraction-plan.md)
5807-
58085803
## <small>0.2.12 (2026-04-25)</small>
58095804

58105805
* Merge branch 'master' of https://github.com/framersai/agentos ([fc7cf50](https://github.com/framersai/agentos/commit/fc7cf50))

docs/memory/POSTGRES_BACKEND.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,5 +235,3 @@ await liveBrain.exportToSqlite('/tmp/alice-snapshot.sqlite');
235235
const forkBrain = await Brain.openPostgres(connStr, { brainId: 'alice-fork' });
236236
await forkBrain.importFromSqlite('/tmp/alice-snapshot.sqlite');
237237
```
238-
239-
See the design spec at [`packages/agentos/docs/superpowers/specs/2026-04-26-brain-storage-abstraction-design.md`](../superpowers/specs/2026-04-26-brain-storage-abstraction-design.md) for the full architecture.

0 commit comments

Comments
 (0)