feat(skill): add port-forward manager to dev-cluster skill#820
Open
jeremyeder wants to merge 2 commits intoambient-code:mainfrom
Open
feat(skill): add port-forward manager to dev-cluster skill#820jeremyeder wants to merge 2 commits intoambient-code:mainfrom
jeremyeder wants to merge 2 commits intoambient-code:mainfrom
Conversation
Daily scheduled triage of open issues via ACP session using the triage workflow from ambient-code/workflows. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add a port-forward-manager.sh script that eliminates zombie processes and port conflicts by providing structured lifecycle management: - preflight: kills existing zombies, validates ports are free, checks cluster reachability - start: launches port-forwards with PID tracking and health verification - stop: kills tracked + untracked processes, cleans PID files - status: reports health of each service with HTTP connectivity check - restart: atomic stop + preflight + start cycle Standard port assignments: backend → localhost:8081 public-api → localhost:8082 frontend → localhost:8080 (optional, NodePort usually sufficient) Also rewrites SKILL.md to be more concise (263 lines, down from 659), conforming to the agentskills.io specification (<500 lines), with port forwarding as a first-class concern rather than an afterthought. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
Merge Readiness — Blockers Found
|
Contributor
🚦 Review Queue StatusThis PR has 1 blocker(s) preventing merge:
Action NeededResolve merge conflicts This comment is posted by the Review Queue workflow. It will update when blockers change. |
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.
Summary
port-forward-manager.shscript that eliminates zombie kubectl port-forward processes and port conflicts through structured lifecycle management (preflight, start, stop, status, restart)What the script does
preflightstart [services]stopstatusrestart [services]Test plan
preflightagainst running kind clusterstart— both services start with PID trackingstop— clean shutdown, PID files removedrestart— full cycle works end-to-endstatus— shows healthy with HTTP status codes🤖 Generated with Claude Code