Metadata-Version: 2.4
Name: pdsx
Version: 0.0.1a1
Summary: general-purpose cli for atproto record operations
Author-email: zzstoatzz <thrast36@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: atproto,bluesky,cli,pds,records
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: atproto>=0.0.63
Requires-Dist: pydantic-settings>=2.7.0
Requires-Dist: rich>=13.0.0
Description-Content-Type: text/markdown

# pdsx

general-purpose cli for atproto record operations

## installation

```bash
uv add pdsx
# or
uvx pdsx --help
```

## quick start

set your credentials:

```bash
export ATPROTO_HANDLE=your.handle
export ATPROTO_PASSWORD=your-password
```

list posts (compact format by default):

```bash
pdsx ls app.bsky.feed.post --limit 10
```

json output for jq:

```bash
pdsx ls app.bsky.feed.post -o json | jq '.[].text'
```

table view:

```bash
pdsx ls app.bsky.feed.post -o table
```

## features

- crud operations for atproto records (list, get, create, update, delete)
- multiple output formats: compact (default), json, yaml, table
- unix-style command aliases: `ls`, `cat`, `rm`, `edit`, `touch`/`add`
- clean json output for jq/pipe interoperability
- tty-aware formatting
- type-safe with strict typing
- python 3.10+ support

## usage

### list records

```bash
# using full command
pdsx list app.bsky.feed.post --limit 5

# using alias
pdsx ls app.bsky.feed.post --limit 5 -o json
```

### get a record

```bash
# using full command
pdsx get at://did:plc:example/app.bsky.feed.post/123

# using alias
pdsx cat at://did:plc:example/app.bsky.feed.post/123
```

### create a record

```bash
pdsx create app.bsky.feed.like subject='at://...' createdAt='2024-01-01T00:00:00Z'

# using alias
pdsx touch app.bsky.feed.like subject='at://...' createdAt='2024-01-01T00:00:00Z'
```

### update a record

```bash
pdsx update at://did:plc:example/app.bsky.feed.post/123 text='updated text'

# using alias
pdsx edit at://did:plc:example/app.bsky.feed.post/123 text='updated text'
```

### delete a record

```bash
pdsx delete at://did:plc:example/app.bsky.feed.post/123

# using alias
pdsx rm at://did:plc:example/app.bsky.feed.post/123
```

## output formats

### compact (default)

one line per record with json:

```
app.bsky.feed.post (3 records)
3m4ryxwq5dt2i: {"created_at":"2025-11-04T07:25:17.061883+00:00","text":"..."}
3m4ryxvw4l32z: {"created_at":"2025-11-04T07:25:16.201083+00:00","text":"..."}
```

### json

clean json for piping to jq:

```bash
pdsx ls app.bsky.feed.post -o json | jq '.[].text'
```

### table

pretty table for terminal viewing:

```bash
pdsx ls app.bsky.feed.post -o table
```

## examples

<details>
<summary>click to see real-world examples</summary>

### read anyone's bio
```bash
uvx pdsx --repo did:plc:o53crari67ge7bvbv273lxln list app.bsky.actor.profile -o json | \
  jq -r '.[0].description'
```

### update your bio
```bash
export ATPROTO_HANDLE=your.handle ATPROTO_PASSWORD=your-password
uvx pdsx edit app.bsky.actor.profile/self description='new bio'
```

### read anyone's posts
```bash
uvx pdsx -r did:plc:o53crari67ge7bvbv273lxln list app.bsky.feed.post --limit 5 -o json | \
  jq -r '.[] | .text'
```

**atproto gives you full read access to anyone's public data. auth only required for writes.**

</details>

## development

```bash
# clone repo
git clone https://github.com/zzstoatzz/pdsx
cd pdsx

# install with dev dependencies
uv sync

# run tests
uv run pytest

# run type checker
uv run ty check

# run pre-commit hooks
uv run prek run --all-files
```

## license

mit
