ies-flox
FloxHub publication `bmorphism/ies` - a focused development environment
Best use case
ies-flox is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
FloxHub publication `bmorphism/ies` - a focused development environment
Teams using ies-flox should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/ies-flox/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How ies-flox Compares
| Feature / Agent | ies-flox | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
FloxHub publication `bmorphism/ies` - a focused development environment
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# ies-flox
FloxHub publication `bmorphism/ies` - a focused development environment for Clojure, Julia, Python, and multimedia with Gay.jl/Gay.bb deterministic coloring integration.
## Interleaving with effective-topos
| Property | ies-flox | effective-topos |
|----------|----------|-----------------|
| Focus | Data/scripting | Systems/languages |
| Packages | 10 | 62 |
| Man pages | 59 | 606 |
| Key tools | babashka, julia, ffmpeg | guile, ghc, cargo |
| Coloring | Gay.bb (Clojure) | Gay.jl (Julia) |
### Connection Points
- **Clojure ↔ Guile**: Both Lisps, both support reader macros
- **Julia ↔ OCaml**: Both ML-influenced, both have ADTs
- **ffmpeg ↔ imagemagick**: Media processing pipelines
- **tailscale ↔ guile-goblins**: Distributed networking
---
## Quick Activation
```bash
# Activate
flox activate -d ~/ies
# Environment includes
echo $GAY_SEED # 69
echo $GAY_PORT # 42069
echo $GAY_INTERVAL # 30
```
## Installed Packages (10)
| Package | Version | Man Pages | Description |
|---------|---------|-----------|-------------|
| babashka | 1.12.208 | bb(1) | Clojure scripting |
| clojure | 1.12.2.1565 | clj(1), clojure(1) | JVM Lisp |
| jdk | 21.0.8 | java(1) + 45 tools | OpenJDK |
| julia-bin | 1.11.7 | julia(1) | Technical computing |
| ffmpeg | 7.1.1 | ffmpeg(1) + 10 tools | Media processing |
| python312 | 3.12.11 | python3(1) | Python interpreter |
| coreutils | 9.8 | 100+ commands | GNU utilities |
| tailscale | 1.88.4 | tailscale(1) | Mesh VPN |
| enchant2 | 2.6.9 | enchant(1) | Spell checking |
| pkg-config | 0.29.2 | pkg-config(1) | Build configuration |
---
## Babashka (Clojure Scripting)
```clojure
#!/usr/bin/env bb
;; Fast Clojure scripting without JVM startup
;; Includes: http, json, csv, yaml, sql, shell, fs
(require '[babashka.http-client :as http])
(require '[cheshire.core :as json])
;; HTTP request
(-> (http/get "https://api.github.com/users/bmorphism")
:body
(json/parse-string true)
:public_repos)
;; File operations
(require '[babashka.fs :as fs])
(fs/glob "." "**/*.clj")
;; Shell commands
(require '[babashka.process :as p])
(-> (p/shell "ls -la") :out slurp)
;; Tasks in bb.edn
{:tasks
{:build (shell "make")
:test (shell "make test")
:repl (babashka.nrepl.server/start-server! {:port 1667})}}
```
### Babashka + Gay Integration
```clojure
;; gay.bb - deterministic coloring for Clojure
(def gay-seed (parse-long (or (System/getenv "GAY_SEED") "69")))
(defn splitmix64 [state]
(let [z (unchecked-add state 0x9e3779b97f4a7c15)]
[(unchecked-multiply
(bit-xor z (unsigned-bit-shift-right z 30))
0xbf58476d1ce4e5b9)
z]))
(defn gay-color [index seed]
(let [[h _] (splitmix64 (+ seed index))
hue (mod (/ (bit-and h 0xFFFF) 65535.0) 1.0)]
{:hue hue
:hex (format "#%06X" (bit-and h 0xFFFFFF))}))
```
---
## Julia Integration
```julia
# julia --project=$GAY_MCP_PROJECT
using Gay
# Environment seed
const SEED = parse(Int, get(ENV, "GAY_SEED", "69"))
Gay.set_seed!(SEED)
# Color IES packages
ies_packages = [
"babashka", "clojure", "jdk", "julia-bin", "ffmpeg",
"python312", "coreutils", "tailscale", "enchant2", "pkg-config"
]
for (i, pkg) in enumerate(ies_packages)
color = Gay.color_at(i)
println("$pkg: $(color.hex)")
end
```
---
## FFmpeg Quick Reference
```bash
# Convert formats
ffmpeg -i input.mov -c:v libx264 output.mp4
# Extract audio
ffmpeg -i video.mp4 -vn -c:a aac audio.m4a
# Resize video
ffmpeg -i input.mp4 -vf scale=1280:720 output.mp4
# Create GIF
ffmpeg -i input.mp4 -vf "fps=10,scale=320:-1" output.gif
# Concatenate
ffmpeg -f concat -i list.txt -c copy output.mp4
# Screen capture (macOS)
ffmpeg -f avfoundation -i "1" -t 10 capture.mp4
# Stream to stdout
ffmpeg -i input.mp4 -f mpegts - | ...
```
---
## Clojure (JVM)
```bash
# Start REPL
clj
# With aliases
clj -A:dev:test
# Run script
clojure -M -m myapp.core
# Dependency tree
clj -Stree
# Execute function
clojure -X:deploy
# deps.edn structure
{:deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:aliases {:dev {:extra-paths ["dev"]}}}
```
---
## Python Integration
```python
#!/usr/bin/env python3
"""Gay.py - port of Gay.jl for Python"""
def splitmix64(state: int) -> tuple[int, int]:
z = (state + 0x9e3779b97f4a7c15) & 0xFFFFFFFFFFFFFFFF
z = ((z ^ (z >> 30)) * 0xBF58476D1CE4E5B9) & 0xFFFFFFFFFFFFFFFF
z = ((z ^ (z >> 27)) * 0x94D049BB133111EB) & 0xFFFFFFFFFFFFFFFF
return z ^ (z >> 31), state
def gay_color(index: int, seed: int = 69) -> str:
h, _ = splitmix64(seed + index)
return f"#{h & 0xFFFFFF:06X}"
# Color IES packages
packages = ["babashka", "clojure", "jdk", "julia-bin", "ffmpeg"]
for i, pkg in enumerate(packages, 1):
print(f"{pkg}: {gay_color(i)}")
```
---
## Services
```toml
# From manifest.toml
[services]
gaybb.command = "./gaybb_daemon.sh"
gaybb.shutdown.command = "pkill -f gaybb_daemon"
```
```bash
# Start Gay.bb daemon
flox services start
# Check status
flox services status
# Stop
flox services stop
```
---
## Tailscale Integration
```bash
# Connect to tailnet
tailscale up
# Check status
tailscale status
# SSH to peer
tailscale ssh hostname
# Serve locally
tailscale serve http://localhost:8080
# Funnel (public internet)
tailscale funnel https://localhost:443
```
### Tailscale + Gay.bb
```clojure
;; Use tailscale for Gay.bb peer discovery
(require '[babashka.process :as p])
(defn tailscale-peers []
(-> (p/shell {:out :string} "tailscale status --json")
:out
(json/parse-string true)
:Peer
vals
(->> (map :HostName))))
(defn broadcast-gay-seed! [seed]
(doseq [peer (tailscale-peers)]
(p/shell (format "tailscale ssh %s 'export GAY_SEED=%d'" peer seed))))
```
---
## Aliases
```bash
# From profile
alias gaybb="bb gay.bb"
alias gaymcp="julia --project=$GAY_MCP_PROJECT $GAY_MCP_PROJECT/bin/gay-mcp"
```
---
## Connection to effective-topos
The ies-flox environment is designed to interoperate with effective-topos:
```bash
# Activate both environments
flox activate -d ~/.topos # effective-topos (guile, ghc, cargo)
flox activate -d ~/ies # ies-flox (bb, julia, ffmpeg)
# Or compose them
cd ~/ies
flox edit # Add include:
# [include]
# environments = [{ remote = "bmorphism/effective-topos" }]
```
### Triadic Workflow
```
Trit 0 (Analysis): julia → analyze data
Trit 1 (Transform): bb → process with Clojure
Trit 2 (Output): ffmpeg → render media
```
```clojure
;; bb pipeline
(defn triadic-pipeline [input-file]
(let [;; Trit 0: Julia analysis
analysis (-> (p/shell {:out :string}
(format "julia -e 'using JSON; println(JSON.json(analyze(\"%s\")))'"
input-file))
:out
json/parse-string)
;; Trit 1: Clojure transform
transformed (transform-data analysis)
;; Trit 2: FFmpeg render
_ (p/shell (format "ffmpeg -i %s -vf 'eq=gamma=%f' output.mp4"
input-file
(:gamma transformed)))]
{:analysis analysis
:output "output.mp4"}))
```
---
## FloxHub Publication
- **Owner**: bmorphism
- **Name**: ies
- **URL**: https://hub.flox.dev/bmorphism/ies
- **Systems**: aarch64-darwin, x86_64-darwin, aarch64-linux, x86_64-linux
- **Man pages**: 59
- **Gay.jl seed**: 69
## Scientific Skill Interleaving
This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:
### Graph Theory
- **networkx** [○] via bicomodule
- Universal graph hub
### Bibliography References
- `general`: 734 citations in bib.duckdb
## Cat# Integration
This skill maps to **Cat# = Comod(P)** as a bicomodule in the equipment structure:
```
Trit: 0 (ERGODIC)
Home: Prof
Poly Op: ⊗
Kan Role: Adj
Color: #26D826
```
### GF(3) Naturality
The skill participates in triads satisfying:
```
(-1) + (0) + (+1) ≡ 0 (mod 3)
```
This ensures compositional coherence in the Cat# equipment structure.Related Skills
flox
Reproducible development environments powered by Nix.
flox-mcp
MCP server wrapper for flox CLI operations - environment management via JSON-RPC
jepsen-testing
Jepsen-style correctness testing for distributed systems under faults (partitions, crashes, clock skew) using concurrent operation histories and formal checkers (linearizability/serializability and Elle-style anomalies). Use when designing, implementing, or running Jepsen tests, or interpreting histories/violations.
Deterministic Color Generation via Metadata Hashing
**Status**: ✅ Production Ready
cyton-dongle
Connect and stream from OpenBCI Cyton/Daisy via USB dongle, including first-time radio channel pairing
asi-transient-agenda
Org-agenda-like transient views for ASI skill orchestration via nbb/squint + Emacs hydra
Topological Superintelligence (TSI)
Compositional AI framework using GF(3) triadic balance and category-theoretic foundations.
zx-calculus
Coecke's ZX-calculus for quantum circuit reasoning via string diagrams with Z-spiders (green) and X-spiders (red)
zulip-cogen
Zulip Cogen Skill 🐸⚡
zls-integration
zls-integration skill
zig
zig skill
zig-syrup-bci
Multimodal BCI pipeline in Zig: DSI-24 EEG, fNIRS mBLL, eye tracking IVT, LSL sync, EDF read/write, GF(3) conservation