Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .agents/skills/brev-cli/SKILL.md
Original file line number Diff line number Diff line change
@@ -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]"
---
<!--
Token Budget:
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/agentskill/agentskill.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading