arcade-mcp/libs/arcade-core
Eric Gustin 7ce7d6892f
Add 'PRODUCT_ANALYTICS' to SericeDomain enum (#806)
We will be adding some product analytics toolkits in the near future

<!-- CURSOR_SUMMARY -->
---

> [!NOTE]
> **Low Risk**
> Low risk: adds a new `ServiceDomain` enum value and bumps the package
version, with minimal behavioral impact beyond any downstream enum
matching/serialization expectations.
> 
> **Overview**
> Adds `ServiceDomain.PRODUCT_ANALYTICS` (`"product_analytics"`) to tool
metadata classification to support upcoming product analytics
integrations.
> 
> Bumps `arcade-core` version from `4.5.0` to `4.6.0`.
> 
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit
84666eaf997401559f8025dbe43563fdd03acd49. This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot).</sup>
<!-- /CURSOR_SUMMARY -->
2026-03-27 17:12:23 -07:00
..
arcade_core Add 'PRODUCT_ANALYTICS' to SericeDomain enum (#806) 2026-03-27 17:12:23 -07:00
pyproject.toml Add 'PRODUCT_ANALYTICS' to SericeDomain enum (#806) 2026-03-27 17:12:23 -07:00
README.md PyPI release arcade-serve and arcade-tdk (#432) 2025-06-13 13:06:11 -07:00

Arcade Core

Core library for the Arcade platform providing foundational components and utilities.

Overview

Arcade Core provides the essential building blocks for the Arcade platform:

  • Tool Catalog & Toolkit Management: Core classes for managing and organizing tools
  • Configuration & Schema Handling: Configuration management and validation
  • Authentication & Authorization: Auth providers and security utilities
  • Error Handling: Comprehensive error types and handling
  • Telemetry & Observability: Monitoring and tracing capabilities
  • Utilities: Common helper functions and validators

Installation

pip install arcade-core

Usage

  1. Install an arcade toolkit
pip install arcade-math
  1. Load the toolkit
import arcade_math
from arcade_core import ToolCatalog, Toolkit

# Create a tool catalog
catalog = ToolCatalog()

# Load a toolkit
toolkit = Toolkit.from_module(arcade_math)

License

MIT License - see LICENSE file for details.