Dedalus Labs Hooks

A minimal webhook and OAuth integration service for various applications and platforms.

Current Integrations

Linear

OAuth 2.0 and webhook endpoints for Linear agent applications.

API Structure

All integrations follow the pattern: /api/{service}/{endpoint}

/api/
├── linear/
│   ├── auth      # OAuth initiation
│   ├── callback  # OAuth callback
│   └── webhook   # Webhook handler
└── {future-service}/
    ├── auth
    ├── callback
    └── webhook

Setup

  1. Copy .env.example to .env.local
  2. Configure credentials for the services you want to use
  3. Set up webhook URLs in your service provider settings
  4. Configure OAuth redirect URIs to point to the callback endpoints

Adding New Integrations

To add a new service integration, create endpoints following the established pattern and update the documentation.