A CLI for publishing standard.site documents to ATProto sequoia.pub
standard site lexicon cli publishing
57
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fix/text-content-type-guard 75 lines 1.1 kB view raw view rendered
1# Sequoia 2 3![cover](https://sequoia.pub/og.png) 4 5A CLI for publishing [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com). 6 7> [!NOTE] 8> [Visit the docs for more info](https://sequoia.pub) 9 10## Quickstart 11 12Install the CLI 13 14```bash 15pnpm i -g sequoia-cli 16``` 17 18Authorize 19 20```bash 21sequoia auth 22``` 23 24Initialize in your blog repo 25 26```bash 27sequoia init 28``` 29 30Publish your posts 31 32```bash 33sequoia publish 34``` 35 36Inject link tags for verification (optional) 37 38```bash 39sequoia inject 40``` 41 42[Full documentation](https://sequoia.pub) 43 44## Local Development 45 46Make sure [Bun](https://bun.com) is installed 47 48Clone the git repo and install dependencies 49 50```bash 51git clone git@tangled.org:stevedylan.dev/sequoia 52cd sequoia 53bun install 54``` 55 56Move into `packages/cli` and build/test 57 58```bash 59cd packages/cli 60bun dev 61``` 62 63## License 64 65MIT 66 67## Contact 68 69[ATProto](https://pds.ls/at://stevedylan.dev) 70 71[Email](mailto:contact@stavedylan.dev) 72 73<a href="https://ko-fi.com/stevedylandev" target="_blank" rel="noreferrer"> 74 <img width="200" src="https://files.stevedylan.dev/support_me_on_kofi_dark.png" alt="ko-fi badge" /> 75</a>