Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .env.schema
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,13 @@ SLACK_BROKER_DEDUPE_TTL_MS=1200000
# @docs(https://linear.app/settings/api)
LINEAR_API_KEY=

# ── Notion (optional) ────────────────────────────────────────────────────────

# Notion integration secret (internal integration token)
# @type=string
# @docs(https://www.notion.so/my-integrations)
NOTION_API_KEY=

# ── Tool Guard ───────────────────────────────────────────────────────────────

# Unix username of the agent
Expand Down
17 changes: 17 additions & 0 deletions CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,23 @@ The `linear` extension provides a tool for interacting with the Linear issue tra
|----------|-------------|---------------|
| `LINEAR_API_KEY` | Linear API key (personal or OAuth token) | Go to [Linear Settings β†’ API](https://linear.app/settings/api), create a **Personal API key**. For workspace-wide access, create an OAuth application instead. The key needs read/write access to issues and comments. |

### Notion Integration

The `notion` extension provides a read-only tool for accessing your Notion workspace. The agent can search for pages and databases, retrieve full page content (including nested blocks), query database entries, and inspect database schemas.

| Variable | Description | How to get it |
|----------|-------------|---------------|
| `NOTION_API_KEY` | Notion integration secret (internal integration token) | Go to [Notion β†’ My integrations](https://www.notion.so/my-integrations), create a new **Internal Integration**. Copy the **Internal Integration Token** (starts with `secret_`). After creating the integration, share the pages/databases you want the agent to access by clicking **"β€’β€’β€’"** β†’ **Add connections** β†’ select your integration. The integration can only read content explicitly shared with it. |

**Capabilities:**
- `search` β€” Find pages and databases by text query or type filter
- `get` β€” Read full page content with all blocks (paragraphs, headings, lists, code, callouts, etc.)
- `list` β€” Query database entries with filters and sorting
- `database` β€” Inspect database schema and property types

**Permissions:**
The integration token only provides read access to pages/databases explicitly shared with the integration. It cannot create, update, or delete content.

### Slack Channels

| Variable | Description | How to get it |
Expand Down
Loading
Loading