···11+Copyright 2025 comet.sh
22+33+Permission is hereby granted, free of charge, to any person obtaining a copy of
44+this software and associated documentation files (the “Software”), to deal in
55+the Software without restriction, including without limitation the rights to
66+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
77+the Software, and to permit persons to whom the Software is furnished to do so,
88+subject to the following conditions:
99+1010+The above copyright notice and this permission notice shall be included in all
1111+copies or substantial portions of the Software.
1212+1313+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1414+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1515+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1616+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1717+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1818+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+19-8
README.md
···11-# Atex
11+# atex
22+33+A set of utilities for working with the [AT Protocol](https://atproto.com) in
44+Elixir.
55+66+## Current Roadmap (in no particular order)
2733-**TODO: Add description**
88+- [x] `at://` parsing and struct
99+- [ ] XRPC client
1010+- [ ] CID & TID codecs
1111+- [ ] DID & handle resolution service with a cache
1212+- [ ] Structs with validation for the common lexicons
1313+ - [ ] Probably codegen for doing this with other lexicons
1414+- [ ] Oauth stuff
415516## Installation
61777-If [available in Hex](https://hex.pm/docs/publish), the package can be installed
88-by adding `atex` to your list of dependencies in `mix.exs`:
1818+Get atex from [hex.pm](https://hex.pm) by adding it to your `mix.exs`:
9191020```elixir
1121def deps do
1222 [
1313- {:atex, "~> 0.1.0"}
2323+ {:atex, "~> 0.1"}
1424 ]
1525end
1626```
17271818-Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
1919-and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
2020-be found at <https://hexdocs.pm/atex>.
2828+Documentation can be found on HexDocs at https://hexdocs.pm/atex.
21293030+---
3131+3232+This project is licensed under the [MIT License](./LICENSE).