Skip to content

myConsciousness/atproto.dart

atproto.dart

AT Protocol and Bluesky Social Things for Dart/Flutter


Test/Analyzer License Contributor Covenant GitHub Sponsor melos Reference


Welcome to atproto.dart πŸ¦‹

The comprehensive Dart/Flutter SDK for the AT Protocol ecosystem - empowering developers to build the next generation of decentralized social applications with Bluesky and beyond.

1. About atproto.dart πŸ’ͺ

The AT Protocol represents a paradigm shift toward decentralized social networking, and Bluesky is leading this transformation. As the ecosystem grows rapidly with millions of users and thousands of developers building innovative applications, the need for robust, well-designed development tools has never been greater.

atproto.dart is the most comprehensive and battle-tested SDK for AT Protocol development in Dart and Flutter. Whether you're building mobile apps, web applications, bots, or backend services, our SDK provides everything you need to integrate with the AT Protocol ecosystem efficiently and reliably.

Why Choose atproto.dart?

For Mobile & Web Developers:

  • Build cross-platform social apps with Flutter using production-ready AT Protocol integration
  • Access the complete Bluesky API including posts, feeds, profiles, messaging, and moderation
  • Leverage built-in OAuth DPoP authentication for secure user sessions

For Backend & Bot Developers:

  • Create powerful automation tools and bots with comprehensive API coverage
  • Process real-time data streams using our optimized Firehose implementation
  • Build custom AT Protocol services and bridges to other platforms

For AT Protocol Enthusiasts:

  • Work with all core AT Protocol primitives: DIDs, NSIDs, AT URIs, Lexicons, and XRPC
  • Contribute to the growing ecosystem of decentralized social applications
  • Access cutting-edge features as the protocol evolves

Proven in Production: Used by popular applications like SkyFeed, deck.blue, SkyThrow, and many others serving thousands of users daily. Our SDK is actively maintained, thoroughly tested, and designed for the demands of production applications.

2. Package Ecosystem πŸ“¦

The atproto.dart ecosystem is organized into focused packages that work together seamlessly. Choose the packages that match your project's needs, from low-level AT Protocol primitives to high-level client libraries.

2.1. Core Libraries

Foundation packages for AT Protocol primitives and data structures

Package Description pub.dev Docs
at_identifier AT Protocol identifier validation and parsing pub package README
nsid NSID parsing and validation for method/schema identification pub package README
at_uri AT URI parsing for resource identification pub package README
xrpc XRPC HTTP client with built-in retry and error handling pub package README
multiformats IPFS multiformats support for content addressing (CIDs, multihash, etc.) pub package README
lexicon Lexicon schema parsing and validation pub package README
atproto_core Shared utilities and base functionality for AT Protocol clients pub package README

2.2. Client Libraries

High-level API clients for AT Protocol services

Package Description pub.dev Docs
atproto Complete AT Protocol client (com.atproto.* endpoints) with Firehose support pub package README / GUIDE
bluesky Full-featured Bluesky client (app.bsky.*, chat.bsky.* + AT Protocol) pub package README / GUIDE
atproto_oauth OAuth DPoP authentication client for secure user sessions pub package README
did_plc PLC Directory client for DID resolution and management pub package README

2.3. Utilities & Tools

Specialized packages for text processing

Package Description pub.dev Docs
bluesky_text Rich text parsing for mentions, links, hashtags, and formatting pub package README / GUIDE

2.4. CLI Tool

Tool Install Docs
bluesky_cli: command line tool for app.bsky.* endpoints dart pub global activate bluesky_cli README

2.5. GitHub Actions Workflow

Workflow Marketplace Docs
bluesky-post: workflow for scheduled post to Bluesky from GitHub Actions bluesky-post README

3. Quick Start Guide πŸš€

Get up and running with AT Protocol and Bluesky in minutes. Choose your use case below:

3.1. Building a Bluesky Social App

Perfect for creating mobile apps, web clients, or social features.

