
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@agentskit/integrations
Advanced tools
Unified, plug-and-play service integrations for AgentsKit agents — one descriptor per service projected into tools, connectors, triggers, and auth.
Profile: major-package
Tags: agentskit · typescript · ai-agents
Unified, plug-and-play service integrations for AgentsKit agents — one descriptor
per service, projected into tools, connectors, triggers, and auth. Every
integration is HTTP/fetch-only: no vendor SDKs are bundled or required
(see ADR-0012).
packages/integrations/.@agentskit/integrations turns SaaS APIs into agent-ready tools, connectors, triggers, and auth from one service descriptor.
Docs: package guide · agent handoff
npm install @agentskit/integrations
// Most consumers don't author integrations directly — they pull ready-made
// service descriptors from the registry and project them into tools:
import { integrationTools } from '@agentskit/integrations'
export const tools = integrationTools('slack', {
credential: process.env.SLACK_BOT_TOKEN,
})
Service descriptors live under src/services/. The descriptor declares the
service's actions, triggers, auth, and CONFIG_FIELDS; the projection helpers
turn one descriptor into the surface each consumer needs (a ToolDefinition
for the runtime, a connect-form for an app, a webhook trigger, etc.).
The catalog is a bundled, fetch-only set of ~50 services (ADR-0012). The OSS/AKOS product boundary is settled in RFC 0003: reusable connectors ship here in OSS; AKOS owns the commercial control plane and consumes this package rather than re-shipping integrations.
import { defineIntegration, defineAction, httpJson } from '@agentskit/integrations'
export const myService = defineIntegration({
name: 'my-service',
baseUrl: 'https://api.example.com',
actions: [
defineAction({
name: 'send',
schema: { type: 'object', properties: { to: { type: 'string' } }, required: ['to'] },
execute: (args, ctx) => httpJson(ctx, 'POST', '/send', args),
}),
],
})
Projection and HTTP share a small set of safety contracts (ADR-0026):
HttpToolOptions.signal / ProjectionConfig.signal — caller cancellation composed with the per-request timeout.baseUrl is set, httpJson rejects cross-origin paths and disables automatic redirects so bound credentials cannot leave that origin.requiresConfirmation for actions with sideEffect of write, external, or destructive (descriptors cannot opt out).ProjectionConfig.fetchUntrusted — policy-enforcing fetch for model-controlled URLs. Direct Whisper (and similar) consumers must inject an egress-policy fetch; the deprecated @agentskit/tools Whisper facade injects safeFetch independently of provider fetch.beta — usable in production; the descriptor, registry, and projection contract
are shipped, the fetch-only catalog is populated, and execution boundaries are
explicit (ADR-0026). Not yet stable: public surface may still move in minor
releases with CHANGELOG notes. Prefer ~x.y.z if you need tighter pins.
@agentskit/integrationsSee CONTRIBUTING.md and the monorepo LICENSE.
FAQs
Unified, plug-and-play service integrations for AgentsKit agents — one descriptor per service projected into tools, connectors, triggers, and auth.
We found that @agentskit/integrations demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.