Agent skill · Testing & QA

bats-test-scaffolder

Generate BATS test structure and fixtures for shell script testing with setup/teardown, assertions, and mocking.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill bats-test-scaffolder --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBashGlobGrep
Path: library/specializations/cli-mcp-development/skills/bats-test-scaffolder/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# BATS Test Scaffolder Generate BATS test structure for shell script testing. ## Capabilities - Generate BATS test files - Create setup and teardown fixtures - Implement custom assertions - Set up mocking helpers - Configure test isolation - Generate test helpers ## Usage Invoke this skill when you need to: - Set up BATS testing for shell scripts - Create test fixtures and helpers - Implement mock functions - Generate test cases ## Generated Test Structure ``` tests/ ├── bats/ │ └── bats-*.bash # BATS submodules ├── test_helper/ │ ├── common-setup.bash # Common setup │ └── mocks.bash # Mock helpers ├── fixtures/ │ ├── input.txt # Test fixtures │ └── expected.txt └── *.bats # Test files ``` ## Test File Template ```bash #!/usr/bin/env bats # Load test helpers load 'test_helper/common-setup' # Setup runs before each test setup() { common_setup # Test-specific setup export TEST_DIR="$(mktemp -d)" } # Teardown runs after each test teardown() { # Cleanup rm -rf "${TEST_DIR}" } @test "script displays help with --help" { run ./script.sh --help assert_success assert_output --partial "Usage:" } @test "script fails without required argument" { run ./script.sh assert_failure assert_output --p

What's inside
Steps it walks through
  1. Capabilities
  2. Usage
  3. Generated Test Structure
  4. Test File Template
  5. Test Helper (testhelper/common-setup.bash)
  6. Target Processes
Ships with 1 file
  • README.md
Commands it runs
Load test helpers
load 'test_helper/common-setup'
Setup runs before each test
common_setup
export TEST_DIR="$(mktemp -d)"
Teardown runs after each test
rm -rf "${TEST_DIR}"
run ./script.sh --help
assert_success
assert_output --partial "Usage:"
More from babysitter
All skills →
About this skill
What does the bats-test-scaffolder skill do?

Generate BATS test structure and fixtures for shell script testing with setup/teardown, assertions, and mocking.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill bats-test-scaffolder --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going