Automate like the future depends on it.
Replace brittle shell scripts with AI-powered, retry-aware workflows. Built in Rust for speed and reliability.
Automate Git commits with AI-generated messages (no more "fix typo" commits!):
cchain run ./cchain_git_commit.json # Using a pre-built workflow to commit changes with AI
JSON Workflow (cchain_git_commit.json
):
[
{
"command": "git",
"arguments": ["add", "--all"],
"retry": 3
},
{
"command": "git",
"arguments": [
"commit", "-m",
"llm_generate('Summarize these changes in 1 line', 'git diff --staged')"
],
"failure_handling_options": {
"exit_on_failure": true,
"remedy_command_line": { "command": "git", "arguments": ["reset"] }
}
},
{
"command": "git",
"arguments": ["push"],
"retry": 2
}
]
Problem | cchain Solution |
---|---|
"Bash scripts break at 3 AM" | β Declarative JSON workflows with built-in retries |
"Commit messages take forever" | β AI-generated inputs via LLMs |
"Why does CI/CD fail locally?!" | β Identical behavior across local/CI environments |
"Makefiles are so 1980" | β Simple syntax with concurrency (beta) |
"Dependency hell" | β Single binaryβzero runtime dependencies |
- Retry failed steps (up to
N
times, or use-1
to retry indefinitely until succeeded) - Pass outputs between commands via environment variables
- Fix failures automatically: Roll back with
remedy_command_line
"arguments": ["llm_generate('Summarize this error', 'cat crash.log')"]
- Integrate LLMs (OpenAI, local models via Ollama, etc.)
- Generate commit messages, error summaries, test data on the fly
- Works on Linux/macOS/Windows out of the box
- No more
if [[ "$OSTYPE" == "linux-gnu"* ]]; then...
- Built in Rustβstarts faster than your shellβs
&&
chain - Uses 10x less memory than Python/Ruby scripts
One-line install (requires Rust):
cargo install cchain
Pre-built binaries (coming soon! Star the repo for updates!)
cchain new deploy --prompt "Create a workflow to pull docker image from xxx, then run it in the background"
AI generates a starter cchain_deploy.json
!
cchain run ./cchain_deploy.json
cchain add ./cchain_deploy.json # Bookmark it as workflow #0
cchain run 0 # Re-run anytime
cchain run deploy # Or, use keyword to run it
cchain run "deploy some other fancy stuff" # Or, use multiple keywords
You may also want to share your chain, or find chains created by someone else. I hosted a GitHub repository for this purpose:
git clone https://github.com/AspadaX/cchain-chains
This respository can be directly addded to your local bookmark:
cchain add https://github.com/AspadaX/cchain-chains
It is much welcomed to PR new chains to this repository!
{
"command": "echo",
"arguments": ["Building $APP_VERSION"],
"environment_variables_override": {
"APP_VERSION": "llm_generate('Generate a semantic version')"
},
"stdout_stored_to": "<<build_id>>" # Pass to next command!
}
[
{
"command": "xh download http://example.com/large-asset.zip",
"concurrency_group": 1
},
{
"command": "xh download http://example.com/large-asset.zip",
"concurrency_group": 1
},
{
"command": "xh download http://example.com/large-asset.zip",
"concurrency_group": 1
}
] # Download 3 files in parallel
You may find examples in the ./examples
directory of this repo. Also, you may use the following command to generate a template chain file:
cchain new your_file_name
cchain |
Bash | Just | Python | |
---|---|---|---|---|
Retry Logic | β Built-in | β Manual | β Manual | β Manual |
AI Integration | β Native | β None | β None | β Add-ons |
Cross-Platform | β Single Bin | β (Fragile) | β | β (If setup) |
Learning Curve | Low (JSON) | High | Medium | High |
[
{ "command": "cargo test", "retry": 2 },
{ "command": "llm_generate('Write release notes', 'git log') > CHANGELOG.md" },
{ "command": "docker build -t myapp ." }
]
cchain new setup --prompt "Clone repo, install deps, start services"
{
"command": "llm_generate('Fix this error', './failing_script.sh 2>&1')",
"stdout_stored_to": "<<fix_suggestion>>"
}
Guides
We welcome PRs!
MIT Β© 2024 Xinyu Bao "Do whatever you wantβjust donβt make CI pipelines cry."