@scribe-atp/core
v3.11.0
Published
Pure TypeScript fetch functions, PDS resolution, and types for reading Scribe CMS content from the AT Protocol.
Maintainers
Readme
@scribe-atp/core
Framework-agnostic TypeScript functions for reading Scribe CMS content from the AT Protocol. No runtime dependencies.
This is the foundation of the Scribe ATP SDK — all framework adapters (@scribe-atp/react, @scribe-atp/angular, etc.) build on top of it.
Installation
npm install @scribe-atp/coreUsage
Fetch a site
A site is an author's publication — it contains their article groups, metadata, and splash image.
import { fetchSite } from "@scribe-atp/core";
const site = await fetchSite("alice.bsky.social", "https://alice.bsky.social");
console.log(site.title);
console.log(site.groups); // published article groups
console.log(site.ungroupedArticles); // unpublished / draft articles
console.log(site.urlPrefix); // path prefix, e.g. "blog" — may be emptyFetch an article by slug
fetchArticleBySlug resolves an article within a known publication. It fetches the site first (using the cache if available), locates the article ref by slug, then fetches the full article record. Returns the article and its AT URI together — the URI is needed for social interactions.
import { fetchArticleBySlug } from "@scribe-atp/core";
const { article, uri } = await fetchArticleBySlug(
"alice.bsky.social",
"https://alice.bsky.social",
"my-first-post"
);
console.log(article.title);
console.log(article.content); // full HTML string
console.log(article.description); // short summary for cards and meta tags
console.log(uri); // AT URI — "at://did:plc:.../site.standard.document/3abc..."Use this when rendering an article page. Pass uri to @scribe-atp/social's LikeButton.
Fetch an article directly
If you don't need the AT URI, fetchArticle skips the site lookup:
import { fetchArticle } from "@scribe-atp/core";
const article = await fetchArticle("alice.bsky.social", "my-first-post");
console.log(article.title);
console.log(article.content);List all sites
When you need to discover every site an author has published — for example, to build a browser or reader interface — use listSites:
import { listSites, slugFromUri } from "@scribe-atp/core";
const sites = await listSites("alice.bsky.social");
for (const site of sites) {
const siteRkey = slugFromUri(site.uri); // the record key (a TID), e.g. "3mp4nd46xwr2h"
console.log(site.title, site.groups);
}List all articles
listArticles returns lightweight ArticleRef objects for every article in the author's repository, regardless of publication state:
import { listSites, listArticles } from "@scribe-atp/core";
const [sites, articles] = await Promise.all([
listSites("alice.bsky.social"),
listArticles("alice.bsky.social"),
]);
// derive which articles are drafts (not referenced in any site record)
const referencedUris = new Set(
sites.flatMap((s) => [
...s.groups.flatMap((g) => g.articles),
...s.ungroupedArticles,
]).map((a) => a.uri)
);
const drafts = articles.filter((a) => !referencedUris.has(a.uri));Both functions handle cursor-based pagination automatically and accept an optional AbortSignal.
AbortSignal
All fetch functions accept an optional AbortSignal as their final argument:
const site = await fetchSite("alice.bsky.social", "https://alice.bsky.social", request.signal);Utilities
import { slugFromUri, flattenArticles } from "@scribe-atp/core";
slugFromUri("at://did:plc:abc/site.standard.document/3mp4hfovqib2h"); // → "3mp4hfovqib2h"
flattenArticles(site.groups); // → ArticleRef[] across all groupsFeed & Sitemap
Generate an RSS 2.0 feed or an XML sitemap from a fetched Site object. Both functions are pure — they produce a string and make no network requests.
RSS feed
import { fetchSite, generateFeed } from "@scribe-atp/core";
const site = await fetchSite("alice.bsky.social", "https://alice.bsky.social");
const xml = generateFeed(site, {
baseUrl: "https://alice.bsky.social",
feedUrl: "https://alice.bsky.social/feed.xml", // adds <atom:link rel="self">
language: "en", // defaults to "en"
limit: 20, // cap items; omit to include all
});
// In a server handler:
return new Response(xml, {
headers: { "Content-Type": "application/rss+xml; charset=utf-8" },
});Only published articles (from site.groups) are included. Draft articles in site.ungroupedArticles are excluded.
Sitemap entries
getSitemapEntries returns structured data — not XML — so you can merge Scribe URLs into your own framework's sitemap generator alongside non-Scribe pages (portfolio, contact, etc.).
import { fetchSite, getSitemapEntries } from "@scribe-atp/core";
const site = await fetchSite("alice.bsky.social", "https://alice.bsky.social");
const entries = getSitemapEntries(site, {
baseUrl: "https://alice.bsky.social",
});
// [
// { url: "https://alice.bsky.social" },
// { url: "https://alice.bsky.social/blog" },
// { url: "https://alice.bsky.social/blog/essays/first-post", lastmod: "2024-01-15" },
// ...
// ]Each entry is { url: string, lastmod?: string }. Merge with your own routes and pass to your framework's sitemap generator. Article entries include lastmod when updatedAt is available. Draft articles in site.ungroupedArticles are excluded.
Open Graph and Twitter Card meta tags
generateArticleMeta and generateSiteMeta produce Open Graph and Twitter Card meta tags for an article or site page. These are the tags that drive rich link previews when sharing URLs on Bluesky, Twitter/X, Slack, and other platforms.
The output is a ScribeMetaTag[] array — a framework-neutral format. Use a framework adapter (e.g. @scribe-atp/react-router-framework) to convert this to your framework's meta format, or consume it directly:
import { fetchArticleBySlug, fetchSite, generateArticleMeta, generateSiteMeta } from "@scribe-atp/core";
const { article } = await fetchArticleBySlug("alice.bsky.social", "https://alice.bsky.social", "my-post");
const site = await fetchSite("alice.bsky.social", "https://alice.bsky.social");
const articleTags = generateArticleMeta(article, site);
// [
// { title: "My Post — Alice's Blog" },
// { property: "og:type", content: "article" },
// { property: "og:title", content: "My Post" },
// { property: "og:url", content: "https://alice.bsky.social/blog/my-post" },
// { property: "og:site_name", content: "Alice's Blog" },
// { property: "og:description", content: "..." },
// { name: "twitter:card", content: "summary_large_image" },
// ...
// ]
const siteTags = generateSiteMeta(site);
// tags for a blog index or home pagebuildCanonicalUrl is also exported — it derives the full article URL from article.canonicalUrl (if set) or by combining article.site, site.urlPrefix, and article.path:
import { buildCanonicalUrl } from "@scribe-atp/core";
const url = buildCanonicalUrl(article, site);
// → "https://alice.bsky.social/blog/my-first-post"Cross-posting to Bluesky
crossPostToBluesky creates an app.bsky.feed.post in the author's repository with an external embed that includes associatedRefs pointing to the site.standard.document and site.standard.publication records. This produces the rich Bluesky link card for standard.site content. It returns a StrongRef { uri, cid } that should be written back to the site.standard.document record as bskyPostRef.
This function requires an authenticated AT Protocol agent — it is intended for CMS integrations, not consumer-facing reader apps.
import { crossPostToBluesky } from "@scribe-atp/core";
const postRef = await crossPostToBluesky(agent, {
did: "did:plc:abc123", // authenticated author DID
documentUri: "at://did:plc:abc123/site.standard.document/3tid",
documentCid: "bafyreiabc...",
publicationUri: "at://did:plc:abc123/site.standard.publication/3tid",
publicationCid: "bafyreidef...",
canonicalUrl: "https://alice.bsky.social/blog/my-post",
title: "My Post",
text: "My Post https://alice.bsky.social/blog/my-post", // editable post message
description: "A short summary.", // optional
thumbBlob: uploadedBlobRef, // optional — upload via agent.uploadBlob first
});
// postRef = { uri: "at://did:plc:abc123/app.bsky.feed.post/3abc", cid: "bafy..." }
// Write this as bskyPostRef on the site.standard.document record.agent can be any object with a com.atproto.repo.createRecord method — the Agent from @atproto/api satisfies this automatically.
TypeScript types
import type {
Site,
SiteRecord,
Article,
ArticleRef,
ArticleResult,
ArticleContributor,
SiteGroup,
ScribeMetaTag,
CrossPostParams,
StrongRef,
} from "@scribe-atp/core";| Type | Description |
| ---- | ----------- |
| Site | An author's full publication. |
| SiteRecord | A Site with a uri field — the AT URI of the record. Returned by listSites. |
| Article | A single article with full HTML content. |
| ArticleResult | { article: Article; uri: string } — returned by fetchArticleBySlug. |
| ArticleContributor | { did: string; role?: string; displayName?: string } — contributor metadata on an article. |
| SiteGroup | A named group of articles within a site. |
| ArticleRef | Lightweight article snapshot for rendering lists without N+1 fetches. |
| ScribeMetaTag | Union of { title }, { name, content }, and { property, content } — the output of generateArticleMeta / generateSiteMeta. |
| CrossPostParams | Parameters for crossPostToBluesky — document/publication refs, canonical URL, title, text, and optional description/thumb. |
| StrongRef | { uri: string; cid: string } — an AT Protocol strong reference. Returned by crossPostToBluesky. |
How it works
Scribe content is stored on the AT Protocol. Each author's articles live on their own Personal Data Server (PDS), which may be hosted anywhere. This package resolves the correct PDS for each author automatically — handling both did:plc and did:web identities — and caches DID document lookups in memory for the lifetime of the module.
fetchSite also caches each resolved publication's AT URI for 60 seconds to avoid a listRecords call on every request. If a cached URI stops resolving — for example, the site.standard.publication record was deleted and a new one created for the same domain — fetchSite automatically falls back to a fresh lookup instead of failing, so long-running server processes self-heal without needing a restart.
Framework adapters
| Package | Framework |
| ------- | --------- |
| @scribe-atp/react | React 18+ hooks |
| @scribe-atp/react-router-framework | React Router v7 framework mode |
| @scribe-atp/angular | Angular 16+ |
| @scribe-atp/next | Next.js 13+ App Router |
| @scribe-atp/vue | Vue 3 |
| @scribe-atp/nuxt | Nuxt 3 |
| @scribe-atp/social | React Like and Subscribe buttons |
