Keep static release assets organized.
Publish a readable catalog and machine-friendly manifest beside static assets. Release reviewers get one source for files, cache policy, checksums, and public paths.
A small publishing layer for files teams already ship.
Release manifest
Describe each release with version, asset list, checksum notes, public page references, and source context. The manifest stays readable for engineers, writers, and build automation.
Asset catalog
Keep filenames, file types, sizes, versions, and public references in one static HTML or JSON-friendly index.
Cache policy notes
Document which files can be cached for a day, a week, or only briefly after publication.
Checksum references
Attach short checksum values to files so release reviewers can compare expected and published assets.
Current files from the Aether Static 2.2.0 release.
Simple enough to add to an existing static publishing process.
- Prepare assetsCollect stylesheets, indexes, SVGs, notes, and status files from the release build.
- Write manifestRecord version, asset names, checksums, cache rules, and public references.
- Publish static filesUpload the catalog and references next to the released assets.
- Review cache behaviorConfirm short-lived files and long-lived files have the intended headers.
Publish the catalog next to the files your team already serves.
Recommended file structure
/catalog/index.json
/releases/[email protected]
/assets/product.css
/assets/logo.png
/status.json
/releases/feed.xml
Integration example
Read the catalog from a build note, docs page, or release checklist without adding a database.
curl https://aetherstatic.com/catalog/index.json
fetch("/catalog/index.json")
.then((res) => res.json())
.then((catalog) => {
console.log(catalog.release, catalog.assets.length);
});
Documentation preview
Status
- Catalog
- Online
- Manifest
- Available
- Docs
- Available
- Last updated
- July 10, 2026
Practical answers for teams publishing static files.
Is this a CDN?
No. Aether Static is a catalog and documentation layer. It describes what was published, where files live, and how cache rules should be read.
Can it work with existing static hosting?
Yes. Catalogs and manifests are plain HTML and JSON files, so they can sit beside assets on object storage, static hosting, or a docs site.
Do I need a backend?
No backend is required for the public catalog. Teams can generate the JSON during a release job and publish it with the rest of the static output.
How are cache rules documented?
Each row can include a short cache note, such as "10 minutes" for search indexes or "7 days" for versioned SVG sprites.
Aether Static
View catalog