feat: rename Docker image to claude-hub to match repository name

- Update workflow to use intelligenceassist/claude-hub instead of claude-github-webhook
- Update all README references to use new image name
- Update Docker Hub documentation with correct image names and links
This commit is contained in:
Jonathan Flatt
2025-05-28 11:29:32 -05:00
parent 02be8fc307
commit 7039d07d29
3 changed files with 10 additions and 10 deletions

View File

@@ -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:

View File

@@ -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

View File

@@ -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