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.
GET /api/linear/auth- Start OAuth flowGET /api/linear/callback- OAuth callback handlerPOST /api/linear/webhook- Webhook endpoint for agent notifications
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
└── webhookSetup
- Copy
.env.exampleto.env.local - Configure credentials for the services you want to use
- Set up webhook URLs in your service provider settings
- 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.