diff --git a/.changeset/patch-github-guard-difc-footer-notice.md b/.changeset/patch-github-guard-difc-footer-notice.md
new file mode 100644
index 0000000000..8b0cc9e2ee
--- /dev/null
+++ b/.changeset/patch-github-guard-difc-footer-notice.md
@@ -0,0 +1,5 @@
+---
+"gh-aw": patch
+---
+
+Add a footer tip notice when GitHub Guard filters DIFC items during workflow execution, including linked GitHub references and filter reasons.
diff --git a/actions/setup/js/gateway_difc_filtered.cjs b/actions/setup/js/gateway_difc_filtered.cjs
new file mode 100644
index 0000000000..a55f571376
--- /dev/null
+++ b/actions/setup/js/gateway_difc_filtered.cjs
@@ -0,0 +1,136 @@
+// @ts-check
+///
+
+/**
+ * Gateway DIFC Filtered Module
+ *
+ * This module handles reading MCP gateway logs and extracting DIFC_FILTERED events
+ * for display in AI-generated footers.
+ */
+
+const fs = require("fs");
+
+const GATEWAY_JSONL_PATH = "/tmp/gh-aw/mcp-logs/gateway.jsonl";
+const RPC_MESSAGES_PATH = "/tmp/gh-aw/mcp-logs/rpc-messages.jsonl";
+
+/**
+ * Parses JSONL content and extracts DIFC_FILTERED events
+ * @param {string} jsonlContent - The JSONL file content
+ * @returns {Array