···4455## Project Overview
6677-Sequoia is a CLI tool for publishing Markdown documents with frontmatter to the AT Protocol (Bluesky's decentralized social network). It converts blog posts into ATProto records (`site.standard.document`, `space.litenote.note`) and publishes them to a user's PDS.
77+Sequoia is a CLI tool for publishing Markdown documents with frontmatter to the AT Protocol (Bluesky's decentralized social network). It converts blog posts into ATProto records (`site.standard.document`, `space.remanso.note`) and publishes them to a user's PDS.
8899Website: <https://sequoia.pub>
1010···63636464**Extensions** (`src/extensions/`):
65656666-- `litenote.ts` — Creates `space.litenote.note` records with embedded images
6666+- `remanso.ts` — Creates `space.remanso.note` records with embedded images
67676868## Key Patterns
6969
+2-2
packages/cli/src/commands/publish.ts
···2626} from "../lib/markdown";
2727import type { BlogPost, BlobObject, StrongRef } from "../lib/types";
2828import { exitOnCancel } from "../lib/prompts";
2929-import { createNote, updateNote, findPostsWithStaleLinks, type NoteOptions } from "../extensions/litenote"
2929+import { createNote, updateNote, findPostsWithStaleLinks, type NoteOptions } from "../extensions/remanso"
30303131export const publishCommand = command({
3232 name: "publish",
···419419 }
420420 }
421421422422- // Pass 2: Create/update litenote notes (atUris are now available for link resolution)
422422+ // Pass 2: Create/update Remanso notes (atUris are now available for link resolution)
423423 for (const { post, action, atUri } of noteQueue) {
424424 try {
425425 if (action === "create") {