This file provides guidance to AI coding agents (Codex, Claude Code, etc.) when working with code in this repository.
This is the Composio SDK v3 repository containing both TypeScript and Python SDKs. The main development focus is on the TypeScript SDK located in /ts/ directory. The project uses a monorepo structure with multiple packages and examples.
- For documentation tasks, refer to
docs/CLAUDE.md - Vendor submodules in
ts/vendor/are read-only reference only — do not modify them
pnpm build # Build all packages
pnpm build:packages # Build only TypeScript packages
pnpm clean # Clean build artifacts
pnpm lint # Lint code
pnpm lint:fix # Lint and auto-fix
pnpm format # Format code
pnpm test # Run testsmise install # Install Node, Bun, Deno, Python, uv (one-time; needs mise — https://mise.jdx.dev/installing-mise.html)
corepack enable # Activate pnpm from package.json#packageManager
pnpm install # Install dependencies
pnpm check:peer-deps # Check peer dependencies
pnpm update:peer-deps # Update peer dependenciespnpm create:provider <provider-name> [--agentic]
pnpm create:example <example-name>pnpm changeset # Create changeset for releases
pnpm changeset:version # Version packages
pnpm changeset:release # Publish packagescomposio/
├── ts/ # TypeScript SDK (main development)
│ ├── packages/
│ │ ├── core/ # Core SDK functionality
│ │ ├── providers/ # AI provider integrations (OpenAI, Anthropic, etc.)
│ │ ├── cli/ # Command-line interface (Effect.ts + @clack/prompts)
│ │ ├── json-schema-to-zod/ # Schema conversion utility
│ │ └── ts-builders/ # TypeScript code generation utilities
│ ├── vendor/ # Read-only reference submodules (Effect, Clack)
│ └── examples/ # Usage examples for different providers
├── python/ # Python SDK
├── docs/ # Documentation (Fumadocs)
└── examples/ # Cross-platform examples
@composio/core — Main SDK functionality:
src/composio.ts— Main Composio classsrc/models/— Core models (Tools, Toolkits, ConnectedAccounts, etc.)src/provider/— Base provider implementationssrc/services/— Internal services (telemetry, pusher)src/types/— TypeScript type definitionssrc/utils/— Utility functions and helpers
Provider Packages — AI integrations:
@composio/openai,@composio/anthropic,@composio/google@composio/langchain,@composio/vercel,@composio/mastra
- Tools — Individual functions (e.g., GITHUB_CREATE_REPO, GMAIL_SEND_EMAIL)
- Toolkits — Collections of related tools grouped by service (github, gmail, slack)
- Connected Accounts — User authentication/authorization for external services
- Auth Configs — Configuration for different authentication methods
- Custom Tools — User-defined tools with custom logic
- Providers — Integrations with AI frameworks (OpenAI, Anthropic, etc.)
- Modifiers — Middleware to transform tool inputs/outputs
- Unit tests use Vitest — run with
pnpm test - Tests are in
test/directories within each package - Mock implementations in
test/utils/mocks/
- ESLint — config in
eslint.config.mjs - Prettier — for code formatting
- TypeScript — strict mode enabled
- Husky — pre-commit hooks for quality checks
pnpm test:e2e # All (Node.js + Deno + Cloudflare)
pnpm test:e2e:node # Node.js CJS/ESM compatibility (Docker)
pnpm test:e2e:deno # Deno npm: specifier compatibility (Docker)
pnpm test:e2e:cloudflare # Cloudflare WorkersCOMPOSIO_API_KEY # Required: Your Composio API key
COMPOSIO_BASE_URL # Optional: Custom API base URL
COMPOSIO_LOG_LEVEL # Optional: silent, error, warn, info, debug
COMPOSIO_DISABLE_TELEMETRY # Optional: Set to "true" to disable telemetry- Main SDK Entry:
ts/packages/core/src/index.ts - Core Composio Class:
ts/packages/core/src/composio.ts - Type Definitions:
ts/packages/core/src/types/ - Error Classes:
ts/packages/core/src/errors/ - Documentation:
docs/ - Build Configs:
turbo.jsonc,tsconfig.base.json,tsdown.config.base.ts
const composio = new Composio({ apiKey: 'your-key' });
const result = await composio.tools.execute('TOOL_NAME', {
userId: 'user-id',
arguments: { /* tool args */ }
});import { OpenAIProvider } from '@composio/openai';
const provider = new OpenAIProvider({ apiKey: 'openai-key' });
const tools = await composio.tools.get('user-id', { toolkits: ['github'] });
const wrappedTools = provider.wrapTools(tools);import { Composio, experimental_createTool } from '@composio/core';
import { z } from 'zod';
const composio = new Composio();
// Custom tools are session-scoped: define a local tool, then attach it when
// creating a Tool Router session. Use `extendsToolkit` + `ctx.proxyExecute`
// to inherit a toolkit's managed auth and call its API.
const myTool = experimental_createTool('MY_TOOL', {
name: 'My Tool',
description: 'Tool description',
inputParams: z.object({
param: z.string().describe('Parameter description')
}),
execute: async input => {
return { result: input.param };
}
});
const session = await composio.create('user-id', {
experimental: { customTools: [myTool] }
});cd python
make env # Create virtual env with all dependencies
source .venv/bin/activatemake fmt # Format code (ruff)
make chk # Check linting and type issues
make tst # Run tests
make snt # Run sanity tests
make build # Build packages- Formatter: Ruff (Black-compatible, 88 char line length)
- Linter: Ruff
- Type Checker: mypy with strict optional typing
- Test Framework: pytest with markers (core, openai, langchain, agno)
- Python Version: >=3.10, <4
Toolchain versions are coalesced in mise.toml. To check the current values:
- Node.js:
mise current node - Bun:
mise current bun - Deno:
mise current deno - Python:
mise current python - uv:
mise current uv - pnpm:
node -p "require('./package.json').packageManager"
To bump, edit mise.toml (or package.json#packageManager for pnpm). The "Prerequisites" section in ts/docs/internal/release.md references mise.toml so it stays current automatically.
This monorepo uses pnpm workspaces and Turbo for efficient builds and development.