Agent skill

devtools-testing-devtools-skills

Sub-skill of devtools: Testing DevTools Skills.

Stars 4
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/development/tools/devtools/testing-devtools-skills

SKILL.md

Testing DevTools Skills

Testing DevTools Skills

Validate configurations and setups:

bash
#!/bin/bash
# test_devtools.sh

test_docker() {
    docker --version && echo "PASS: Docker installed" || echo "FAIL: Docker not found"
    docker compose version && echo "PASS: Compose installed" || echo "FAIL: Compose not found"
}

test_cli_tools() {
    command -v fzf && echo "PASS: fzf installed" || echo "FAIL: fzf not found"
    command -v fd && echo "PASS: fd installed" || echo "FAIL: fd not found"
    command -v rg && echo "PASS: ripgrep installed" || echo "FAIL: ripgrep not found"
    command -v bat && echo "PASS: bat installed" || echo "FAIL: bat not found"
}

test_git_config() {
    git config --get rerere.enabled && echo "PASS: rerere enabled" || echo "WARN: rerere disabled"
    git config --get pull.rebase && echo "PASS: pull.rebase set" || echo "WARN: pull.rebase not set"
}

test_vscode() {
    code --version && echo "PASS: VS Code installed" || echo "FAIL: VS Code not found"

*See sub-skills for full details.*

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results