Agent skill
devtools-testing-devtools-skills
Sub-skill of devtools: Testing DevTools Skills.
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:
#!/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.*
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?