SDKs & Libraries
SDKs & Libraries
Open source packages built by the Smoo AI team. Production-ready, type-safe, and available across multiple languages.
Installation
Install packages using your preferred package manager.
# Config
pnpm add @smooai/config
# Logger
pnpm add @smooai/logger
# Fetch
pnpm add @smooai/fetch
# File
pnpm add @smooai/fileAvailable Packages
@smooai/config
Type-safe configuration management with schema validation, three-tier config, and runtime client support.
@smooai/logger
Contextual logging for AWS Lambda and browser environments with automatic context gathering.
@smooai/fetch
Robust HTTP client with retries, circuit breaking, rate limiting, and schema validation.
@smooai/utils
Lambda error handling, validation, phone number utils, environment detection, and async helpers.
Quick Example: @smooai/fetch
Make resilient HTTP requests with automatic retries and circuit breaking.
import { Fetch } from '@smooai/fetch';
import { Logger } from '@smooai/logger';
const logger = new Logger({ service: 'my-app' });
const response = await Fetch.get('https://api.example.com/data');
logger.info('Fetched data', { status: response.status });Want to see all our open source packages with full feature lists?
View Open Source Packages