dart pub add bluesky
import 'package:atproto/atproto.dart';
import 'package:bluesky/bluesky.dart';

void main() async {
  // Create authenticated session
  final session = await createSession(
    identifier: 'your-handle.bsky.social',
    password: 'your-password',
  );

  final bsky = Bluesky.fromSession(session.data);

  // Post to Bluesky
  await bsky.feed.post.create(text: 'Hello from atproto.dart!');

  // Get your timeline
  final timeline = await bsky.feed.getTimeline();
  for (final post in timeline.data.feed) {
    print('${post.post.author.displayName}: ${post.post.record}');
  }
}

Next Steps:

3.2. Building AT Protocol Services

Ideal for bots, backend services, or custom AT Protocol implementations.

dart pub add atproto
import 'package:atproto/atproto.dart';
import 'package:atproto/firehose.dart';

import 'package:atproto/com_atproto_sync_subscriberepos.dart';

void main() async {
  final session = await createSession(
    service: 'https://bsky.social',
    identifier: 'your-handle.bsky.social',
    password: 'your-password',
  );

  // Connect to any AT Protocol service
  final atproto = ATProto.fromSession(session.data);

  // Create a record
  await atproto.repo.createRecord(
    repo: 'your-did',
    collection: 'app.bsky.feed.post',
    record: {
      'text': 'Hello AT Protocol!',
      'createdAt': DateTime.now().toIso8601String(),
    },
  );

  final subscription = await atproto.sync.subscribeRepos();

  // Listen to the Firehose for real-time updates
  await for (final event in subscription.data.stream) {
    final repos = const SyncSubscribeReposAdaptor().execute(event);

    repos.whenOrNull(
      commit: (data) {
        print('New commit: ${data.repo}');
      },
    );
  }
}

Next Steps:

4. Project Development Setup πŸ› οΈ

Contributing to atproto.dart or setting up the development environment? This project uses Melos for efficient monorepo management across all packages.

4.1. Prerequisites

  • Dart SDK: Version 3.8.0 or higher (Install Dart)
  • Git: For cloning and version control
  • IDE: VS Code, IntelliJ, or any Dart-compatible editor

4.2. Quick Setup

# Clone the repository
git clone https://github.com/myConsciousness/atproto.dart.git
cd atproto.dart

# Install Melos globally
dart pub global activate melos

# Set up all packages (dependencies, code generation, etc.)
melos setup

The melos setup command handles everything: installing dependencies, running code generation, and preparing the development environment across all packages.

4.3. Development Commands

Command Description
melos setup Complete project setup - run this first!
melos get Install dependencies for all packages
melos analyze Run static analysis across all packages
melos test Execute all tests in the project
melos fmt Format code and organize imports
melos build Run code generation for all packages
melos gen Generate API clients from Lexicon schemas

4.4. Troubleshooting

Setup Issues:

  • "melos command not found": Ensure ~/.pub-cache/bin is in your PATH, or run dart pub global activate melos
  • Build failures: Try melos clean followed by melos setup to reset the environment
  • Version conflicts: Ensure you're using Dart 3.8.0+ with dart --version

Development Issues:

  • Import errors: Run melos build to regenerate code
  • Test failures: Check if you need to run melos gen to update generated API clients
  • Dependency issues: Use melos get to refresh all package dependencies

Need Help?

4.5. Contributing

We welcome contributions! Whether you're fixing bugs, adding features, or improving documentation:

  1. Fork the repository and create a feature branch
  2. Make your changes following our coding standards (melos fmt helps!)
  3. Add tests for new functionality (melos test to verify)
  4. Update documentation if needed
  5. Submit a pull request with a clear description

See our Contribution Guidelines for detailed information about the development process, coding standards, and how to submit changes.

5. Who is using atproto.dart? πŸ‘€

The following projects/services are using atproto.dart packages:

You can see more at showcase, special thanks!

6. Support

About

πŸ¦‹ Production-Ready AT Protocol & Bluesky SDK for Flutter & Dart πŸ’™

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Sponsor this project

 

Contributors 11

Languages