This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| ############################################################################## | |
| # Project — AiDevSquad Hive-Mind Launcher | |
| # | |
| # Reads the hive manifest and starts Claude Code with the team already spinning. | |
| # Check the gist https://gist.github.com/zeroows/5b86f7a38735e4719929c0e7cbbe763b | |
| # Usage: | |
| # ./start-hive.sh # Start hive (interactive) | |
| # ./start-hive.sh "add pushback notification domain" # Start hive with a task | |
| # ./start-hive.sh --resume # Resume last session |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Function to display usage information | |
| usage() { | |
| echo "Usage: $0 /path/to/input.mp4 [ /path/to/output_directory ]" | |
| exit 1 | |
| } | |
| # Check if at least one argument (input file) is provided | |
| if [ $# -lt 1 ]; then |