Add Claude Code GitHub Action workflow (#1304)
Summary
- Adds a new GitHub Actions workflow that integrates Claude Code into the repository
- Enables @claude mentions in issues, PR comments, and PR reviews
- Claude can review code, answer questions, and create PRs to implement features
Setup Required
After merging, you’ll need to add the
ANTHROPIC_API_KEYsecret to the repository settings.Test plan
- Merge the PR
- Add the
ANTHROPIC_API_KEYsecret to repository settings- Create a test issue mentioning @claude to verify the workflow runs
🤖 Generated with Claude Code
#
Website | Python API | Rust API | Guide | Discord
Highlights
ros2.Latency benchmark with Python API for both framework, sending 40M of random bytes.
Latest News 🎉
2025
dora.builder, a new Pythonic API for imperatively definingdoradataflows.llama.cpp.Support Matrix
Rust ✅
C/C++ 🆗
ROS2 >= Foxy 🆗
MacOS: Arm 64 ⭐✅
Windows: x64_86 🆗
WSL: x64_86 🆗
Android: 🛠️ (Blocked by: https://github.com/elast0ny/shared_memory/issues/32)
IOS: 🛠️
Standard Specification 🛠️
Cuda IPC 📐
cargo: Rust Node ✅
Node Hub
The node hub is available in the
dora-rs/dora-hubrepository.Examples
=
Getting Started
Installation
Additional installation methods
Install dora with our standalone installers, or from crates.io:
With cargo
With Github release for macOS and Linux
With Github release for Windows
With Source
Run
To stop your dataflow, you can use ctrl+c
Documentation
The full documentation is available on our website. A lot of guides are available on this section of our website.
What is Dora? And what features does Dora offer?
Dataflow-Oriented Robotic Architecture (
dora-rs) is a framework that makes creation of robotic applications fast and simple.dora-rsimplements a declarative dataflow paradigm where tasks are split between nodes isolated as individual processes.The dataflow paradigm has the advantage of creating an abstraction layer that makes robotic applications modular and easily configurable.
TCP Communication and Shared Memory
Communication between nodes is handled with shared memory on a same machine and TCP on distributed machines. Our shared memory implementation tracks messages across processes and discards them when obsolete. Shared memory slots are cached to avoid new memory allocation.
Arrow Message Format
Nodes communicate with Apache Arrow Data Format.
Apache Arrow is a universal memory format for flat and hierarchical data. The Arrow memory format supports zero-copy reads for lightning-fast data access without serialization overhead. It defines a C data interface without any build-time or link-time dependency requirement, that means that
dora-rshas no compilation step beyond the native compiler of your favourite language.Opentelemetry
dora-rs uses Opentelemetry to record all your logs, metrics and traces. This means that the data and telemetry can be linked using a shared abstraction.
Opentelemetry is an open source observability standard that makes dora-rs telemetry collectable by most backends such as elasticsearch, prometheus, Datadog…
Opentelemetry is language independent, backend agnostic, and easily collect distributed data, making it perfect for dora-rs applications.
ROS2 Bridge
Note: this feature is marked as unstable.
Contributing
We are passionate about supporting contributors of all levels of experience and would love to see you get involved in the project. See the contributing guide to get started.
Discussions
Our main communication channels are:
Feel free to reach out on any topic, issues or ideas.
We also have a contributing guide.
License
This project is licensed under Apache-2.0. Check out NOTICE.md for more information.
Further Resources 📚