diff --git a/recipes/wip/demos/colored/recipe.toml b/recipes/wip/demos/colored/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..ec395b0b716b0125b2ea09b1691dcf605f120ad3
--- /dev/null
+++ b/recipes/wip/demos/colored/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/colored-rs/colored"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_examples control custom_colors dynamic_colors most_simple nested_colors
+"""
diff --git a/recipes/wip/demos/console-rs/recipe.toml b/recipes/wip/demos/console-rs/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..020bc40f46b63dcff5ae9e2a5775bd0d0d6254ad
--- /dev/null
+++ b/recipes/wip/demos/console-rs/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/console-rs/console"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_examples colors colors256 cursor_at keyboard term
+"""
diff --git a/recipes/wip/demos/globe-rs/recipe.toml b/recipes/wip/demos/globe-rs/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..a9c83c5cf3347c299d63b489433a974c77943178
--- /dev/null
+++ b/recipes/wip/demos/globe-rs/recipe.toml
@@ -0,0 +1,9 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/adamsky/globe"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages globe-cli
+mv "${COOKBOOK_STAGE}/usr/bin/globe" "${COOKBOOK_STAGE}/usr/bin/globe-rs"
+"""
diff --git a/recipes/wip/players/spotify-player/recipe.toml b/recipes/wip/players/spotify-player/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..decb29a565495329143cf1ae5d8b161184ed7427
--- /dev/null
+++ b/recipes/wip/players/spotify-player/recipe.toml
@@ -0,0 +1,21 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/aome510/spotify-player"
+[build]
+template = "custom"
+dependencies = [
+    "openssl1",
+]
+script = """
+package=spotify_player
+"${COOKBOOK_CARGO}" build \
+            --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
+            --package "${package}" \
+            --release
+            --no-default-features
+            --rodio-backend
+        mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
+        cp -v \
+            "target/${TARGET}/release/${package}" \
+            "${COOKBOOK_STAGE}/usr/bin/${package}"
+"""
diff --git a/recipes/wip/terminal/agg/recipe.toml b/recipes/wip/terminal/agg/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..0cc12f4057314322c8b03d47d897b24d0c335cdb
--- /dev/null
+++ b/recipes/wip/terminal/agg/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/asciinema/agg"
+[build]
+template = "cargo"
diff --git a/recipes/wip/terminal/pastel/recipe.toml b/recipes/wip/terminal/pastel/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..2bf28ff08f5cd2fa02d212738cd9ac84a1bcbcf8
--- /dev/null
+++ b/recipes/wip/terminal/pastel/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/sharkdp/pastel"
+[build]
+template = "cargo"
diff --git a/recipes/wip/terminal/pls/recipe.toml b/recipes/wip/terminal/pls/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..db04dd5713036fecb3e2341e377cbe7cbcd83cee
--- /dev/null
+++ b/recipes/wip/terminal/pls/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/pls-rs/pls"
+[build]
+template = "cargo"
diff --git a/recipes/wip/terminal/so/recipe.toml b/recipes/wip/terminal/so/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..d32b099d5f22c36af8664dffa2a1e61b8dcaf281
--- /dev/null
+++ b/recipes/wip/terminal/so/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/samtay/so"
+[build]
+template = "custom"
+script = """
+cookbook_cargo --no-default-features --features termion-backend
+"""
diff --git a/recipes/wip/terminal/tere/recipe.toml b/recipes/wip/terminal/tere/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..e4ac6774ee3f26f9b6c4b83771c1445094f94c5d
--- /dev/null
+++ b/recipes/wip/terminal/tere/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/mgunyho/tere"
+[build]
+template = "cargo"
diff --git a/recipes/wip/text/mdcat/recipe.toml b/recipes/wip/text/mdcat/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..231a1730aedfa9edb0e2906d5a1d9d2c79b9a772
--- /dev/null
+++ b/recipes/wip/text/mdcat/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/swsnr/mdcat"
+[build]
+template = "custom"
+script = """
+cookbook_cargo --features=static
+"""
diff --git a/recipes/wip/text/zee/recipe.toml b/recipes/wip/text/zee/recipe.toml
new file mode 100644
index 0000000000000000000000000000000000000000..7cec4da92e2dec9214bbf99ef3e99f97d8bc4a00
--- /dev/null
+++ b/recipes/wip/text/zee/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/zee-editor/zee"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages zee
+"""