원클릭으로
docker
Manage local Docker containers for Starbunk-rs development
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage local Docker containers for Starbunk-rs development
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Evaluate the CI/CD pipeline on the PR, check for failures, and fix any issues.
Analyzes the current branch/PR and adds comprehensive, well-formatted structured logging and spans for observability.
Review PR comments, categorize them into critical/nitpicks, fix user-selected ones, and close resolved comments.
Create a PR using the current branch. Generates a PR description, commits changes, and pushes.
Mandatory rules for general git use in this repository. Follow these constraints before starting work, committing, or pushing.
Feature developer and task runner. Start a new task on a fresh branch, orchestrate worktrees, do the implementation work, and open a PR when done.
| name | docker |
| description | Manage local Docker containers for Starbunk-rs development |
Manage Docker containers for Starbunk-rs (local dev builds from source).
All local dev commands use docker/docker-compose.yml (builds from source).
up (default): Start all containers
docker compose -f docker/docker-compose.yml up -d
down: Stop all containers
docker compose -f docker/docker-compose.yml down
logs: Show recent logs (optionally for a specific service)
docker compose -f docker/docker-compose.yml logs --tail=50
# For a specific service:
docker compose -f docker/docker-compose.yml logs --tail=50 starbunk-rs-<bot>
build: Build Docker images from source
docker compose -f docker/docker-compose.yml build
ps: Show container status
docker compose -f docker/docker-compose.yml ps
restart: Restart all containers
docker compose -f docker/docker-compose.yml restart
Available services: bluebot, bunkbot, covabot, djcova, ratbot
(Container names are prefixed starbunk-rs-<service>)
Report the status of the operation and any errors encountered.