Use this skill when
- Working on posix shell pro tasks or workflows
- Needing guidance, best practices, or checklists for posix shell pro
Do not use this skill when
- The task is unrelated to posix shell pro
- You need a different domain or tool outside this scope
Instructions
- Clarify goals, constraints, and required inputs.
- Apply relevant best practices and validate outcomes.
- Provide actionable steps and verification.
- If detailed examples are required, open
resources/implementation-playbook.md.
Focus Areas
- Strict POSIX compliance for maximum portability
- Shell-agnostic scripting that works on any Unix-like system
- Defensive programming with portable error handling
- Safe argument parsing without bash-specific features
- Portable file operations and resource management
- Cross-platform compatibility (Linux, BSD, Solaris, AIX, macOS)
- Testing with dash, ash, and POSIX mode validation
- Static analysis with ShellCheck in POSIX mode
- Minimalist approach using only POSIX-specified features
- Compatibility with legacy systems and embedded environments
POSIX Constraints
- No arrays (use positional parameters or delimited strings)
- No
[[ conditionals (use [ test command only)
- No process substitution
<() or >()
- No brace expansion
{1..10}
- No
local keyword (use function-scoped variables carefully)
- No
declare, typeset, or readonly for variable attributes
- No
+= operator for string concatenation
- No
${var//pattern/replacement} substitution
- No associative arrays or hash tables
- No
source command (use . for sourcing files)
Approach
- Always use
#!/bin/sh shebang for POSIX shell
- Use
set -eu for error handling (no pipefail in POSIX)
- Quote all variable expansions:
"$var" never $var
- Use
[ ] for all conditional tests, never [[
- Implement argument parsing with
while and case (no getopts for long options)
- Create temporary files safely with
mktemp and cleanup traps
- Use
printf instead of echo for all output (echo behavior varies)
- Use
. script.sh instead of source script.sh for sourcing
- Implement error handling with explicit
|| exit 1 checks
- Design scripts to be idempotent and support dry-run modes
- Use
IFS manipulation carefully and restore original value
- Validate inputs with
[ -n "$var" ] and [ -z "$var" ] tests
- End option parsing with
-- and use rm -rf -- "$dir" for safety
- Use command substitution
$() instead of backticks for readability
- Implement structured logging with timestamps using
date
- Test scripts with dash/ash to verify POSIX compliance
Compatibility & Portability
- Use
#!/bin/sh to invoke the system's POSIX shell
- Test on multiple shells: dash (Debian/Ubuntu default), ash (Alpine/BusyBox), bash --posix
- Avoid GNU-specific options; use POSIX-specified flags only
- Handle platform differences:
uname -s for OS detection
- Use
command -v instead of which (more portable)
- Check for command availability:
command -v cmd >/dev/null 2>&1 || exit 1
- Provide portable implementations for missing utilities
- Use
[ -e "$file" ] for existence checks (works on all systems)
- Avoid
/dev/stdin, /dev/stdout (not universally available)
- Use explicit redirection instead of
&> (bash-specific)
Readability & Maintainability
- Use descriptive variable names in UPPER_CASE for exports, lower_case for locals
- Add section headers with comment blocks for organization
- Keep functions under 50 lines; extract complex logic
- Use consistent indentation (spaces only, typically 2 or 4)
- Document function purpose and parameters in comments
- Use meaningful names:
validate_input not check
- Add comments for non-obvious POSIX workarounds
- Group related functions with descriptive headers
- Extract repeated code into functions
- Use blank lines to separate logical sections
Safety & Security Patterns
- Quote all variable expansions to prevent word splitting
- Validate file permissions before operations:
[ -r "$file" ] || exit 1
- Sanitize user input before using in commands
- Validate numeric input:
case $num in *[!0-9]*) exit 1 ;; esac
- Never use
eval on untrusted input
- Use
-- to separate options from arguments: rm -- "$file"
- Validate required variables:
[ -n "$VAR" ] || { echo "VAR required" >&2; exit 1; }
- Check exit codes explicitly:
cmd || { echo "failed" >&2; exit 1; }
- Use
trap for cleanup: trap 'rm -f "$tmpfile"' EXIT INT TERM
- Set restrictive umask for sensitive files:
umask 077
- Log security-relevant operations to syslog or file
- Validate file paths don't contain unexpected characters
- Use full paths for commands in security-critical scripts:
/bin/rm not rm
Performance Optimization
- Use shell built-ins over external commands when possible
- Avoid spawning subshells in loops: use
while read not for i in $(cat)
- Cache command results in variables instead of repeated execution
- Use
case for multiple string comparisons (faster than repeated if)
- Process files line-by-line for large files
- Use
expr or $(( )) for arithmetic (POSIX supports $(( )))
- Minimize external command calls in tight loops
- Use
grep -q when you only need true/false (faster than capturing output)
- Batch similar operations together
- Use here-documents for multi-line strings instead of multiple echo calls
Documentation Standards
- Implement
-h flag for help (avoid --help without proper parsing)
- Include usage message showing synopsis and options
- Document required vs optional arguments clearly
- List exit codes: 0=success, 1=error, specific codes for specific failures
- Document prerequisites and required commands
- Add header comment with script purpose and author
- Include examples of common usage patterns
- Document environment variables used by script
- Provide troubleshooting guidance for common issues
- Note POSIX compliance in documentation
Working Without Arrays
Since POSIX sh lacks arrays, use these patterns:
- Positional Parameters:
set -- item1 item2 item3; for arg; do echo "$arg"; done
- Delimited Strings:
items="a:b:c"; IFS=:; set -- $items; IFS=' '
- Newline-Separated:
items="a\nb\nc"; while IFS= read -r item; do echo "$item"; done <<EOF
- Counters:
i=0; while [ $i -lt 10 ]; do i=$((i+1)); done
- Field Splitting: Use
cut, awk, or parameter expansion for string splitting
Portable Conditionals
Use [ ] test command with POSIX operators:
- File Tests:
[ -e file ] exists, [ -f file ] regular file, [ -d dir ] directory
- String Tests:
[ -z "$str" ] empty, [ -n "$str" ] not empty, [ "$a" = "$b" ] equal
- Numeric Tests:
[ "$a" -eq "$b" ] equal, [ "$a" -lt "$b" ] less than
- Logical:
[ cond1 ] && [ cond2 ] AND, [ cond1 ] || [ cond2 ] OR
- Negation:
[ ! -f file ] not a file
- Pattern Matching: Use
case not [[ =~ ]]
CI/CD Integration
- Matrix testing: Test across dash, ash, bash --posix, yash on Linux, macOS, Alpine
- Container testing: Use alpine:latest (ash), debian:stable (dash) for reproducible tests
- Pre-commit hooks: Configure checkbashisms, shellcheck -s sh, shfmt -ln posix
- GitHub Actions: Use shellcheck-problem-matchers with POSIX mode
- Cross-platform validation: Test on Linux, macOS, FreeBSD, NetBSD
- BusyBox testing: Validate on BusyBox environments for embedded systems
- Automated releases: Tag versions and generate portable distribution packages
- Coverage tracking: Ensure test coverage across all POSIX shells
- Example workflow:
shellcheck -s sh *.sh && shfmt -ln posix -d *.sh && checkbashisms *.sh
Embedded Systems & Limited Environments
- BusyBox compatibility: Test with BusyBox's limited ash implementation
- Alpine Linux: Default shell is BusyBox ash, not bash
- Resource constraints: Minimize memory usage, avoid spawning excessive processes
- Missing utilities: Provide fallbacks when common tools unavailable (
mktemp, seq)
- Read-only filesystems: Handle scenarios where
/tmp may be restricted
- No coreutils: Some environments lack GNU coreutils extensions
- Signal handling: Limited signal support in minimal environments
- Startup scripts: Init scripts must be POSIX for maximum compatibility
- Example: Check for mktemp:
command -v mktemp >/dev/null 2>&1 || mktemp() { ... }
Migration from Bash to POSIX sh
- Assessment: Run
checkbashisms to identify bash-specific constructs
- Array elimination: Convert arrays to delimited strings or positional parameters
- Conditional updates: Replace
[[ with [ and adjust regex to case patterns
- Local variables: Remove
local keyword, use function prefixes instead
- Process substitution: Replace
<() with temporary files or pipes
- Parameter expansion: Use
sed/awk for complex string manipulation
- Testing strategy: Incremental conversion with continuous validation
- Documentation: Note any POSIX limitations or workarounds
- Gradual migration: Convert one function at a time, test thoroughly
- Fallback support: Maintain dual implementations during transition if needed
Quality Checklist
- Scripts pass ShellCheck with
-s sh flag (POSIX mode)
- Code is formatted consistently with shfmt using
-ln posix
- Test on multiple shells: dash, ash, bash --posix, yash
- All variable expansions are properly quoted
- No bash-specific features used (arrays,
[[, local, etc.)
- Error handling covers all failure modes
- Temporary resources cleaned up with EXIT trap
- Scripts provide clear usage information
- Input validation prevents injection attacks
- Scripts portable across Unix-like systems (Linux, BSD, Solaris, macOS, Alpine)
- BusyBox compatibility validated for embedded use cases
- No GNU-specific extensions or flags used
Output
- POSIX-compliant shell scripts maximizing portability
- Test suites using shellspec or bats-core validating across dash, ash, yash
- CI/CD configurations for multi-shell matrix testing
- Portable implementations of common patterns with fallbacks
- Documentation on POSIX limitations and workarounds with examples
- Migration guides for converting bash scripts to POSIX sh incrementally
- Cross-platform compatibility matrices (Linux, BSD, macOS, Solaris, Alpine)
- Performance benchmarks comparing different POSIX shells
- Fallback implementations for missing utilities (mktemp, seq, timeout)
- BusyBox-compatible scripts for embedded and container environments
- Package distributions for various platforms without bash dependency
Essential Tools
Static Analysis & Formatting
- ShellCheck: Static analyzer with
-s sh for POSIX mode validation
- shfmt: Shell formatter with
-ln posix option for POSIX syntax
- checkbashisms: Detects bash-specific constructs in scripts (from devscripts)
- Semgrep: SAST with POSIX-specific security rules
- CodeQL: Security scanning for shell scripts
POSIX Shell Implementations for Testing
- dash: Debian Almquist Shell - lightweight, strict POSIX compliance (primary test target)
- ash: Almquist Shell - BusyBox default, embedded systems
- yash: Yet Another Shell - strict POSIX conformance validation
- posh: Policy-compliant Ordinary Shell - Debian policy compliance
- osh: Oil Shell - modern POSIX-compatible shell with better error messages
- bash --posix: GNU Bash in POSIX mode for compatibility testing
Testing Frameworks
- bats-core: Bash testing framework (works with POSIX sh)
- shellspec: BDD-style testing that supports POSIX sh
- shunit2: xUnit-style framework with POSIX sh support
- sharness: Test framework used by Git (POSIX-compatible)
Common Pitfalls to Avoid
- Using
[[ instead of [ (bash-specific)
- Using arrays (not in POSIX sh)
- Using
local keyword (bash/ksh extension)
- Using
echo without printf (behavior varies across implementations)
- Using
source instead of . for sourcing scripts
- Using bash-specific parameter expansion:
${var//pattern/replacement}
- Using process substitution
<() or >()
- Using
function keyword (ksh/bash syntax)
- Using
$RANDOM variable (not in POSIX)
- Using
read -a for arrays (bash-specific)
- Using
set -o pipefail (bash-specific)
- Using
&> for redirection (use >file 2>&1)
Advanced Techniques
- Error Trapping:
trap 'echo "Error at line $LINENO" >&2; exit 1' EXIT; trap - EXIT on success
- Safe Temp Files:
tmpfile=$(mktemp) || exit 1; trap 'rm -f "$tmpfile"' EXIT INT TERM
- Simulating Arrays:
set -- item1 item2 item3; for arg; do process "$arg"; done
- Field Parsing:
IFS=:; while read -r user pass uid gid; do ...; done < /etc/passwd
- String Replacement:
echo "$str" | sed 's/old/new/g' or use parameter expansion ${str%suffix}
- Default Values:
value=${var:-default} assigns default if var unset or null
- Portable Functions: Avoid
function keyword, use func_name() { ... }
- Subshell Isolation:
(cd dir && cmd) changes directory without affecting parent
- Here-documents:
cat <<'EOF' with quotes prevents variable expansion
- Command Existence:
command -v cmd >/dev/null 2>&1 && echo "found" || echo "missing"
POSIX-Specific Best Practices
- Always quote variable expansions:
"$var" not $var
- Use
[ ] with proper spacing: [ "$a" = "$b" ] not ["$a"="$b"]
- Use
= for string comparison, not == (bash extension)
- Use
. for sourcing, not source
- Use
printf for all output, avoid echo -e or echo -n
- Use
$(( )) for arithmetic, not let or declare -i
- Use
case for pattern matching, not [[ =~ ]]
- Test scripts with
sh -n script.sh to check syntax
- Use
command -v not type or which for portability
- Explicitly handle all error conditions with
|| exit 1
References & Further Reading
POSIX Standards & Specifications
Portability & Best Practices
Tools & Testing
AGI Framework Integration
Adapted for @techwavedev/agi-agent-kit
Original source: antigravity-awesome-skills
Memory-First Protocol
Retrieve prior deployment configurations, rollback procedures, and incident post-mortems. Avoid re-discovering infrastructure patterns.
# Check for prior infrastructure context before starting
python3 execution/memory_manager.py auto --query "deployment configuration and patterns for Posix Shell Pro"
Storing Results
After completing work, store infrastructure decisions for future sessions:
python3 execution/memory_manager.py store \
--content "Deployment pipeline: configured blue-green deployment with health checks on port 8080" \
--type technical --project <project> \
--tags posix-shell-pro devops
Multi-Agent Collaboration
Broadcast deployment changes so frontend and backend agents update their configurations accordingly.
python3 execution/cross_agent_context.py store \
--agent "<your-agent>" \
--action "Deployed infrastructure changes — updated CI/CD pipeline with new health check endpoints" \
--project <project>
Playbook Integration
Use the ship-saas-mvp or full-stack-deploy playbook to sequence this skill with testing, documentation, and deployment verification.
1---2name: posix-shell-pro3description: Expert in strict POSIX sh scripting for maximum portability across Unix-like systems. Specializes in shell scripts that run on any POSIX-compliant shell (dash, ash, sh, bash --posix).4---56## Use this skill when78- Working on posix shell pro tasks or workflows9- Needing guidance, best practices, or checklists for posix shell pro1011## Do not use this skill when1213- The task is unrelated to posix shell pro14- You need a different domain or tool outside this scope1516## Instructions1718- Clarify goals, constraints, and required inputs.19- Apply relevant best practices and validate outcomes.20- Provide actionable steps and verification.21- If detailed examples are required, open `resources/implementation-playbook.md`.2223## Focus Areas2425- Strict POSIX compliance for maximum portability26- Shell-agnostic scripting that works on any Unix-like system27- Defensive programming with portable error handling28- Safe argument parsing without bash-specific features29- Portable file operations and resource management30- Cross-platform compatibility (Linux, BSD, Solaris, AIX, macOS)31- Testing with dash, ash, and POSIX mode validation32- Static analysis with ShellCheck in POSIX mode33- Minimalist approach using only POSIX-specified features34- Compatibility with legacy systems and embedded environments3536## POSIX Constraints3738- No arrays (use positional parameters or delimited strings)39- No `[[` conditionals (use `[` test command only)40- No process substitution `<()` or `>()`41- No brace expansion `{1..10}`42- No `local` keyword (use function-scoped variables carefully)43- No `declare`, `typeset`, or `readonly` for variable attributes44- No `+=` operator for string concatenation45- No `${var//pattern/replacement}` substitution46- No associative arrays or hash tables47- No `source` command (use `.` for sourcing files)4849## Approach5051- Always use `#!/bin/sh` shebang for POSIX shell52- Use `set -eu` for error handling (no `pipefail` in POSIX)53- Quote all variable expansions: `"$var"` never `$var`54- Use `[ ]` for all conditional tests, never `[[`55- Implement argument parsing with `while` and `case` (no `getopts` for long options)56- Create temporary files safely with `mktemp` and cleanup traps57- Use `printf` instead of `echo` for all output (echo behavior varies)58- Use `. script.sh` instead of `source script.sh` for sourcing59- Implement error handling with explicit `|| exit 1` checks60- Design scripts to be idempotent and support dry-run modes61- Use `IFS` manipulation carefully and restore original value62- Validate inputs with `[ -n "$var" ]` and `[ -z "$var" ]` tests63- End option parsing with `--` and use `rm -rf -- "$dir"` for safety64- Use command substitution `$()` instead of backticks for readability65- Implement structured logging with timestamps using `date`66- Test scripts with dash/ash to verify POSIX compliance6768## Compatibility & Portability6970- Use `#!/bin/sh` to invoke the system's POSIX shell71- Test on multiple shells: dash (Debian/Ubuntu default), ash (Alpine/BusyBox), bash --posix72- Avoid GNU-specific options; use POSIX-specified flags only73- Handle platform differences: `uname -s` for OS detection74- Use `command -v` instead of `which` (more portable)75- Check for command availability: `command -v cmd >/dev/null 2>&1 || exit 1`76- Provide portable implementations for missing utilities77- Use `[ -e "$file" ]` for existence checks (works on all systems)78- Avoid `/dev/stdin`, `/dev/stdout` (not universally available)79- Use explicit redirection instead of `&>` (bash-specific)8081## Readability & Maintainability8283- Use descriptive variable names in UPPER_CASE for exports, lower_case for locals84- Add section headers with comment blocks for organization85- Keep functions under 50 lines; extract complex logic86- Use consistent indentation (spaces only, typically 2 or 4)87- Document function purpose and parameters in comments88- Use meaningful names: `validate_input` not `check`89- Add comments for non-obvious POSIX workarounds90- Group related functions with descriptive headers91- Extract repeated code into functions92- Use blank lines to separate logical sections9394## Safety & Security Patterns9596- Quote all variable expansions to prevent word splitting97- Validate file permissions before operations: `[ -r "$file" ] || exit 1`98- Sanitize user input before using in commands99- Validate numeric input: `case $num in *[!0-9]*) exit 1 ;; esac`100- Never use `eval` on untrusted input101- Use `--` to separate options from arguments: `rm -- "$file"`102- Validate required variables: `[ -n "$VAR" ] || { echo "VAR required" >&2; exit 1; }`103- Check exit codes explicitly: `cmd || { echo "failed" >&2; exit 1; }`104- Use `trap` for cleanup: `trap 'rm -f "$tmpfile"' EXIT INT TERM`105- Set restrictive umask for sensitive files: `umask 077`106- Log security-relevant operations to syslog or file107- Validate file paths don't contain unexpected characters108- Use full paths for commands in security-critical scripts: `/bin/rm` not `rm`109110## Performance Optimization111112- Use shell built-ins over external commands when possible113- Avoid spawning subshells in loops: use `while read` not `for i in $(cat)`114- Cache command results in variables instead of repeated execution115- Use `case` for multiple string comparisons (faster than repeated `if`)116- Process files line-by-line for large files117- Use `expr` or `$(( ))` for arithmetic (POSIX supports `$(( ))`)118- Minimize external command calls in tight loops119- Use `grep -q` when you only need true/false (faster than capturing output)120- Batch similar operations together121- Use here-documents for multi-line strings instead of multiple echo calls122123## Documentation Standards124125- Implement `-h` flag for help (avoid `--help` without proper parsing)126- Include usage message showing synopsis and options127- Document required vs optional arguments clearly128- List exit codes: 0=success, 1=error, specific codes for specific failures129- Document prerequisites and required commands130- Add header comment with script purpose and author131- Include examples of common usage patterns132- Document environment variables used by script133- Provide troubleshooting guidance for common issues134- Note POSIX compliance in documentation135136## Working Without Arrays137138Since POSIX sh lacks arrays, use these patterns:139140- **Positional Parameters**: `set -- item1 item2 item3; for arg; do echo "$arg"; done`141- **Delimited Strings**: `items="a:b:c"; IFS=:; set -- $items; IFS=' '`142- **Newline-Separated**: `items="a\nb\nc"; while IFS= read -r item; do echo "$item"; done <<EOF`143- **Counters**: `i=0; while [ $i -lt 10 ]; do i=$((i+1)); done`144- **Field Splitting**: Use `cut`, `awk`, or parameter expansion for string splitting145146## Portable Conditionals147148Use `[ ]` test command with POSIX operators:149150- **File Tests**: `[ -e file ]` exists, `[ -f file ]` regular file, `[ -d dir ]` directory151- **String Tests**: `[ -z "$str" ]` empty, `[ -n "$str" ]` not empty, `[ "$a" = "$b" ]` equal152- **Numeric Tests**: `[ "$a" -eq "$b" ]` equal, `[ "$a" -lt "$b" ]` less than153- **Logical**: `[ cond1 ] && [ cond2 ]` AND, `[ cond1 ] || [ cond2 ]` OR154- **Negation**: `[ ! -f file ]` not a file155- **Pattern Matching**: Use `case` not `[[ =~ ]]`156157## CI/CD Integration158159- **Matrix testing**: Test across dash, ash, bash --posix, yash on Linux, macOS, Alpine160- **Container testing**: Use alpine:latest (ash), debian:stable (dash) for reproducible tests161- **Pre-commit hooks**: Configure checkbashisms, shellcheck -s sh, shfmt -ln posix162- **GitHub Actions**: Use shellcheck-problem-matchers with POSIX mode163- **Cross-platform validation**: Test on Linux, macOS, FreeBSD, NetBSD164- **BusyBox testing**: Validate on BusyBox environments for embedded systems165- **Automated releases**: Tag versions and generate portable distribution packages166- **Coverage tracking**: Ensure test coverage across all POSIX shells167- Example workflow: `shellcheck -s sh *.sh && shfmt -ln posix -d *.sh && checkbashisms *.sh`168169## Embedded Systems & Limited Environments170171- **BusyBox compatibility**: Test with BusyBox's limited ash implementation172- **Alpine Linux**: Default shell is BusyBox ash, not bash173- **Resource constraints**: Minimize memory usage, avoid spawning excessive processes174- **Missing utilities**: Provide fallbacks when common tools unavailable (`mktemp`, `seq`)175- **Read-only filesystems**: Handle scenarios where `/tmp` may be restricted176- **No coreutils**: Some environments lack GNU coreutils extensions177- **Signal handling**: Limited signal support in minimal environments178- **Startup scripts**: Init scripts must be POSIX for maximum compatibility179- Example: Check for mktemp: `command -v mktemp >/dev/null 2>&1 || mktemp() { ... }`180181## Migration from Bash to POSIX sh182183- **Assessment**: Run `checkbashisms` to identify bash-specific constructs184- **Array elimination**: Convert arrays to delimited strings or positional parameters185- **Conditional updates**: Replace `[[` with `[` and adjust regex to `case` patterns186- **Local variables**: Remove `local` keyword, use function prefixes instead187- **Process substitution**: Replace `<()` with temporary files or pipes188- **Parameter expansion**: Use `sed`/`awk` for complex string manipulation189- **Testing strategy**: Incremental conversion with continuous validation190- **Documentation**: Note any POSIX limitations or workarounds191- **Gradual migration**: Convert one function at a time, test thoroughly192- **Fallback support**: Maintain dual implementations during transition if needed193194## Quality Checklist195196- Scripts pass ShellCheck with `-s sh` flag (POSIX mode)197- Code is formatted consistently with shfmt using `-ln posix`198- Test on multiple shells: dash, ash, bash --posix, yash199- All variable expansions are properly quoted200- No bash-specific features used (arrays, `[[`, `local`, etc.)201- Error handling covers all failure modes202- Temporary resources cleaned up with EXIT trap203- Scripts provide clear usage information204- Input validation prevents injection attacks205- Scripts portable across Unix-like systems (Linux, BSD, Solaris, macOS, Alpine)206- BusyBox compatibility validated for embedded use cases207- No GNU-specific extensions or flags used208209## Output210211- POSIX-compliant shell scripts maximizing portability212- Test suites using shellspec or bats-core validating across dash, ash, yash213- CI/CD configurations for multi-shell matrix testing214- Portable implementations of common patterns with fallbacks215- Documentation on POSIX limitations and workarounds with examples216- Migration guides for converting bash scripts to POSIX sh incrementally217- Cross-platform compatibility matrices (Linux, BSD, macOS, Solaris, Alpine)218- Performance benchmarks comparing different POSIX shells219- Fallback implementations for missing utilities (mktemp, seq, timeout)220- BusyBox-compatible scripts for embedded and container environments221- Package distributions for various platforms without bash dependency222223## Essential Tools224225### Static Analysis & Formatting226- **ShellCheck**: Static analyzer with `-s sh` for POSIX mode validation227- **shfmt**: Shell formatter with `-ln posix` option for POSIX syntax228- **checkbashisms**: Detects bash-specific constructs in scripts (from devscripts)229- **Semgrep**: SAST with POSIX-specific security rules230- **CodeQL**: Security scanning for shell scripts231232### POSIX Shell Implementations for Testing233- **dash**: Debian Almquist Shell - lightweight, strict POSIX compliance (primary test target)234- **ash**: Almquist Shell - BusyBox default, embedded systems235- **yash**: Yet Another Shell - strict POSIX conformance validation236- **posh**: Policy-compliant Ordinary Shell - Debian policy compliance237- **osh**: Oil Shell - modern POSIX-compatible shell with better error messages238- **bash --posix**: GNU Bash in POSIX mode for compatibility testing239240### Testing Frameworks241- **bats-core**: Bash testing framework (works with POSIX sh)242- **shellspec**: BDD-style testing that supports POSIX sh243- **shunit2**: xUnit-style framework with POSIX sh support244- **sharness**: Test framework used by Git (POSIX-compatible)245246## Common Pitfalls to Avoid247248- Using `[[` instead of `[` (bash-specific)249- Using arrays (not in POSIX sh)250- Using `local` keyword (bash/ksh extension)251- Using `echo` without `printf` (behavior varies across implementations)252- Using `source` instead of `.` for sourcing scripts253- Using bash-specific parameter expansion: `${var//pattern/replacement}`254- Using process substitution `<()` or `>()`255- Using `function` keyword (ksh/bash syntax)256- Using `$RANDOM` variable (not in POSIX)257- Using `read -a` for arrays (bash-specific)258- Using `set -o pipefail` (bash-specific)259- Using `&>` for redirection (use `>file 2>&1`)260261## Advanced Techniques262263- **Error Trapping**: `trap 'echo "Error at line $LINENO" >&2; exit 1' EXIT; trap - EXIT` on success264- **Safe Temp Files**: `tmpfile=$(mktemp) || exit 1; trap 'rm -f "$tmpfile"' EXIT INT TERM`265- **Simulating Arrays**: `set -- item1 item2 item3; for arg; do process "$arg"; done`266- **Field Parsing**: `IFS=:; while read -r user pass uid gid; do ...; done < /etc/passwd`267- **String Replacement**: `echo "$str" | sed 's/old/new/g'` or use parameter expansion `${str%suffix}`268- **Default Values**: `value=${var:-default}` assigns default if var unset or null269- **Portable Functions**: Avoid `function` keyword, use `func_name() { ... }`270- **Subshell Isolation**: `(cd dir && cmd)` changes directory without affecting parent271- **Here-documents**: `cat <<'EOF'` with quotes prevents variable expansion272- **Command Existence**: `command -v cmd >/dev/null 2>&1 && echo "found" || echo "missing"`273274## POSIX-Specific Best Practices275276- Always quote variable expansions: `"$var"` not `$var`277- Use `[ ]` with proper spacing: `[ "$a" = "$b" ]` not `["$a"="$b"]`278- Use `=` for string comparison, not `==` (bash extension)279- Use `.` for sourcing, not `source`280- Use `printf` for all output, avoid `echo -e` or `echo -n`281- Use `$(( ))` for arithmetic, not `let` or `declare -i`282- Use `case` for pattern matching, not `[[ =~ ]]`283- Test scripts with `sh -n script.sh` to check syntax284- Use `command -v` not `type` or `which` for portability285- Explicitly handle all error conditions with `|| exit 1`286287## References & Further Reading288289### POSIX Standards & Specifications290- [POSIX Shell Command Language](https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html) - Official POSIX.1-2024 specification291- [POSIX Utilities](https://pubs.opengroup.org/onlinepubs/9699919799/idx/utilities.html) - Complete list of POSIX-mandated utilities292- [Autoconf Portable Shell Programming](https://www.gnu.org/software/autoconf/manual/autoconf.html#Portable-Shell) - Comprehensive portability guide from GNU293294### Portability & Best Practices295- [Rich's sh (POSIX shell) tricks](http://www.etalabs.net/sh_tricks.html) - Advanced POSIX shell techniques296- [Suckless Shell Style Guide](https://suckless.org/coding_style/) - Minimalist POSIX sh patterns297- [FreeBSD Porter's Handbook - Shell](https://docs.freebsd.org/en/books/porters-handbook/makefiles/#porting-shlibs) - BSD portability considerations298299### Tools & Testing300- [checkbashisms](https://manpages.debian.org/testing/devscripts/checkbashisms.1.en.html) - Detect bash-specific constructs301302---303304<!-- AGI-INTEGRATION-START -->305306## AGI Framework Integration307308> **Adapted for [@techwavedev/agi-agent-kit](https://www.npmjs.com/package/@techwavedev/agi-agent-kit)**309> Original source: [antigravity-awesome-skills](https://github.com/sickn33/antigravity-awesome-skills)310311### Memory-First Protocol312313Retrieve prior deployment configurations, rollback procedures, and incident post-mortems. Avoid re-discovering infrastructure patterns.314315```bash316# Check for prior infrastructure context before starting317python3 execution/memory_manager.py auto --query "deployment configuration and patterns for Posix Shell Pro"318```319320### Storing Results321322After completing work, store infrastructure decisions for future sessions:323324```bash325python3 execution/memory_manager.py store \326 --content "Deployment pipeline: configured blue-green deployment with health checks on port 8080" \327 --type technical --project <project> \328 --tags posix-shell-pro devops329```330331### Multi-Agent Collaboration332333Broadcast deployment changes so frontend and backend agents update their configurations accordingly.334335```bash336python3 execution/cross_agent_context.py store \337 --agent "<your-agent>" \338 --action "Deployed infrastructure changes — updated CI/CD pipeline with new health check endpoints" \339 --project <project>340```341342### Playbook Integration343344Use the `ship-saas-mvp` or `full-stack-deploy` playbook to sequence this skill with testing, documentation, and deployment verification.345346<!-- AGI-INTEGRATION-END -->