Generate, verify, and maintain AI agent guidance (skills, plugins, AGENTS.md) for Claude Code, Cursor, Codex, Copilot, and 10+ AI coding ecosystems — one command turns any CLI or library into an agent-discoverable skill pack.
#!/usr/bin/env ruby
# sample-ruby — binstub fixture for skillpack's Ruby CLI detection.
# Prints a `--help` usage line so skillpack's invocation check can capture it.
argv =ARGVif argv.include?("--help")|| argv.include?("-h")puts"Usage: sample-ruby [--lint] [--fix]"exit0endputs"sample-ruby"