skillpack 0.2.2

Generate and verify the agent-distribution layer (Claude Code skill packs) for any OSS project.
Documentation
1
2
3
4
5
6
7
8
9
#!/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 = ARGV
if argv.include?("--help") || argv.include?("-h")
  puts "Usage: sample-ruby [--lint] [--fix]"
  exit 0
end
puts "sample-ruby"