ring-cli 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ring/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """RiNG — Realtime Instance Notification Grid。
2
+
3
+ 看所有 active 的 agent CLI session 上台的場館(內建 Claude Code,可擴充)。
4
+ session 需要你回話時,它「響鈴」叫你。
5
+ """
6
+
7
+ from importlib.metadata import PackageNotFoundError, version
8
+
9
+ try:
10
+ __version__ = version("ring")
11
+ except PackageNotFoundError: # 直接從原始碼跑、尚未安裝
12
+ __version__ = "0.0.0+dev"
ring/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ """讓 `python -m ring` 等同於 `ring`。"""
2
+
3
+ from ring.cli import main
4
+
5
+ if __name__ == "__main__":
6
+ raise SystemExit(main())