Skip to content
View tommed's full-sized avatar
🟣
Working on Ducto
🟣
Working on Ducto

Block or report tommed

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
tommed/README.md

Ducto Logo

Ducto

🟣 What is Ducto?

Ducto is an open-source, modular, and declarative transformation engine designed to manipulate structured data (JSON-like objects) using simple, embeddable, and powerful instructions.

Ducto aims to bridge the gap between raw event streams, ETL pipelines, and dynamic data-driven systems by providing a flexible Domain Specific Language (DSL) that allows you to:

  • Filter, mutate, and reshape incoming data
  • Perform conditional logic, mappings, and transformations
  • Integrate seamlessly into any Go-based CLI, service, or pipeline

✨ Why Ducto?

  • ⚙ Composable - Build complex transformations by combining small, understandable instructions
  • 🚀 Optimized for Real-World ETL - Designed to handle event streams, API payloads, and telemetry data at scale
  • 📦 Lightweight - Single-purpose library with minimal dependencies
  • ✅ Testable - Full suite of unit, integration, and end-to-end tests
  • 🟣 Extensible - Designed with operators and instructions as first-class citizens
  • 🌐 OpenTelemetry Ready - Hooks for observability without polluting your logic
  • 🟢 Serverless-First - Ducto is designed to run:
    • Locally as a CLI
    • Inside serverless environments (Cloud Run, Lambda, etc.)
    • Or embedded directly into your services

🛠️ Features

  • Declarative instruction set
  • DSL versioning & strict validation
  • Conditional logic (if, exists, and, or)
  • Array mapping (map)
  • Simple operators (set, copy, delete, replace, merge)
  • JSON conversion operators (to_json, from_json)
  • Error handling modes (fail, ignore, collect)
  • Pluggable metrics and observability (optional)

💡 Project Vision

Ducto is intended to grow into a:

  1. High-quality open-source toolkit for data transformation and processing
  2. Foundation for more advanced tools:
    • Event stream processors
    • Feature-flag aware routing engines
    • Policy-driven data transformers
    • Real-time telemetry augmentation
  3. Building block for the Ducto Project Ecosystem including:

📦 Getting Started

# Install
go install github.com/tommed/ducto-dsl@latest

# Lint
ducto-dsl lint examples/instructions.json

# Run
echo '{"foo": "bar"}' | ducto-dsl examples/instructions.json

📚 Documentation

Full DSL specification is available in specs.md.

🧰 About the Author

Ducto is part of an ongoing open-source initiative by @tommed to bring high-quality, composable, and reusable components to data processing pipelines and system integration workflows.

✅ License

License

  • Code is all licensed under MIT
  • Logos/Illustrations are Copyright 2025 Tom Medhurst, all rights reserved.

🟣 Coming Soon

  • ✅ First-class Feature Flag integration
  • ✅ Stream orchestrator service
  • ✅ Optional OTLP / Prometheus telemetry support
  • ✅ Ready-to-deploy serverless bundles

Pinned Loading

  1. ducto-dsl ducto-dsl Public

    A small, embeddable DSL interpreter for structured data transformation.

    Go

  2. ducto-orchestrator ducto-orchestrator Public

    A lightweight event router for Go

    HTML