feat: add TCR support and kubectl integration - #3
Open
wenjiehs wants to merge 2 commits into
Open
Conversation
added 2 commits
March 16, 2026 16:21
- Add TCR commands: login, namespaces, repos, images management - Add kubectl commands: get, apply, delete, pods-list, events - Add kubeconfig auto-caching with 1-hour TTL - Support both intranet and extranet access modes - Add CODEBUDDY.md and .gitignore
New TCR Enterprise Commands: - tcr-instances, tcr-create-instance, tcr-delete-instance - tcr-namespaces, tcr-create-ns, tcr-delete-ns - tcr-repos, tcr-create-repo-enterprise, tcr-delete-repo-enterprise - tcr-images New K8s Commands: - kubectl-describe: Detailed resource description - kubectl-create: Quick resource creation - kubectl-exec: Execute commands in containers - kubectl-top: View resource usage (CPU/memory) New Helm Commands: - helm-install, helm-upgrade, helm-uninstall - helm-list, helm-status Updated SKILL.md with comprehensive documentation.
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
This PR adds comprehensive TCR (Tencent Container Registry) support and direct kubectl integration for TKE clusters.
New Features
TCR Commands
tcr-login- Get registry login credentialstcr-list-namespaces- List image namespacestcr-list-repos- List image repositoriestcr-list-images- List image tagstcr-create-namespace- Create new namespacetcr-create-repo- Create new repositorytcr-delete-namespace- Delete namespacetcr-delete-repo- Delete repositoryKubectl Commands
kubectl-get- Get K8s resources with various output formatskubectl-apply- Apply K8s manifests (YAML/JSON)kubectl-delete- Delete K8s resourcespods-list- Convenient pod listingevents- List cluster eventskubeconfig-cache- Manage kubeconfig cacheImprovements
Testing
All commands tested with real TKE cluster in ap-guangzhou region.