diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 1a3c92d..33b17e8 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -18,7 +18,7 @@ on: env: DOCKER_HUB_USERNAME: ${{ vars.DOCKER_HUB_USERNAME || 'cheffromspace' }} DOCKER_HUB_ORGANIZATION: ${{ vars.DOCKER_HUB_ORGANIZATION || 'intelligenceassist' }} - IMAGE_NAME: ${{ vars.DOCKER_IMAGE_NAME || 'claude-github-webhook' }} + IMAGE_NAME: ${{ vars.DOCKER_IMAGE_NAME || 'claude-hub' }} jobs: build: diff --git a/README.dockerhub.md b/README.dockerhub.md index 69bcef7..da65bfa 100644 --- a/README.dockerhub.md +++ b/README.dockerhub.md @@ -5,7 +5,7 @@ A webhook service that enables Claude AI to respond to GitHub mentions and execu ## Quick Start ```bash -docker pull intelligenceassist/claude-github-webhook:latest +docker pull intelligenceassist/claude-hub:latest docker run -d \ -p 8082:3002 \ @@ -15,7 +15,7 @@ docker run -d \ -e ANTHROPIC_API_KEY=your_anthropic_key \ -e BOT_USERNAME=@YourBotName \ -e AUTHORIZED_USERS=user1,user2 \ - intelligenceassist/claude-github-webhook:latest + intelligenceassist/claude-hub:latest ``` ## Features @@ -34,7 +34,7 @@ version: '3.8' services: claude-webhook: - image: intelligenceassist/claude-github-webhook:latest + image: intelligenceassist/claude-hub:latest ports: - "8082:3002" volumes: @@ -84,9 +84,9 @@ Mention your bot in any issue or PR comment: ## Links -- [GitHub Repository](https://github.com/intelligence-assist/claude-github-webhook) -- [Documentation](https://github.com/intelligence-assist/claude-github-webhook/tree/main/docs) -- [Issue Tracker](https://github.com/intelligence-assist/claude-github-webhook/issues) +- [GitHub Repository](https://github.com/intelligence-assist/claude-hub) +- [Documentation](https://github.com/intelligence-assist/claude-hub/tree/main/docs) +- [Issue Tracker](https://github.com/intelligence-assist/claude-hub/issues) ## License diff --git a/README.md b/README.md index 87df092..833b146 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Jest Tests](https://img.shields.io/badge/tests-jest-green)](test/README.md) [![codecov](https://codecov.io/gh/intelligence-assist/claude-hub/branch/main/graph/badge.svg)](https://codecov.io/gh/intelligence-assist/claude-hub) [![Version](https://img.shields.io/github/v/release/intelligence-assist/claude-hub?label=version)](https://github.com/intelligence-assist/claude-hub/releases) -[![Docker Hub](https://img.shields.io/docker/v/intelligenceassist/claude-github-webhook?label=docker)](https://hub.docker.com/r/intelligenceassist/claude-github-webhook) +[![Docker Hub](https://img.shields.io/docker/v/intelligenceassist/claude-hub?label=docker)](https://hub.docker.com/r/intelligenceassist/claude-hub) [![Node.js Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen)](package.json) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) @@ -70,7 +70,7 @@ Claude autonomously handles complete development workflows. It analyzes your ent ```bash # Pull the latest image -docker pull intelligenceassist/claude-github-webhook:latest +docker pull intelligenceassist/claude-hub:latest # Run with environment variables docker run -d \ @@ -82,7 +82,7 @@ docker run -d \ -e ANTHROPIC_API_KEY=your_anthropic_key \ -e BOT_USERNAME=@YourBotName \ -e AUTHORIZED_USERS=user1,user2 \ - intelligenceassist/claude-github-webhook:latest + intelligenceassist/claude-hub:latest # Or use Docker Compose wget https://raw.githubusercontent.com/intelligence-assist/claude-hub/main/docker-compose.yml