Packages
4946 resultsAWS CDK (Cloud Development Kit)
AWS CDK lets you define cloud infrastructure as code in TypeScript, Python, Java, or Go, compiled to CloudFormation templates.
Alchemy API
Blockchain infrastructure platform providing enhanced Ethereum/EVM node RPC access, NFT APIs, token APIs, and real-time event webhooks with best-in-class reliability and developer experience.
Bazel
Google's open-source polyglot build system for large monorepos featuring hermetic builds, incremental compilation, and remote caching for reproducible artifacts.
NeMo Guardrails
NVIDIA conversation safety framework that uses the Colang language to define topical, fact-checking, and jailbreak-detection rails that control dialogue flow in LLM applications.
StackBlitz WebContainers API
In-browser Node.js runtime built on WebAssembly. Runs a full Node.js environment directly in the browser tab without servers — including npm package installation, file system, and process execution. Powers bolt.new (AI-driven full-stack app builder), StackBlitz, and in-browser coding environments. Agent use: create isolated Node.js sandboxes for code execution without cloud infrastructure.
SuperOps MSP Platform API
SuperOps REST API for modern managed service provider (MSP) platform combining RMM and PSA. Enables AI agents to manage IT support tickets and SLAs, access device inventory and health monitoring, manage client accounts and projects, handle invoicing and billing, trigger remote monitoring and scripting, integrate with documentation tools, and connect MSP operations with external business systems.
WebdriverIO
Next-generation browser and mobile test automation framework built on WebDriver and WebDriver BiDi protocols. WebdriverIO v8 supports both traditional WebDriver (Selenium Grid) and Chrome DevTools Protocol (CDP). Includes WDIO test runner, automatic browser management, Mocha/Jasmine/Cucumber integration, and native mobile support via Appium. More batteries-included than raw Selenium.
golang-migrate
Database migration library and CLI for Go supporting 20+ databases including PostgreSQL, MySQL, SQLite, MongoDB, CockroachDB, and cloud databases. Migrations are versioned SQL or Go files (up/down). Available as both a CLI tool and Go library for embedding in applications. Widely used as the standard migration tool in Go microservices.
importmap-rails
JavaScript import maps for Rails — enables ES module imports without a JavaScript bundler (no webpack, esbuild, or rollup). importmap-rails features: config/importmap.rb for pin declarations (pin 'stimulus', to: 'stimulus.min.js'), CDN pinning (pin_all_from, to CDN URLs), local JavaScript file serving via Sprockets/Propshaft, importmap:pin generator for adding packages from JSPM CDN, Rails 7+ default for new apps, Stimulus and Turbo integration, and asset cache busting via content-hash fingerprinting. Eliminates Node.js and npm as build requirements for agent web interfaces.
pika
Pure Python RabbitMQ client library — AMQP 0-9-1 implementation for connecting to RabbitMQ. pika features: BlockingConnection for synchronous use, SelectConnection for async event-driven use, AsyncioConnection for asyncio, channel.basic_publish() for sending messages, channel.basic_consume() with callback for receiving, channel.queue_declare() with durable=True, channel.exchange_declare() for fanout/direct/topic exchanges, channel.queue_bind() for routing, basic_ack/nack/reject for message acknowledgment, prefetch_count for QoS, heartbeat_interval, SSL/TLS support, and connection parameters with credentials.
rustls
Modern, memory-safe TLS implementation in pure Rust. Supports TLS 1.2 and TLS 1.3. Does not use OpenSSL — eliminates OpenSSL's C code vulnerabilities. Used by major projects including the Rust toolchain, wasmtime, and the Let's Encrypt certbot replacement. Integrates with tokio-rustls for async TLS and reqwest for HTTPS clients.
Datadog Agent
Client-side collection agent that gathers host metrics, logs, traces, and process data and ships them to the Datadog SaaS platform for unified observability.
Descope API
Descope — no-code/low-code authentication and user management platform with drag-and-drop flow builder for designing auth journeys (MFA, passkeys, SSO) plus REST API and SDKs for integration.
Make (Integromat) API
Make (formerly Integromat) REST API for managing scenarios (workflows), executions, and teams — enabling programmatic control of visual workflow automation across 1000+ integrated apps.
Mongoose ODM
Mongoose is a MongoDB Object Document Mapper (ODM) for Node.js that provides schema-based modeling, built-in type casting, query building, middleware hooks, and validation on top of the native MongoDB driver.
ONNX Runtime
Cross-platform ML model inference engine — runs ONNX format models on CPU, GPU, or specialized hardware with graph optimizations. ONNX Runtime features: InferenceSession (load .onnx model), session.run() for inference, execution providers (CPUExecutionProvider, CUDAExecutionProvider, TensorRTExecutionProvider, CoreMLExecutionProvider), graph-level optimizations (constant folding, operator fusion), quantization (INT8/FP16), model profiling, dynamic shapes, IoBinding for zero-copy GPU inference, and Python/C++/C#/Java/JavaScript APIs. Exports from PyTorch (torch.onnx.export), TensorFlow, and scikit-learn via skl2onnx. Microsoft production inference runtime — used by Azure ML, Windows ML, and Hugging Face Optimum.
PuLP
Linear and Integer Programming modeling library for Python — formulate and solve LP/MIP problems with a simple Python API. PuLP features: LpProblem() for problem creation, LpVariable() for decision variables (continuous, integer, binary), lpSum() for objective/constraint expressions, status checking (LpStatus), solver integration (CBC default, GLPK, CPLEX, Gurobi, SCIP), LpMinimize/LpMaximize sense, variable bounds, constraint naming, results via .varValue, and JSON/MPS/LP file export. More accessible than OR-Tools for pure LP/MIP problems. Used for scheduling, routing, cutting stock, and resource allocation optimization.
Pydantic Logfire
Pydantic Logfire is an OpenTelemetry-based observability platform by the Pydantic team with first-class Python integration. It provides a simple Python SDK with automatic instrumentation for FastAPI, SQLAlchemy, HTTPX, OpenAI SDK, and other Python libraries, exporting traces and logs to the Logfire cloud dashboard.
Supabase JavaScript Client
Official JavaScript/TypeScript client library for Supabase — the open-source Firebase alternative built on PostgreSQL. Provides a unified client for Supabase's services: PostgreSQL database queries (via PostgREST), Auth (sign-in/JWT/OAuth), Storage (file upload/download), Realtime (websocket subscriptions to DB changes), and Edge Functions. Works in browser, Node.js, React Native, and edge runtimes. TypeScript-first with auto-generated types from your DB schema.
dacite
Python dataclass deserialization library — converts dicts/JSON into typed Python dataclasses with validation. dacite features: from_dict(DataClass, data_dict) converts nested dicts to dataclasses, strict=True rejects unknown keys, type_hooks for custom type conversion ({str: str.strip}), forward references support, Union type handling, Optional detection, nested dataclass support, and config object for transformation rules. Fills the gap between Python dataclasses (no built-in deserialization) and heavier ORMs/validators like Pydantic — useful for agent code parsing structured LLM responses or API payloads into typed dataclasses.