+17
README.md
+17
README.md
···
2
2
3
3
AT Protocol IPLD-CAR Repository toolkit
4
4
5
+
## Install
6
+
7
+
```
8
+
go install github.com/atscan/atr
9
+
```
10
+
5
11
## Examples
6
12
13
+
Scans the current directory (and its subdirectories) and prints information about all found repositories:
14
+
```bash
15
+
atr inspect
16
+
```
17
+
18
+
Return all objects from the repository:
19
+
```bash
20
+
atr show my-repo.car
21
+
```
22
+
23
+
Repositories can also be read via pipe:
7
24
```bash
8
25
curl 'https://bsky.social/xrpc/com.atproto.sync.getRepo?did=did:plc:524tuhdhh3m7li5gycdn6boe' | atr show
9
26
```