Packages
4946 resultsRemotion
Framework for creating videos programmatically using React components. Remotion renders React components frame-by-frame using headless Chrome and encodes them into video with FFmpeg. Write animations, data visualizations, and video content in React — Remotion handles rendering pipeline, transitions, audio, and export. Used for generating programmatic video content at scale (data videos, notifications, personalized video).
RxSwift
Reactive Extensions (ReactiveX) for Swift. RxSwift provides Observable, Single, Completable, Maybe, and Driver reactive types with RxCocoa extensions for UIKit/AppKit bindings. The most popular reactive framework for iOS before Apple's Combine and Swift Concurrency. Enables composing async operations — network calls, user events, timers — as observable streams with operators.
Semantic Scholar API
AI2's academic paper search API with citation graphs, author data, full-text search, and paper embeddings for semantic similarity — free with optional API key for higher limits.
Speakeasy
Automated SDK generation platform that creates idiomatic, production-quality client SDKs from OpenAPI specifications. Speakeasy generates typed SDKs in TypeScript, Python, Go, Java, C#, Ruby, PHP, and more — with retry logic, pagination helpers, authentication handling, and error types already implemented. GitHub Actions integration automatically regenerates and publishes SDKs when API spec changes. Used by API companies to provide high-quality SDKs without SDK engineering headcount.
Spotify Web API
Provides access to Spotify's music catalog, user library, playlists, playback controls, and audio analysis features for building music-aware applications and automation.
Spring Retry
Retry abstraction for Spring applications — provides declarative (@Retryable) and programmatic (RetryTemplate) retry with configurable backoff policies. Spring Retry features: @Retryable(retryFor=IOException.class, maxAttempts=3, backoff=@Backoff(delay=1000, multiplier=2)) annotation, @Recover fallback method, RetryTemplate with ExponentialBackOffPolicy, SimpleRetryPolicy, CircuitBreakerRetryPolicy, stateful retry for message-driven recovery, RetryContext for cross-attempt state, and @EnableRetry on configuration class. Used in Spring Batch, Spring AMQP, and Spring Kafka internally. Lighter weight than Resilience4j for pure retry use cases.
Spring State Machine
Spring framework for implementing finite state machines in Java/Kotlin. Spring State Machine models: States (IDLE, RUNNING, FAILED, COMPLETED), Events (START, COMPLETE, FAIL, RESET), Transitions (IDLE → RUNNING on START event), Guards (conditional transitions), Actions (execute code on state entry/exit/transition), and hierarchical/orthogonal state machines. Supports persistence (JPA, Redis, MongoDB) for distributed stateful workflows. Spring Boot auto-configuration for stateMachineFactory bean. Used for modeling agent workflow states, order processing pipelines, document approval workflows, and any process with discrete states and transitions.
SwiftData
Apple's modern Swift-native persistence framework, introduced in iOS 17 as the declared replacement for CoreData. SwiftData uses Swift macros (@Model, @Relationship, @Attribute) to define persistent model classes — no manual entity descriptions, no NSManagedObjectContext boilerplate. Integrates tightly with SwiftUI via @Query macro for reactive data fetching. Backed by CoreData under the hood but with a dramatically simpler Swift-native API.
Telegram Bot API
Telegram Bot API — free REST API for building Telegram bots that can send messages, images, files, and interactive content to users, groups, and channels, enabling agents to deliver notifications, handle user interactions, and automate Telegram workflows.
The Odds API Sports Betting Odds Data
The Odds API sports betting odds data REST API for developers, sportsbook comparison sites, and sports analytics platforms to access real-time and historical betting odds from 70+ sportsbooks across 40+ sports including NFL, NBA, MLB, NHL, soccer, tennis, and esports for odds comparison, arbitrage detection, and sports betting analytics. Enables AI agents to manage multi-sportsbook odds retrieval for betting comparison automation, handle live in-play odds for real-time sports betting automation, access historical odds for backtesting and analytics automation, retrieve arbitrage opportunity detection for value betting automation, manage sports market list for available event discovery automation, handle head-to-head and spread odds for betting market automation, access over/under and totals for advanced betting markets automation, retrieve player prop odds for individual performance betting automation, manage line movement tracking for sharp money detection automation, and integrate odds data with sports betting analytics platforms and comparison sites for end-to-end sports betting data automation.
Tinybird API
Tinybird real-time analytics API platform — ingest events and publish low-latency SQL query results as HTTP API endpoints powered by ClickHouse under the hood.
Unsplash API
Unsplash REST API — access to over 3 million high-resolution royalty-free photos for search, download, and collection management, enabling agents to automatically find and use professional photography in content creation workflows.
VCR
HTTP interaction recording and replay for Ruby tests — records real HTTP requests to cassette YAML files and replays them in subsequent test runs. VCR features: VCR.use_cassette('cassette_name') { } block wraps HTTP calls, record modes (:once, :new_episodes, :none, :all), WebMock/Faraday/Typhoeus adapter integration, cassette filtering for credentials (filter_sensitive_data), request matching customization (uri, body, headers), dynamic ERB cassettes, ignore hosts configuration, and before_record/before_playback hooks. Eliminates live HTTP calls in tests while keeping tests realistic with real response structure.
Velero
Kubernetes backup, restore, and migration tool maintained by VMware Tanzu. Velero backs up Kubernetes cluster resources (all objects from etcd) and persistent volume data to object storage (S3, GCS, Azure Blob), enabling disaster recovery, cluster migration, and namespace-level restore. Supports scheduled backups, pre/post-backup hooks, and selective resource filtering. The de-facto standard for Kubernetes backup.
VictoriaMetrics
High-performance, cost-efficient time series database and monitoring solution. VictoriaMetrics is a drop-in Prometheus replacement that offers 10x better compression, significantly lower resource usage, and horizontal scalability via VictoriaMetrics Cluster. Supports Prometheus remote write, PromQL, MetricsQL (extended query language), and native data ingestion formats. Often used as a long-term storage backend for Prometheus, replacing Thanos or Cortex. Powers large-scale monitoring at companies like Roblox, Cloudflare, and others.
express-session
HTTP session middleware for Express.js. Manages server-side sessions: creates a session identifier, stores it in a signed cookie, and provides req.session for storing user state server-side. The session store is pluggable — defaults to in-memory (not for production), with adapters for Redis (connect-redis), MongoDB (connect-mongo), PostgreSQL, and more. The standard approach for cookie-session-based auth in traditional Express web applications.
geopy
Geocoding library for Python — convert addresses to coordinates and back, calculate distances. geopy features: Nominatim geocoder (OpenStreetMap, free), GoogleV3 geocoder, ArcGIS, Bing, HERE, and 20+ other geocoders, geocode() for address→coordinates, reverse() for coordinates→address, GeocoderTimedOut handling, geopy.distance.geodesic() for great-circle distance calculation, geopy.distance.great_circle() for haversine, and User-Agent rate limiting compliance. Unified interface across 20+ geocoding providers — switch backends with one line change.
kubefwd
CLI tool that bulk port-forwards Kubernetes services to your local workstation, assigning unique loopback IPs per service and updating /etc/hosts so you can access cluster services by name as if they were running locally. Includes TUI, REST API, and MCP server integration.
mcpc (Apify MCP CLI)
A universal command-line client for the Model Context Protocol (MCP) that provides interactive shell, scripting, and AI agent integration with MCP servers over HTTP or stdio, with OAuth 2.1 support and secure credential storage.
sandbox
All-in-one Docker-based sandbox environment for AI agents combining browser automation, shell execution, file operations, MCP servers, and VSCode Server in a single container with a unified file system.