An Elixir toolkit for the AT Protocol. hexdocs.pm/atex
elixir bluesky atproto decentralization

chore: remove old script, update README & AGENTS

ovyerus.com 15d582e7 2a975513

verified
+6 -15
-2
AGENTS.md
··· 35 35 36 36 ## Important Notes 37 37 38 - - **DO NOT modify** `lib/atproto/**/` - autogenerated from official AT Protocol 39 - lexicons 40 38 - **Update CHANGELOG.md** when adding features, changes, or fixes
+6 -2
README.md
··· 16 16 - With integration for generated Lexicon structs! 17 17 - [ ] Repository reading and manipulation (MST & CAR) 18 18 - [ ] Service auth 19 - - [ ] PLC client 19 + - [x] PLC client 20 20 21 - Looking to use a data subscription service like the Firehose, [Jetstream](https://docs.bsky.app/blog/jetstream), or [Tap](https://github.com/bluesky-social/indigo/blob/main/cmd/tap/README.md)? Check out [Drinkup](https://tangled.org/comet.sh/drinkup) 21 + Looking to use a data subscription service like the Firehose, [Jetstream], or [Tap]? Check out [Drinkup]. 22 + 23 + [Jetstream]: https://docs.bsky.app/blog/jetstream 24 + [Tap]: https://github.com/bluesky-social/indigo/blob/main/cmd/tap/README.md 25 + [Drinkup]: https://tangled.org/comet.sh/drinkup 22 26 23 27 ## Installation 24 28
-11
bump_builtin_lexicons.sh
··· 1 - #!/usr/bin/env bash 2 - 3 - set -euo pipefail 4 - 5 - SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" 6 - cd "$SCRIPT_DIR" 7 - 8 - mkdir -p ./tmp 9 - git clone --depth 1 --single-branch https://github.com/bluesky-social/atproto.git ./tmp/atproto 10 - mix atex.lexicons ./tmp/atproto/lexicons/com/atproto/**/*.json 11 - rm -rf ./tmp