[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:
Viktor Barzin 2026-02-07 13:21:58 +00:00
parent ebe5eb1e9b
commit c14dc88ffa
7 changed files with 18 additions and 25 deletions

View file

@ -38,10 +38,10 @@ Need to control smart home devices, check sensor states, or run automations via
```
### Execution Pattern (CRITICAL)
Always activate the venv to get environment variables, then run via `/remote` skill:
Always activate the venv to get environment variables:
```bash
/remote source ~/.venvs/claude/bin/activate && cd /home/wizard/code/infra && python .claude/home-assistant.py [command] [options]
source ~/.venvs/claude/bin/activate && cd ~/code/infra && python .claude/home-assistant.py [command] [options]
```
### Available Commands
@ -134,7 +134,7 @@ python .claude/home-assistant.py notify "Hello" --target notify.mobile_app
To turn on the living room light:
```bash
/remote source ~/.venvs/claude/bin/activate && cd /home/wizard/code/infra && python .claude/home-assistant.py on light.living_room
source ~/.venvs/claude/bin/activate && cd ~/code/infra && python .claude/home-assistant.py on light.living_room
```
## Common Entity Domains

View file

@ -34,10 +34,10 @@ Need to create, query, or manage calendar events in the user's Nextcloud calenda
```
### Execution Pattern (CRITICAL)
Always activate the venv to get environment variables, then run via `/remote` skill:
Always activate the venv to get environment variables:
```bash
/remote source ~/.venvs/claude/bin/activate && cd /home/wizard/code/infra && python .claude/calendar-query.py [command] [options]
source ~/.venvs/claude/bin/activate && cd ~/code/infra && python .claude/calendar-query.py [command] [options]
```
### Available Commands
@ -103,7 +103,7 @@ python .claude/calendar-query.py week
To create an event "Team offsite" from March 20-22, 2026:
```bash
/remote source ~/.venvs/claude/bin/activate && cd /home/wizard/code/infra && python .claude/calendar-query.py create --title "Team offsite" --start "2026-03-20" --end "2026-03-23" --all-day
source ~/.venvs/claude/bin/activate && cd ~/code/infra && python .claude/calendar-query.py create --title "Team offsite" --start "2026-03-20" --end "2026-03-23" --all-day
```
## Important Notes

View file

@ -284,7 +284,6 @@ smtp_password = var.mailserver_accounts["info@viktorbarzin.me"]
### 6. Apply Terraform
```bash
# Via /remote skill
terraform init
terraform apply -target=module.kubernetes_cluster.module.<service> -auto-approve
```