Open-source connectors for AgentOS.
connectors/
linear/ # Each connector is a folder
readme.md # YAML config + markdown docs
icon.png # Square icon
tests/ # Optional integration tests
todoist/
hardcover/
demo/ # Example connector for learning
...
# connectors/myservice/readme.md
---
id: myservice
name: My Service
description: Connect to My Service API
tags: [tasks]
auth:
type: api_key
header: Authorization
actions:
list:
description: List items
readonly: true
rest:
method: GET
url: "https://api.myservice.com/items"
response:
mapping:
id: "[].id"
name: "[].name"
---
# My Service
Human-readable documentation here.| Category | Connectors |
|---|---|
| Tasks | todoist, linear |
| Messages | imessage, whatsapp |
| Databases | postgres, sqlite, mysql |
| Calendar | apple-calendar |
| Contacts | apple-contacts |
| Web | exa, firecrawl, reddit |
| Books | hardcover, goodreads |
git clone https://github.com/jcontini/agentos-integrations
cd agentos-integrations
npm install # Sets up pre-commit hooksSee CONTRIBUTING.md for:
- Connector YAML format
- Executor blocks (rest, graphql, sql, swift, command)
- Auth configuration
- Testing
MIT