From deb7154873bd725606af3b2a79673922c52f2014 Mon Sep 17 00:00:00 2001 From: Alec Fong Date: Thu, 5 Mar 2026 16:27:16 -0800 Subject: [PATCH 1/2] feat: install agent skill to ~/.codex in addition to ~/.claude and ~/.agents Adds .codex to the installDirs so the brev-cli skill is also available to Codex CLI users. --- pkg/cmd/agentskill/agentskill.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/agentskill/agentskill.go b/pkg/cmd/agentskill/agentskill.go index d47afb36..1ee90680 100644 --- a/pkg/cmd/agentskill/agentskill.go +++ b/pkg/cmd/agentskill/agentskill.go @@ -116,7 +116,7 @@ func newCmdUninstall(t *terminal.Terminal, store AgentSkillStore) *cobra.Command // installDirs are the parent directories under $HOME where skills are installed. // We install to both so the skill works with Claude Code (~/.claude) and other agents (~/.agent). -var installDirs = []string{".claude", ".agents"} +var installDirs = []string{".claude", ".agents", ".codex"} // GetSkillDirs returns all paths where the skill should be installed func GetSkillDirs(homeDir string) []string { From 138980517e30e50a8676020e90e8969caddfc254 Mon Sep 17 00:00:00 2001 From: Alec Fong Date: Thu, 5 Mar 2026 16:38:29 -0800 Subject: [PATCH 2/2] feat: enhance skill description with ML workload trigger keywords Adds fine-tuning, RL, RLHF, training, inference, batch processing, and model serving keywords so the skill triggers for common ML tasks. --- .agents/skills/brev-cli/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.agents/skills/brev-cli/SKILL.md b/.agents/skills/brev-cli/SKILL.md index 7e6f605e..e6d93cb9 100644 --- a/.agents/skills/brev-cli/SKILL.md +++ b/.agents/skills/brev-cli/SKILL.md @@ -1,8 +1,8 @@ --- name: brev-cli -description: Manage GPU and CPU cloud instances with the Brev CLI. Use when users want to create instances, search for GPUs or CPUs, SSH into instances, open editors, copy files, port forward, manage organizations, or work with cloud compute. Trigger keywords - brev, gpu, cpu, instance, create instance, ssh, vram, vcpu, A100, H100, cloud gpu, cloud cpu, remote machine. +description: Manage GPU and CPU cloud instances with the Brev CLI for ML workloads and general compute. Use when users want to create instances, search for GPUs or CPUs, SSH into instances, open editors, copy files, port forward, manage organizations, or work with cloud compute. Supports fine-tuning, reinforcement learning, training, inference, batch processing, and other ML/AI workloads. Trigger keywords - brev, gpu, cpu, instance, create instance, ssh, vram, vcpu, A100, H100, cloud gpu, cloud cpu, remote machine, finetune, fine-tune, RL, RLHF, training, inference, deploy model, serve model, batch job. allowed-tools: Bash, Read, AskUserQuestion -argument-hint: [create|search|shell|exec|open|ls|delete] [instance-name] +argument-hint: "[create|search|shell|exec|open|ls|delete] [instance-name]" ---