diff --git a/README.md b/README.md
index bc263a1..387a38c 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,18 @@
+
+
+[](https://www.flatcar.org/)
+[](https://discord.gg/PMYjFUsJyq)
+[](https://app.element.io/#/room/#flatcar:matrix.org)
+[](https://kubernetes.slack.com/archives/C03GQ8B5XNJ)
+[](https://x.com/flatcar)
+[](https://hachyderm.io/@flatcar)
+[](https://bsky.app/profile/flatcar.org)
+[](https://www.bestpractices.dev/projects/10926)
+
+
+> **Note:** To file an issue for any Flatcar repository, please use the [central Flatcar issue tracker](https://github.com/flatcar/Flatcar/issues).
+
+
# Yardmaster
Yardmaster is a release management tool for Flatcar Container Linux. It automates release orchestration across multiple channels (Alpha, Beta, Stable, LTS) and provides commands to prepare, validate, and tag releases.
diff --git a/yardmaster/__init__.py b/yardmaster/__init__.py
index 690e643..e07c815 100644
--- a/yardmaster/__init__.py
+++ b/yardmaster/__init__.py
@@ -1,4 +1,8 @@
-__version__ = "0.1.0"
+"""Yardmaster - Flatcar Container Linux Release Management Tool"""
+
+import importlib.metadata
+
+__version__ = importlib.metadata.version(__package__)
__author__ = "Flatcar Team"
__license__ = "Apache-2.0"
diff --git a/yardmaster/__main__.py b/yardmaster/__main__.py
deleted file mode 100644
index 430911b..0000000
--- a/yardmaster/__main__.py
+++ /dev/null
@@ -1,4 +0,0 @@
-from yardmaster.cli import main
-
-if __name__ == "__main__":
- main()