diff --git a/README.rst b/README.rst
index cd5b781634ff15988dde05e25119cb370dd1fe5b..aa5757bd69cab1f2eb288783f79b4fd7b982331c 100644
--- a/README.rst
+++ b/README.rst
@@ -1,8 +1,10 @@
-Ansible pre-commit hook
-#######################
+Ansible pre-commit hooks
+########################
 
-Ansible `pre-commit <http://pre-commit.com/>`_ hook. The hook runs
-:code:`ansible --syntax-check` against playbooks declared.
+Ansible `pre-commit <http://pre-commit.com/>`_ hooks.
+
+- ansible-syntax-check: The hook runs
+  :code:`ansible --syntax-check` against playbooks declared.
 
 Dependencies
 ------------
@@ -20,7 +22,7 @@ Add the following to your :code:`.pre-commit-config.yaml`:
     - repo: https://www.shore.co.il/git/ansible-pre-commit/
       sha: v0.3.1
       hooks:
-      - id: ansible-pre-commit
+      - id: ansible-syntax-check
         # In case you want to specify other playbook files:
         files: playbook.yml
 
diff --git a/ansible-pre-commit b/ansible-syntax-check
similarity index 100%
rename from ansible-pre-commit
rename to ansible-syntax-check
diff --git a/hooks.yaml b/hooks.yaml
index de91568e9d776058c41c1e8e15749554a80c0153..3e7e89cb99a1b7e40c4a351ee487ee4c5d46fcee 100644
--- a/hooks.yaml
+++ b/hooks.yaml
@@ -3,5 +3,5 @@
   name: Check Ansible playbooks
   description: Check Ansible playbooks for syntax errors.
   language: script
-  entry: ansible-pre-commit
+  entry: ansible-syntax-check
   files: playbook.yml