diff --git a/README.md b/README.md
index 02ea0bb..a2d99a4 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,10 @@
Collection of scripts (coats) that improve open-stack developer browsing experience
+## Current scripts
+
+### FoxReplace.json
+
FoxReplace.json is text replacements configuration for
which would add
some extra coloring on build logs, making them easier to read. We plan to
@@ -14,6 +18,14 @@ After you install Firefox extension you can either do an one-time import
of the configuration from
or configure it to re-download it when it changes.
+### openstack_gerrit_zuul_status.user.js
+
+**openstack_gerrit_zuul_status.user.js**: Provides the status of the current CI run on the OpenStack Gerrit in real time.
+
+## Ideas for future scripts
+
+- Link codesearch.openstack.org results directly to github.com
+
## Contributing
Before you raise a CR, please run "tox" to perform a sanity check.
diff --git a/coats/openstack_gerrit_zuul_status.user.js b/coats/openstack_gerrit_zuul_status.user.js
new file mode 100644
index 0000000..4d3b27e
--- /dev/null
+++ b/coats/openstack_gerrit_zuul_status.user.js
@@ -0,0 +1,136 @@
+// Copyright 2018 Michel Peterson
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+// ==UserScript==
+// @name Gerrit Zuul Status
+// @author Michel Peterson
+// @version 6
+// @grant none
+// @include /^https?://review\.openstack\.org/(#/c/)?\d*?/?(\d*)?/?$/
+// @require https://code.jquery.com/jquery-3.3.1.min.js
+// @require https://review.openstack.org/static/hideci.js
+// ==/UserScript==
+
+// Config
+
+const zuul_status_base = "https://zuul.openstack.org/";
+const zuul_status_url = zuul_status_base + "api/status/change/";
+
+// /Config
+
+// Script start
+
+$('style#gerrit_sitecss').append('.result_RUNNING { color: #1e9ced; }');
+
+var render = function(jobs) {
+ var location = $('table.test_result_table');
+
+ var table = '' +
+ '