agentskit.js
Tools

Integrations

20+ ready-made connectors for the services agents actually need.

CategoryTools
Dev / chatgithub · linear · slack · notion · discord
Googlegmail · googleCalendar
Businessstripe · postgres · s3
Scrapingfirecrawl · reader · documentParsers
Voice + imageopenaiImages · elevenlabs · whisper · deepgram
Datamaps · weather · coingecko
BrowserbrowserAgent (Puppeteer)

Usage

import { github, slack } from '@agentskit/tools'

const runtime = createRuntime({
  adapter,
  tools: [
    github({ token: process.env.GITHUB_TOKEN! }),
    slack({ token: process.env.SLACK_BOT_TOKEN! }),
  ],
})

Each integration module exports granular sub-tools (e.g. github.createIssue, github.searchCode). Import the whole integration for the full set, or cherry-pick.

Credentials

Every integration reads a token from its config. No process-env magic.

✎ Edit this page on GitHub·Found a problem? Open an issue →·How to contribute →

On this page