Official website and docs for the FILESYSTEM.md standard: a filesystem-first contract for agent identity, memory, execution, and interoperability.
- Manifesto post:
/posts/filesystem-manifesto/ - Getting started guide:
/getting-started/ - Standards comparison:
/compare/ - FAQ:
/faq/ - Community + contribution guidance:
/community/ - Showcase:
/showcase/ - Reading list:
/readinglist/
Legacy manifesto paths are redirected in astro.config.ts:
/manifesto/filesystem-manifesto/filesystem
All redirect to /posts/filesystem-manifesto/.
- Astro 5
- Tailwind CSS 4
- Cloudflare adapter (
@astrojs/cloudflare) - Astro Content Collections for docs/posts
src/
content/
docs/ # standalone documentation pages
post/ # blog posts, including the manifesto post
pages/ # route entrypoints (.astro + .md.ts raw endpoints)
site.config.ts # site metadata + menu links
astro.config.ts # Astro config + redirects + integrations
npm install
npm run devOpen http://localhost:4321.
npm run buildOptional search index build:
npm run postbuildEdit files under src/content/docs/:
getting-started.mdcompare.mdfaq.mdcommunity.mdshowcase.mdreadinglist.md
Routes are served by matching files in src/pages/ (for example src/pages/faq.astro).
- Primary post:
src/content/post/filesystem-manifesto.md - Home CTA and landing blocks:
src/pages/index.astro
- Header/footer links:
src/site.config.ts(menuLinks)
These routes return markdown source directly:
/filesystem.md/showcase.md/readinglist.md/getting-started.md/compare.md/faq.md/community.md
Implemented in src/pages/*.md.ts.
Configured for Cloudflare via @astrojs/cloudflare in astro.config.ts.
Before production deploy:
- Set the canonical URL in
src/site.config.ts(siteConfig.url). - Review
wrangler.jsonbindings/environment. - Run
npm run build.
MIT