diff --git a/recipes/wip/demos/cubecl/recipe.toml b/recipes/wip/demos/cubecl/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..9aa8e268f06b05eaedb3585f660d0e83ab22cc9d
--- /dev/null
+++ b/recipes/wip/demos/cubecl/recipe.toml
@@ -0,0 +1,18 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/tracel-ai/cubecl"
+[build]
+template = "custom"
+script = """
+package=gelu
+"${COOKBOOK_CARGO}" build \
+            --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
+            --package "${package}" \
+            --release
+            --no-default-features
+            --wgpu
+        mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
+        cp -v \
+            "target/${TARGET}/release/${package}" \
+            "${COOKBOOK_STAGE}/usr/bin/${package}"
+"""
diff --git a/recipes/wip/sound/piano-rs/recipe.toml b/recipes/wip/sound/piano-rs/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..8eea5378c293f58970ebac7e4402d9d2d743a72c
--- /dev/null
+++ b/recipes/wip/sound/piano-rs/recipe.toml
@@ -0,0 +1,10 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/ritiek/piano-rs"
+[build]
+template = "custom"
+script = """
+mkdir -pv "${COOKBOOK_STAGE}"/usr/share/piano-rs
+cp -rv "${COOKBOOK_SOURCE}"/assets "${COOKBOOK_STAGE}"/usr/share/piano-rs
+cookbook_cargo
+"""