feat: Batch Script Mode for Automated Workflows
Maintainers usually reply within 1 day
@inureyes is already working on this.
Since Dec 16, 2025.
Assessment
This issue has not been assessed yet.
Description
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
- Create script module structure at
src/script/ - Implement YAML script parser (
src/script/yaml_parser.rs) - Design script data structures (
src/script/types.rs) - Implement script validator (
src/script/validator.rs)
Phase 2: Execution Engine
- Build core execution engine (
src/script/engine.rs) - Implement state management (
src/script/state.rs) - Add error handling and recovery (
src/script/error_handler.rs) - Create execution context manager (
src/script/context.rs)
Phase 3: Advanced Features
- Implement conditional execution (
src/script/conditions.rs) - Add loop support (
src/script/loops.rs) - Build template engine (
src/script/template.rs) - Implement built-in functions (
src/script/functions.rs)
Phase 4: Custom DSL Implementation
- Design DSL syntax and grammar
- Implement DSL lexer (
src/script/dsl/lexer.rs) - Build DSL parser (
src/script/dsl/parser.rs) - Create DSL to internal representation converter (
src/script/dsl/converter.rs)
Phase 5: Integration and CLI
- Add batch subcommand to CLI (
src/cli.rs) - Integrate with existing executor (
src/executor.rs) - Implement script output management
- Add interactive script debugger
Phase 6: Security and Performance
- Implement security controls (
src/script/security.rs) - Add performance optimizations
- Build script repository support
Phase 7: Testing and Documentation
- Write comprehensive unit tests
- Create integration tests
- Develop example scripts
- Write user 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 parsingpestornom- For DSL parsing (new dependency)handlebarsortera- 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
- Dominant language
- Rust
- Stars
- 65
- Forks
- 7
- Avg merge
- 1h 30m
- Merged PRs (30d)
- 25
Getting set up
We have not checked this project's setup files yet. Start from its README, and see our first-contribution guide for the general steps.
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from lablup/bssh
-
priority:medium status:backlog type:bug
Difficulty 5/5 Over a week Newbie friendliness 28/100
Maintainers usually reply within 1 day
-
priority:high status:in-progress type:enhancement
Difficulty 5/5 Over a week Newbie friendliness 25/100
Maintainers usually reply within 1 day
-
Add network-ping command for fast ICMP connectivity testingMay be free again @inureyes claimed this 285 days ago, and no pull request is open. Openpriority:low status:backlog type:enhancement
Maintainers usually reply within 1 day
-
feat: Implement real-time streaming output with interactive multi-node UIPossibly taken @inureyes claimed this 333 days ago. Openpriority:medium status:backlog type:enhancement
Maintainers usually reply within 1 day
-
feat: Advanced Batch Orchestration with Enterprise-grade Error HandlingMay be free again @inureyes claimed this 285 days ago, and no pull request is open. Openpriority:low status:backlog type:enhancement
Maintainers usually reply within 1 day
Similar issues
-
area:casework bug criticality:p3 triage:needs-implementation
Difficulty 2/5 1-3 hours Newbie friendliness 84/100
registrystack/registry-stack#1623 ·
Maintainers usually reply within 1 day
-
Difficulty 2/5 1-3 hours Newbie friendliness 72/100
DioxusLabs/anyrender#98 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 76/100
leptos-rs/leptos#4885 · 1 comment ·
Maintainers usually reply within 1 day
-
Difficulty 2/5 1-3 hours Newbie friendliness 82/100
Maintainers usually reply within 1 day
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
longbridge/gpui-kit#3276 ·
Maintainers usually reply within 1 day