{"id":15063574,"url":"https://github.com/zoedsoupe/proto_rune","last_synced_at":"2025-04-10T11:12:10.208Z","repository":{"id":257045299,"uuid":"851314859","full_name":"zoedsoupe/proto_rune","owner":"zoedsoupe","description":"ATProtocol and Bluesky framework for Elixir, make bots, labelers, app views and more (WIP)","archived":false,"fork":false,"pushed_at":"2025-03-13T00:35:03.000Z","size":4454,"stargazers_count":24,"open_issues_count":14,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T07:59:15.869Z","etag":null,"topics":["atproto","elixir","sdk"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zoedsoupe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"zoedsoupe","patreon":null,"open_collective":"zoedsoupe","ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-09-02T21:27:38.000Z","updated_at":"2025-03-23T16:39:48.000Z","dependencies_parsed_at":"2024-09-14T14:55:02.341Z","dependency_job_id":"78fde3c8-ecd1-47b9-8d77-f9144e738639","html_url":"https://github.com/zoedsoupe/proto_rune","commit_stats":null,"previous_names":["zoedsoupe/atproto"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoedsoupe%2Fproto_rune","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoedsoupe%2Fproto_rune/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoedsoupe%2Fproto_rune/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoedsoupe%2Fproto_rune/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zoedsoupe","download_url":"https://codeload.github.com/zoedsoupe/proto_rune/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248011948,"owners_count":21033100,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["atproto","elixir","sdk"],"created_at":"2024-09-25T00:04:36.271Z","updated_at":"2025-04-10T11:12:10.190Z","avatar_url":"https://github.com/zoedsoupe.png","language":"Elixir","funding_links":["https://github.com/sponsors/zoedsoupe","https://opencollective.com/zoedsoupe"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ch1\u003eProtoRune\u003c/h1\u003e\n  \u003cp\u003e\u003cstrong\u003eA type-safe, well-documented AT Protocol SDK and bot framework for Elixir\u003c/strong\u003e\u003c/p\u003e\n\u003c/p\u003e\n\n\u003e [!WARNING]\n\u003e\n\u003e This library is under active development and isn't production ready, expect breaking chnages\n\n## Installation\n\n```elixir\ndef deps do\n  [\n    {:proto_rune, \"~\u003e 0.1.0\"}\n  ]\nend\n```\n\n## Quick Start\n\n```elixir\n# Create a session\n{:ok, session} = ProtoRune.create_session(\"handle.bsky.social\", \"app-password\")\n\n# Post something\n{:ok, post} = ProtoRune.Client.create_post(session, \"Hello from Elixir!\")\n\n# Create a bot\ndefmodule MyBot do\n  use ProtoRune.Bot, name: :my_bot, strategy: :polling\n\n  @impl true\n  def handle_event(:like, %{uri: uri, user: user}) do\n    # Handle like event\n  end\nend\n\nMyBot.start_link()\n```\n\n## Examples\n\n- [Simple bot with event handling](examples/simple_bot.ex)\n- [Post with rich text and embeds](examples/rich_post.ex) \n- [Custom feed generator](examples/feed_generator.ex)\n- [Firehose subscription](examples/firehose.ex)\n\n## Architecture\n\nProtoRune is organized into focused modules:\n\n- `ATProto` - Core protocol implementation (repo, identity, etc)\n- `Bsky` - Bluesky-specific features (feed, graph, notifications) \n- `Bot` - Bot framework with polling/firehose support\n- `XRPC` - Low-level XRPC client\n- `Lexicons` - Generated code from AT Protocol lexicons\n\n\u003e Other submodules do exist like `ProtoRune.HTTPClient` but it are to be used internally\n\n## Documentation\n\nFull documentation is available at [hexdocs.pm/proto_rune](https://hexdocs.pm/proto_rune).\n\nThe guide covers:\n- [Getting Started](guides/getting_started.md)\n- [Bot Development](guides/bots.md)\n- [Working with Records](guides/records.md)\n- [XRPC Client Usage](guides/xrpc.md)\n- [Identity Management](guides/identity.md)\n\n## Contributing\n\nPull requests welcome! See our [Contributing Guide](CONTRIBUTING.md).\n\n## Inspirations\n\n1. [Skyware](https://skyware.js.org/)\n2. [atcute](https://github.com/mary-ext/atcute)\n3. [Python AT Proto SDK](https://github.com/MarshalX/atproto)\n\n## License\n\nMIT License - see [LICENSE](./LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoedsoupe%2Fproto_rune","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzoedsoupe%2Fproto_rune","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoedsoupe%2Fproto_rune/lists"}