Claude Code for Infrastructure

Source: fluid.sh
259 points by aspectrr a day ago on hackernews | 172 comments

Built for where you already work

[~]

Sandbox Isolation

Clone VMs instantly. Test changes in isolation before touching production.

ls

Context-Aware

Fluid explores your host first - OS, packages, CLI tools - then adapts.

>>>

Full Audit Trail

Every command logged. Every change tracked. Review before production.

.yaml

Ansible Playbooks

Auto-generates playbooks from sandbox work. Reproducible infrastructure.

Usage

Running: cat /etc/os-release

Running: apt install -y apache2

Running: echo '...' > /var/www/html/index.html

Running: systemctl status apache2

Done! Here's what I accomplished:

Sandbox Created

- ID: SBX-demo1234

- IP: 192.168.122.50

Apache HTTP Server

- Installed and running

- Custom page at /var/www/html/index.html

- Verified working with curl

Ansible Playbook: httpd-setup

The playbook includes 4 tasks:

1. Update apt cache

2. Install Apache

3. Create custom index.html

4. Start and enable Apache service

You can run this playbook on any Ubuntu server to reproduce this setup.