# Deploycast - AI-Powered Engineering Summaries > Deploycast translates GitHub commits and pull requests into stakeholder-ready summaries for Product Managers, Customer Success, Marketing, and Executives. ## What is Deploycast? Deploycast is a SaaS application that connects to your GitHub repositories and automatically generates AI-powered summaries of engineering work. Instead of interrupting engineers or sitting through status meetings, stakeholders receive weekly digests tailored to their role. ## Key Features - **AI Summary Generation**: Powered by Claude AI to analyze commits, PRs, and issues - **Multi-Audience Targeting**: Separate summaries for PMs, Customer Success, Marketing, and Executives - **GitHub Integration**: One-click setup with GitHub App - **Slack & Email Delivery**: Get summaries where you work - **Scheduled Digests**: Weekly or daily summary generation - **Webhook-Triggered Updates**: Real-time summaries on deployments ## Pricing - **Starter**: $99/month - 5 repositories, 1 user, weekly summaries - **Team**: $299/month - Unlimited repos, 10 users, daily summaries, Slack/email delivery - **Enterprise**: Custom pricing - Unlimited everything, SSO, API access, custom integrations ## Documentation For detailed documentation, visit: /docs ## Key Pages - Home: / - Features: /features - Use Cases: /use-cases - Pricing: / (pricing section) - Blog: /blog - Glossary: /glossary - Documentation: /docs - Register: /register - Login: /login ## Contact - Website: https://deploycast.app - Email: hello@deploycast.app ## Technical Details - Built with Laravel 12 and React 19 - Uses Inertia.js for seamless SPA experience - Styled with Tailwind CSS v4 - AI summaries powered by Anthropic's Claude ## Use Cases ### For Product Managers Stay informed about feature progress without joining standups. Get weekly digests of what shipped, what's blocked, and what needs attention. ### For Customer Success Know about features before customers do. Receive customer-friendly summaries ready to share with accounts. ### For Marketing Release notes that write themselves. Draft changelogs, social snippets, and messaging hooks generated from code. ### For Executives Engineering visibility in 30 seconds. High-level summaries with business impact and risks surfaced. ## API Enterprise customers have access to the Deploycast API for custom integrations and automation workflows. ### Agent-Readable Changelog API AI agents can consume structured changelog data from Deploycast-connected repositories: **Endpoint Pattern:** ``` GET /api/v1/repos/{org}/{repo}/changelog GET /{org}/{repo}/changelog.json (alias) ``` **Query Parameters:** - `since` - Filter changes after this date (ISO 8601) - `until` - Filter changes before this date (ISO 8601) - `type` - Filter by change type (feat, fix, docs, chore, refactor, perf, test, breaking, security) - `format` - Response format: `detailed` (default) or `summary` **Response Format (detailed):** ```json { "repository": "org/repo", "generated_at": "2025-01-05T12:00:00Z", "period": { "from": "2024-12-29", "to": "2025-01-05" }, "total_changes": 5, "changes": [ { "type": "feat", "scope": "api", "summary": "Added user preferences endpoint", "ai_summary": "Users can now save and retrieve preferences via API", "impact": "minor", "published_at": "2025-01-03T14:30:00Z", "raw": { "pr_number": 234, "title": "...", "author": "..." }, "links": { "pr": "https://github.com/...", "issues": [] } } ] } ``` **Authentication:** - Public repositories: No auth required - Private repositories: X-API-Key header or api_key query parameter