Overview
Implement a comprehensive Batch Script Mode that allows users to execute complex, multi-step operations across cluster nodes using script files. This feature will enable automated workflows, conditional execution, error handling, and sophisticated orchestration patterns while maintaining bssh's focus on parallel execution and simplicity.
Technical Approach
The implementation will follow a dual-format approach, supporting both YAML-based declarative scripts and a custom DSL for more dynamic operations. The script engine will leverage the existing executor infrastructure while adding new capabilities for state management, conditional logic, and error recovery.
Architecture Design
- Script Parser Layer: Flexible parser supporting both YAML and custom DSL formats
- Execution Engine: State-aware runtime with support for variables, conditions, and loops
- Integration Layer: Seamless integration with existing commands (exec, upload, download, ping)
- Session Manager: Persistent connection management for script execution
- Result Aggregator: Intelligent result collection with support for conditional branching
Why This Approach
- Dual Format Support: YAML for simple declarative scripts, DSL for complex logic
- Leverages Existing Infrastructure: Reuses executor, SSH client, and command modules
- Progressive Enhancement: Simple scripts work immediately, advanced features are optional
- Maintainability: Clear separation between parsing, execution, and state management
- Performance: Connection reuse within script execution for efficiency
- Security: Sandboxed execution with explicit variable scoping
Implementation Phases
Phase 1: Core Infrastructure
Phase 2: Execution Engine
Phase 3: Advanced Features
Phase 4: Custom DSL Implementation
Phase 5: Integration and CLI
Phase 6: Security and Performance
Phase 7: Testing and Documentation
Example Script Formats
YAML Format Example
name: System Update Script
version: 1.0
description: Update and restart services across cluster
variables:
service_name: nginx
backup_dir: /tmp/backups
defaults:
on_error: continue
timeout: 300
parallel: 5
steps:
- name: Create backup directory
command: mkdir -p {{ backup_dir }}
- name: Check service status
command: systemctl status {{ service_name }}
register: service_status
ignore_errors: true
- name: Stop service if running
command: systemctl stop {{ service_name }}
when: service_status.exit_code == 0
- name: Update packages
command: |
apt-get update
apt-get upgrade -y {{ service_name }}
become: true
Custom DSL Format Example
script "System Update" {
var service = "nginx"
var backup_dir = "/tmp/backups"
defaults {
on_error = continue
timeout = 5m
parallel = 5
}
// Create backup directory on all nodes
exec "mkdir -p ${backup_dir}"
// Check service status and store result
status = exec "systemctl status ${service}" {
ignore_errors = true
}
// Conditional execution based on status
if (status.success) {
exec "systemctl stop ${service}"
}
// Update packages with retry logic
retry(3, delay: 10s) {
exec """
apt-get update
apt-get upgrade -y ${service}
""" with sudo
}
}
Dependencies
serde_yaml - Already present for YAML parsing
pest or nom - For DSL parsing (new dependency)
handlebars or tera - For template engine (optional, could build custom)
- Existing bssh infrastructure (executor, SSH client, config management)
Success Criteria
- Successfully parse and execute YAML-based scripts with basic flow control
- Support for variables, conditions, and loops in both formats
- Error handling with configurable strategies (fail-fast, continue, retry)
- Performance: Minimal overhead compared to direct command execution
- Security: Sandboxed execution with no arbitrary code execution
- Compatibility: All existing bssh commands work within scripts
- Usability: Clear error messages and debugging capabilities
- Documentation: Comprehensive guides with real-world examples
Use Cases
- System updates across clusters
- Log collection and aggregation
- Rolling deployment patterns
- Health check and monitoring
- Backup and restore operations
Related Work
- Original task document:
.claude/tasks/todo/2_batch_script_mode.md
Overview
Implement a comprehensive Batch Script Mode that allows users to execute complex, multi-step operations across cluster nodes using script files. This feature will enable automated workflows, conditional execution, error handling, and sophisticated orchestration patterns while maintaining bssh's focus on parallel execution and simplicity.
Technical Approach
The implementation will follow a dual-format approach, supporting both YAML-based declarative scripts and a custom DSL for more dynamic operations. The script engine will leverage the existing executor infrastructure while adding new capabilities for state management, conditional logic, and error recovery.
Architecture Design
Why This Approach
Implementation Phases
Phase 1: Core Infrastructure
src/script/src/script/yaml_parser.rs)src/script/types.rs)src/script/validator.rs)Phase 2: Execution Engine
src/script/engine.rs)src/script/state.rs)src/script/error_handler.rs)src/script/context.rs)Phase 3: Advanced Features
src/script/conditions.rs)src/script/loops.rs)src/script/template.rs)src/script/functions.rs)Phase 4: Custom DSL Implementation
src/script/dsl/lexer.rs)src/script/dsl/parser.rs)src/script/dsl/converter.rs)Phase 5: Integration and CLI
src/cli.rs)src/executor.rs)Phase 6: Security and Performance
src/script/security.rs)Phase 7: Testing and Documentation
Example Script Formats
YAML Format Example
Custom DSL Format Example
Dependencies
serde_yaml- Already present for YAML parsingpestornom- For DSL parsing (new dependency)handlebarsortera- For template engine (optional, could build custom)Success Criteria
Use Cases
Related Work
.claude/tasks/todo/2_batch_script_mode.md