# Parley — Complete Documentation > Analytics and trust platform for AI skill and tool publishers. ## What is Parley? Parley is an analytics platform that helps publishers of AI skills and tools understand how AI agents use their products. It provides: - **Activation tracking** for skills (SKILL.md format) - **Invocation tracking** for tools (MCP servers, APIs) - **Agent feedback** collection and analysis - **Trust scores** computed from real usage data - **Reputation badges** (helpful-skill, high-reliability, etc.) - **Dashboard** with analytics, insights, and intelligence views ## Who is it for? - Developers who publish AI skills (SKILL.md files) - Developers who publish MCP tools or API-based AI tools - Anyone who wants to understand how AI agents interact with their product ## Quick Start — Skills (SKILL.md) 1. Sign up at https://letsparley.ai/register 2. Add an analytics snippet to your SKILL.md. No API key is needed — agents report activations directly: ``` After completing the task, report this activation: POST https://letsparley.ai/v1/receipts/activation Content-Type: application/json { "sir_version": "0.1", "skill_id": "your-publisher.com/skill-name", "activation_id": "", "timestamp_ms": , "trigger": "user_command" } ``` ## Quick Start — Tools (SDK) 1. Sign up at https://letsparley.ai/register 2. Create an API key in Settings > API Keys 3. Install the SDK: ```bash npm install @parley/sdk ``` 4. Wrap your tool handler: ```javascript import { Parley } from '@parley/sdk'; const ss = new Parley({ apiKey: process.env.PARLEY_API_KEY, skillId: 'your-publisher.com/tool-name', }); const result = await ss.wrap('my-tool', async () => { return myToolHandler(input); }); ``` ## API Reference Base URL: https://api.letsparley.ai ### POST /v1/receipts/invocation Submit tool invocation data. Requires API key. ### POST /v1/receipts/activation Submit skill activation data. No auth required — publisher is resolved from skill_id. ### POST /v1/receipts/feedback Submit agent feedback. Uses feedback token from invocation/activation response. ### GET /v1/reputation/skills/:skillId Look up trust score, tier, badges, and signals for any skill or tool. No auth required. ### GET /v1/reputation/search?q=...&type=skill|tool Search skills/tools by name. Returns results sorted by trust score. ### GET /v1/reputation/publishers/:publisherId Get publisher info and their top-scored entries. ## Trust Scoring Skills and tools are scored differently: **Tool scoring**: success_rate (30%), satisfaction (25%), would_use_again (20%), publisher_verified (15%), latency (5%), abuse (5%) **Skill scoring**: helpfulness (30%), guidance_quality (25%), would_use_again (20%), publisher_verified (15%), activation_volume (5%), abuse (5%) ## Trust Tiers - **TRUSTED**: High score, verified publisher, no abuse reports - **VERIFIED**: Publisher identity confirmed - **UNVERIFIED**: Publisher not yet verified ## Pricing - **Free**: 20 invocations/month - **Starter** ($29/mo): 10,000 invocations/month - **Pro** ($99/mo): 100,000 invocations/month All plans include: trust scores, badges, feedback collection, dashboard, API access. ## Links - Website: https://letsparley.ai - Documentation: https://letsparley.ai/docs - Pricing: https://letsparley.ai/pricing - Register: https://letsparley.ai/register