From 394439600c8a79f526fcbf045103a409ae6e3855 Mon Sep 17 00:00:00 2001 From: Cody Date: Fri, 17 Apr 2026 20:10:31 -0400 Subject: [PATCH 1/2] feat: add imessage-plugin project page dkdc-io/imessage-plugin v0.1.1 shipped to crates.io as dkdc-io-imessage. Page mirrors existing project layout (hero + README include). --- content/imessage-plugin.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/imessage-plugin.md diff --git a/content/imessage-plugin.md b/content/imessage-plugin.md new file mode 100644 index 0000000..8488418 --- /dev/null +++ b/content/imessage-plugin.md @@ -0,0 +1,9 @@ ++++ +title = "iMessage plugin" +[extra] +hero = true +subtitle = "iMessage MCP plugin for any LLM CLI." +github = "dkdc-io/imessage-plugin" ++++ + +{{ include(path="https://raw.githubusercontent.com/dkdc-io/imessage-plugin/main/README.md") }} From def4358e1c820c3e7328f485443c6ec8c6e2ae46 Mon Sep 17 00:00:00 2001 From: Cody Date: Fri, 17 Apr 2026 20:20:27 -0400 Subject: [PATCH 2/2] feat: wire imessage-plugin into home page + navbar Add imessage-plugin to config.extra.projects so it shows up in the projects dropdown and home-page grid alongside Bookmarks, MotherDuck CLI, and Zorto. Peer of the ready projects, not incubating. --- config.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/config.toml b/config.toml index 2837afd..a7f3265 100644 --- a/config.toml +++ b/config.toml @@ -32,6 +32,7 @@ menu_items = [ projects = [ { name = "Bookmarks", url = "/bookmarks", github = "dkdc-io/bookmarks", description = "Bookmarks in your filesystem." }, + { name = "iMessage Plugin", url = "/imessage-plugin", github = "dkdc-io/imessage-plugin", description = "iMessage MCP plugin for LLM CLIs." }, { name = "MotherDuck CLI", url = "/md-cli", github = "dkdc-io/md-cli", description = "CLI for the MotherDuck REST API." }, { name = "Zorto", url = "https://zorto.dev", github = "dkdc-io/zorto", description = "The AI-native static site generator (SSG) with executable code blocks." }, ]