chore: updated readme 51513413
Steve · 2026-01-29 00:27 3 file(s) · +149 −6
LICENSE (added) +21 −0
1 +
MIT License
2 +
3 +
Copyright (c) 2026 Steve Simkins
4 +
5 +
Permission is hereby granted, free of charge, to any person obtaining a copy
6 +
of this software and associated documentation files (the "Software"), to deal
7 +
in the Software without restriction, including without limitation the rights
8 +
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 +
copies of the Software, and to permit persons to whom the Software is
10 +
furnished to do so, subject to the following conditions:
11 +
12 +
The above copyright notice and this permission notice shall be included in all
13 +
copies or substantial portions of the Software.
14 +
15 +
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 +
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 +
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 +
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 +
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 +
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 +
SOFTWARE.
README.md +60 −5
1 -
# at-publisher
1 +
# Sequoia
2 +
3 +
![cover](https://sequoia.pub/og.png)
4 +
5 +
A 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 +
12 +
Install the CLI
13 +
14 +
```bash
15 +
pnpm i -g sequoia-cli
16 +
```
17 +
18 +
Authorize
19 +
20 +
```bash
21 +
sequoia auth
22 +
```
23 +
24 +
Initialize in your blog repo
25 +
26 +
```bash
27 +
sequoia init
28 +
```
29 +
30 +
Publish your posts
31 +
32 +
```bash
33 +
sequoia publish
34 +
```
2 35
3 -
To install dependencies:
36 +
Inject link tags for verification (optional)
37 +
38 +
```bash
39 +
sequoia inject
40 +
```
41 +
42 +
[Full documentation](https://sequoia.pub)
43 +
44 +
## Local Development
45 +
46 +
Make sure [Bun](https://bun.com) is installed
47 +
48 +
Clone the git repo and install dependencies
4 49
5 50
```bash
51 +
git clone git@tangled.org:stevedylan.dev/sequoia
52 +
cd sequoia
6 53
bun install
7 54
```
8 55
9 -
To run:
56 +
Move into `packages/cli` and build/test
10 57
11 58
```bash
12 -
bun run index.ts
59 +
cd packages/cli
60 +
bun dev
13 61
```
14 62
15 -
This project was created using `bun init` in bun v1.3.5. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
63 +
## License 
64 +
65 +
MIT
66 +
67 +
## Contact
68 +
69 +
[ATProto](https://pds.ls/at://stevedylan.dev)
70 +
[Email](mailto:contact@stavedylan.dev)
packages/cli/README.md +68 −1
1 1
# Sequoia
2 2
3 -
A CLI for publishing [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com).
3 +
![cover](https://sequoia.pub/og.png)
4 +
5 +
A 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 +
12 +
Install the CLI
13 +
14 +
```bash
15 +
pnpm i -g sequoia-cli
16 +
```
17 +
18 +
Authorize
19 +
20 +
```bash
21 +
sequoia auth
22 +
```
23 +
24 +
Initialize in your blog repo
25 +
26 +
```bash
27 +
sequoia init
28 +
```
29 +
30 +
Publish your posts
31 +
32 +
```bash
33 +
sequoia publish
34 +
```
35 +
36 +
Inject link tags for verification (optional)
37 +
38 +
```bash
39 +
sequoia inject
40 +
```
41 +
42 +
[Full documentation](https://sequoia.pub)
43 +
44 +
## Local Development
45 +
46 +
Make sure [Bun](https://bun.com) is installed
47 +
48 +
Clone the git repo and install dependencies
49 +
50 +
```bash
51 +
git clone git@tangled.org:stevedylan.dev/sequoia
52 +
cd sequoia
53 +
bun install
54 +
```
55 +
56 +
Move into `packages/cli` and build/test
57 +
58 +
```bash
59 +
cd packages/cli
60 +
bun dev
61 +
```
62 +
63 +
## License 
64 +
65 +
MIT
66 +
67 +
## Contact
68 +
69 +
[ATProto](https://pds.ls/at://stevedylan.dev)
70 +
[Email](mailto:contact@stavedylan.dev)