[ci skip] Clean up .claude: remove remote executor and /remote skill references
All commands and skills now reference tools directly without any remote execution wrapper. Archived setup-remote-executor.md for reference. Added rule: all infra changes must go through Terraform.
This commit is contained in:
parent
ebe5eb1e9b
commit
c14dc88ffa
7 changed files with 18 additions and 25 deletions
|
|
@ -1,9 +1,9 @@
|
|||
# Kubectl Command
|
||||
|
||||
Run kubectl commands on the cluster via the `/remote` skill.
|
||||
Run kubectl commands on the cluster.
|
||||
|
||||
```
|
||||
/remote kubectl $ARGUMENTS
|
||||
```bash
|
||||
kubectl $ARGUMENTS
|
||||
```
|
||||
|
||||
Examples:
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
# Terraform Apply
|
||||
|
||||
Run terraform apply to deploy infrastructure changes via the `/remote` skill.
|
||||
Run terraform apply to deploy infrastructure changes.
|
||||
|
||||
```
|
||||
/remote terraform apply -target=module.kubernetes_cluster.module.<service> -auto-approve
|
||||
```bash
|
||||
terraform apply -target=module.kubernetes_cluster.module.<service> -auto-approve
|
||||
```
|
||||
|
||||
ALWAYS use -target to speed up execution. Monitor the output and report any errors or successful completions.
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
# Terraform Plan
|
||||
|
||||
Run terraform plan to preview infrastructure changes via the `/remote` skill.
|
||||
Run terraform plan to preview infrastructure changes.
|
||||
|
||||
```
|
||||
/remote terraform plan -target=module.kubernetes_cluster.module.<service>
|
||||
```bash
|
||||
terraform plan -target=module.kubernetes_cluster.module.<service>
|
||||
```
|
||||
|
||||
ALWAYS use -target to speed up execution. Summarize the planned changes, highlighting any resources being destroyed or recreated.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue