<!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Low risk: only rotates the PostHog project API key used for CLI telemetry; main risk is misconfiguration causing events to be sent to the wrong project or dropped. > > **Overview** > Updates `UsageService` to use a new PostHog project API key for CLI usage telemetry, redirecting all `alias` and background `capture` events to the new PostHog project. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 8cb1c7f1cc5bccd22cb2c73469848d88a703f27e. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY --> |
||
|---|---|---|
| .. | ||
| arcade_core | ||
| pyproject.toml | ||
| README.md | ||
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
- Install an arcade toolkit
pip install arcade-math
- 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.