Slack Logo
Slack ➔ Cloudflare ➔ Google Antigravity ➔ GitHub PR

Turn Slack Queries Into GitHub Pull Requests

Type /code Add Redis caching to get_user_profile directly in Slack. Our autonomous AI developer inspects your codebase, writes precision diffs, passes tests, and opens a clean GitHub PR in seconds.

Live Slackbot Simulator

Select a sample prompt below or type your own to simulate the real-time Slack to GitHub PR workflow.

# dev-team
AutoPR Slack App v2.4 (Active)
B
Bhavesh Today at 10:14 AM
/code Fix race condition in authentication token refresh
Slack Logo
AutoPR AI Bot APP Today at 10:14 AM
🤖 Received request! Dispatching to Antigravity Engine (`agy`) on GitHub Actions...
GitHub Pull Request Created
Branch: fix/auth-token-race-condition
PR #148: Fix race condition in token refresh logic
--- a/src/auth.py
+++ b/src/auth.py
- token = self._fetch_token_sync()
+ async with self._refresh_lock:
+ token = await self._fetch_token_async()
Try Example Prompts:

Built for High-Velocity Dev Teams

Everything you need to turn instant chat prompts into production-ready code pull requests.

Slack Logo

Slack & Telegram Native

Send prompts straight from mobile or desktop messaging apps without ever switching contexts or opening your IDE.

Serverless Cloudflare Edge

Instant HTTP webhook handling via Cloudflare Workers for sub-millisecond initial dispatch and response formatting.

Google Antigravity (`agy`) Core

Multi-Agent reasoning with AST code parsing and zero API token costs on your Google Pro account.

Autonomous PR Generation

Creates isolated Git feature branches, runs test suites, and generates clear PR summaries ready for team review.

Graphify Code Indexing

Integrates Graphify AST code indexing to inspect deep file dependencies before generating surgical code changes.

Enterprise Runner Security

Executes safely in GitHub Actions runner VMs with zero persistent state exposure outside your private repository.

End-to-End Pipeline Architecture

How a single Slack prompt moves through serverless edge workers to autonomous GitHub Actions execution.

1
Slack Logo

Slack Prompt

User sends /code command in Slack or Telegram thread.

2

Cloudflare Edge

Worker verifies signature and dispatches repository_dispatch event to GitHub.

3

Antigravity Engine (`agy`)

GitHub Actions VM restores OAuth Pro auth, parses codebase AST, and writes diffs.

4

GitHub PR & Deploy

Opens PR, runs test suite, and posts updates back to Slack thread.

Quick Deployment Guide

Get your Slackbot Autonomous Developer running in under 5 minutes.

Deploy Cloudflare Worker Edge

Deploy the serverless worker to handle Slack webhooks and forward commands to GitHub Actions.

cd cloudflare-worker && wrangler deploy
wrangler secret put GITHUB_PAT && wrangler secret put SLACK_BOT_TOKEN

Configure Slack Slash Command

In your Slack App Settings, navigate to Slash Commands and click Create New Command.

  • Command: /code
  • Request URL: https://github-automation.<your-subdomain>.workers.dev
  • Short Description: Trigger Autonomous AI Developer

Add GitHub Repository Secrets

Configure secrets in your target GitHub repository (Settings → Secrets and variables → Actions):

AGY_AUTH_CONFIG = Base64(~/.gemini/config)
PAT_TOKEN = GitHub Personal Access Token with repo scope