Orle – Developer Tools Hub

23 December 2025

Code: github.com/punitarani/orle

Live: orle.dev

Orle Developer Tools Hub

Overview

Orle is a browser-first developer tools hub designed for speed and privacy. All tool inputs stay on the client—no data leaves your browser. Beyond its 100+ built-in utilities, Orle features an Agentic Tool Builder that lets you create custom, one-off tools in seconds by describing what you need in plain English.

Agentic Tool Builder

The standout feature of Orle is its AI-powered tool generator at /tools/generate. Instead of searching for the right utility or writing throwaway scripts, you describe what you need and the agent builds it for you.

How It Works

  1. Describe your tool in natural language (e.g., "convert CSV to JSON with custom column mapping" or "calculate compound interest with monthly contributions")
  2. The agent generates a complete tool definition including input schema, transform logic, and output handling
  3. Test it live in the integrated preview panel before saving
  4. Save and reuse your custom tool, stored locally in IndexedDB

Why It Matters

Developers constantly need one-off utilities—quick data transformations, format conversions, calculations, or validations that don't warrant installing a package or writing a script. The Agentic Tool Builder eliminates this friction:

Example Use Cases

Built-in Tools (100+)

Orle includes a comprehensive set of developer utilities organized by category:

Architecture

Tool System

Tool definitions live in src/lib/tools/sections/ and are indexed in src/lib/tools/registry.ts for navigation and search. Each tool runs client-side through a sandboxed transform executor in src/lib/tools/safe-executor.ts.

Page Rendering

AI Backend

The tool generator page calls three API routes that run server-side:

All tool execution remains client-side for privacy.

Raycast Extension

A companion Raycast extension provides quick access to Orle tools directly from the macOS launcher. Install locally with bun run raycast:dev or wait for the official store release.

Technical Highlights