Merged
Conversation
Complete rename of worker-tetra repository to align with tetra-rp → runpod-flash transition: - **Package**: worker-tetra → worker-flash - **SDK**: tetra-rp → runpod-flash (tetra_rp → runpod_flash) - **Docker images**: runpod/tetra-rp → runpod/flash - **Logger namespace**: tetra → flash - **Environment variables**: TETRA_* → FLASH_* - **MCP server**: worker-tetra-code-intel → worker-flash-code-intel - **Skill directory**: worker-tetra-explorer → worker-flash-explorer Updated 40+ files including: - 9 source files with import statements - 10 test files with import statements - Configuration files (pyproject.toml, Makefile, .mcp.json, .claude/settings.json) - Docker workflow configurations (.github/workflows/) - Documentation files (CLAUDE.md, docs/*) - Script files (ast_to_sqlite.py, code_intel.py, mcp_code_intel_server.py) All 240 tests pass with 76% code coverage. Type checking configured to ignore runpod_flash module stubs. Dependencies updated to use runpod-flash package.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR renames the project from "tetra" to "flash" across the entire codebase. The renaming affects import statements, package names, documentation, configuration files, and infrastructure references.
Changes:
- Updated all Python imports from
tetra_rptorunpod_flash - Renamed project from
worker-tetratoworker-flashin configuration and documentation - Updated Docker image names from
runpod/tetra-rptorunpod/flash
Reviewed changes
Copilot reviewed 42 out of 43 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tests/unit/test_remote_executor.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/unit/test_remote_execution.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/unit/test_manifest_reconciliation.py | Updated mock patch paths and formatting for State Manager client references |
| tests/unit/test_handler.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/unit/test_function_executor.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/unit/test_dependency_installer.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/unit/test_class_executor.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/unit/test_cache_sync_manager.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/integration/test_manifest_state_manager.py | Updated mock patch paths for State Manager client references |
| tests/integration/test_handler_integration.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/integration/test_flash_integration.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/integration/test_dependency_management.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| tests/conftest.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| src/subprocess_utils.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| src/remote_executor.py | Updated imports and comments from tetra_rp to runpod_flash |
| src/manifest_reconciliation.py | Updated imports from tetra_rp.runtime.state_manager_client to runpod_flash.runtime.state_manager_client |
| src/logger.py | Updated documentation comments from "tetra" to "flash" |
| src/lb_handler.py | Updated imports and comments from tetra_rp to runpod_flash |
| src/handler.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| src/function_executor.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| src/dependency_installer.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| src/constants.py | Changed namespace from "tetra" to "flash" and updated comments |
| src/class_executor.py | Updated imports from tetra_rp.protos.remote_execution to runpod_flash.protos.remote_execution |
| src/init.py | Updated docstring from "Worker Tetra" to "Worker Flash" |
| scripts/mcp_code_intel_server.py | Renamed server from "worker-tetra-code-intel" to "worker-flash-code-intel" |
| scripts/code_intel.py | Updated help text from "worker-tetra" to "worker-flash" |
| scripts/ast_to_sqlite.py | Updated dependency indexing from "tetra_rp" to "runpod_flash" |
| pyproject.toml | Updated project name from "worker-tetra" to "worker-flash" and dependency from "tetra-rp" to "runpod-flash" |
| docs/Runtime_Execution_Paths.md | Updated references from "Worker-tetra" to "worker-flash" |
| docs/Manifest_Reconciliation.md | Updated references from "tetra-rp" to "runpod-flash" |
| docs/Load_Balancer_Docker_Infrastructure.md | Updated all references from "worker-tetra" and "tetra-rp" to "worker-flash" and "runpod-flash" |
| docs/Docker_Build_Pipeline.md | Updated image names from "runpod/tetra-rp" to "runpod/flash" variants |
| docs/Centralized_Log_Streaming_System.md | Updated namespace references from "tetra" to "flash" |
| Makefile | Updated image names from "runpod/tetra-rp" to "runpod/flash" and environment variable from TETRA_IMAGE_TAG to FLASH_IMAGE_TAG |
| DEVELOPMENT.md | Updated all references from "worker-tetra" and "tetra-rp" to "worker-flash" and "runpod-flash" |
| CLAUDE.md | Updated project references from "worker-tetra" and "tetra_rp" to "worker-flash" and "runpod_flash" |
| CHANGELOG.md | Updated all repository URLs from "worker-tetra" to "worker-flash" |
| .mcp.json | Renamed MCP server from "worker-tetra-code-intel" to "worker-flash-code-intel" |
| .github/workflows/deploy.yml | Updated Docker image name from "runpod/tetra-rp" to "runpod/flash" |
| .github/workflows/ci.yml | Updated Docker image names and tags from "tetra-rp" variants to "flash" variants |
| .claude/skills/worker-flash-explorer/SKILL.md | Updated all references from "Worker-Tetra" and "worker-tetra" to "Worker-Flash" and "worker-flash" |
| .claude/settings.json | Updated MCP server references from "worker-tetra-code-intel" to "worker-flash-code-intel" |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Update mypy configuration to properly handle import-untyped errors from the runpod-flash dependency. Add global disable_error_code for import-untyped since we cannot control third-party type stubs, and update the runpod_flash module override to use follow_imports = "skip" for cleaner configuration. This ensures the quality-check gate passes completely with all tests, linting, formatting, and type checking successful.
jhcipar
approved these changes
Feb 4, 2026
- Update all GitHub repository references from runpod-workers/worker-flash to runpod-workers/flash - Update all Docker image references from runpod/worker-flash to runpod/flash - Update RunPod badge in README.md to use flash endpoint - Update 46 CHANGELOG.md references for consistency - Update 9 DEVELOPMENT.md references (clone URL, Docker examples) Files modified: - CHANGELOG.md: 46 URL references updated (version comparisons, issue links, commit links) - DEVELOPMENT.md: 9 repository and Docker references updated (git clone, Docker images) - README.md: 1 badge URL updated
rambo-runpod
approved these changes
Feb 4, 2026
The metadata-action needs explicit tag values to generate semver-based tags when running on the main branch. Pass tag_name from release-please to generate tags like v1.0.0, v1.0, v1, and latest for all production Docker images (GPU, CPU, LB, LB-CPU).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.