flux-platform 1.0.1

A local-first, AI-native developer automation platform: build, test, package, and deploy from a single .flux file, and make your repository legible to AI agents.
# Flux examples

Small, self-contained projects showing Flux across ecosystems. From any example
directory:

```sh
flux validate     # check the .flux
flux build        # run the pipeline
flux test         # run the test step
```

| Example | Stack | Shows |
| ------- | ----- | ----- |
| [rust-app]rust-app     | Rust   | scoped `inputs`, `needs` |
| [node-app]node-app     | Node   | dependency step + test, per-step `timeout` |
| [python-app]python-app | Python | dependency step + test |
| [workspace-demo]workspace-demo | Rust ×2 | a `flux.workspace` with cross-project affected-detection |

`flux validate` works without any toolchain installed; `flux build`/`flux test`
run the real commands, so they need the relevant toolchain (cargo / node / python).