Claude-skill-registry context-infrastructure

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/context-infrastructure" ~/.claude/skills/majiayu000-claude-skill-registry-context-infrastructure && rm -rf "$T"
manifest: skills/data/context-infrastructure/SKILL.md
source content

Infrastructure

Navigate Railway deployment, GitHub Actions workflows, and infrastructure config.

Overview

Railway for deployment, GitHub Actions for CI/CD. See

docs/deployment/RAILWAY.md
.

Railway Configuration

  • railway.toml
    (root) - Project-level config
  • backend/railway.toml
    - Backend service
  • frontend/railway.toml
    - Frontend service

CI/CD Workflows

  • .github/workflows/*.yml
    - All GitHub Actions
  • .github/workflows/deploy.yml
    - Deployment workflow (if exists)
  • .github/workflows/test.yml
    - Test workflow (if exists)

Docker

  • Dockerfile
    (root) - Docker configuration (if exists)
  • docker-compose*.yml
    - Docker Compose (if exists)

Smoke Tests

  • backend/smoke_endpoints.py
    - Backend health checks
  • frontend/e2e-smoke/*.spec.ts
    - Frontend smoke tests

Scripts

  • scripts/test-railway-setup.sh
    - Railway testing
  • scripts/db-commands/db-verify.sh
    - Database verification

Documentation

  • Internal:
    docs/deployment/RAILWAY.md

Related Areas

  • See
    context-testing-infrastructure
    for smoke test patterns
  • See
    context-database-schema
    for migration deployment