claude-adhkar

by nosseralaa7-rgbVerified

أذكار — Arabic-script adhkar in the Claude Code spinner, with a terminal font that renders them right

51
Stars
2
Forks
Shell
Language
8/24/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/nosseralaa7-rgb/claude-adhkar

Getting Started

Guides for using skills like claude-adhkar.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

claude-adhkar — أذكار

Turn Claude Code's spinner into dhikr, in real Arabic script.

claude-adhkar in action

While Claude works, instead of Vibing… you get a random dhikr each turn, and the tip line cycles through duaa. Hours of glancing at a spinner become hours of tasbeeh.

Quick start

git clone https://github.com/nosseralaa7-rgb/claude-adhkar.git
cd claude-adhkar
./install.sh

Restart Claude Code. Done.

If Arabic looks broken or gappy in your terminal (it probably does — here's why):

./install.sh --fonts

then restart your terminal and select Adhkar Mono in its font settings.

What you get

Spinner verbs — one of these shows while Claude works, changing every turn:

DhikrMeaning
سبحان اللهGlory be to Allah
الحمد للهAll praise is due to Allah
الله أكبرAllah is the Greatest
لا إله إلا اللهThere is no god but Allah
أستغفر اللهI seek Allah's forgiveness
لا حول ولا قوة إلا باللهThere is no power nor strength except through Allah
سبحان الله وبحمدهGlory and praise be to Allah — "two phrases light on the tongue, heavy on the scale" (Bukhari 6682)
بسم اللهIn the name of Allah
ما شاء اللهWhat Allah has willed
توكلت على اللهI place my trust in Allah
حسبي الله ونعم الوكيلAllah is sufficient for me, and He is the best disposer of affairs
سبحان الله العظيمGlory be to Allah, the Magnificent
الحمد لله رب العالمينAll praise is due to Allah, Lord of the worlds
لا إله إلا الله وحده لا شريك لهThere is no god but Allah alone, without partner

Tip line — cycles beneath the spinner during long work: tasbeeh, salawat on the Prophet ﷺ, istighfar, and duaa fit for the work itself — for ease (اللهم لا سهل إلا ما جعلته سهلا), Musa's duaa (رب اشرح لي صدري ويسر لي أمري — Quran 20:25-26), Yunus's duaa (Quran 21:87), refuge from anxiety, incapacity and laziness (Bukhari 6369), beneficial knowledge (رب زدني علماً — Quran 20:114), and more.

Prayer times (optional) — a next-prayer countdown in the Claude Code statusline, green → yellow under an hour → red under 15 minutes:

🕌 Maghrib 19:57 (in 43m)
./install.sh --prayer "Cairo,Egypt"       # city, country
./install.sh --prayer "Makkah,SA,4"       # optionally: calculation method (4 = Umm Al-Qura)

Times come from the free Aladhan API, fetched once a day and cached — zero latency on renders, works offline the rest of the day. If you already run a custom statusline, the installer won't touch it; statusline/prayer.cjs prints a single segment you can compose into your own script.

Want your own selection? Edit data/adhkar.json and re-run ./install.sh (regenerate the shaped edition with scripts/build_data.py if you edit the Arabic).

Why terminals butcher Arabic

Arabic needs three things a text renderer must do: lay text right-to-left (bidi), join letters into their contextual forms (shaping), and use a font that has the glyphs. Most terminals — Warp, iTerm2, VS Code's terminal — do none of them. They draw characters one cell at a time, left to right, in isolated form, using whatever fallback font the OS picks:

before and after

This repo fixes all three without needing the terminal to cooperate:

  1. Pre-shaped text. The shaped edition stores the adhkar as Unicode presentation forms (the already-joined letter variants, U+FE70–U+FEFF) arranged in visual order. A dumb left-to-right renderer draws them and correct, connected Arabic comes out. Shaping done at build time — scripts/build_data.py via arabic-reshaper + python-bidi.

  2. A terminal-grade Arabic font. Even pre-shaped text gets pulled apart when the OS falls back to a proportional font (Geeza Pro on macOS) and forces its glyphs into fixed-width cells. Kawkab Mono by Abdullah Arif was designed for exactly this — Arabic letterforms that fill and connect across monospace cells.

  3. A font patch. Kawkab Mono normally needs a shaping engine to select its joined glyphs — the thing terminals don't have. scripts/build_font.py runs every presentation-form codepoint through HarfBuzz to find the joined glyph Kawkab would have picked, then maps it directly in the font's character table. The result — Adhkar Mono (fonts/) — renders connected Arabic in any terminal, no shaping engine involved. 147 presentation forms mapped, lam-alef ligatures included.

(Renamed from Kawkab Mono because the OFL license reserves the original name for its author.)

Editions

EditionWhat it isUse when
shaped (default)Pre-shaped, visual orderWarp, iTerm2, VS Code — almost every terminal
logicalNormal Arabic textTerminal.app on macOS and other shaping-capable displays
translitSubhanAllah, Alhamdulillah, …Any terminal, zero font worries

All options

./install.sh                             # shaped Arabic, replaces default verbs, sets tips
./install.sh --edition translit          # transliteration instead
./install.sh --edition logical           # normal Arabic (shaping-capable terminals)
./install.sh --mode append               # mix adhkar with Claude's default verbs
./install.sh --no-tips                   # spinner verbs only, leave the tip line alone
./install.sh --fonts                     # also install Adhkar Mono
./install.sh --prayer "Cairo,Egypt"      # next-prayer countdown in the statusline
./install.sh --uninstall                 # remove everything (settings backup kept)

How it works

Claude Code natively supports custom spinner text in ~/.claude/settings.json — no plugin, no patching:

{
  "spinnerVerbs": { "mode": "replace", "verbs": ["سبحان الله", "..."] },
  "spinnerTipsOverride": { "excludeDefault": true, "tips": ["..."] }
}

install.sh merges exactly these two keys into your settings (backing up to settings.json.bak first) and touches nothing else.

One honest limitation: Claude Code samples one spinner verb per turn — it changes with every new message, but won't rotate mid-turn. The tip line does cycle while it works, which is why the duaa live in both places.

Rebuilding

pip install arabic-reshaper python-bidi fonttools uharfbuzz
python3 scripts/build_data.py                                  # regenerate shaped edition from logical
python3 scripts/build_font.py KawkabMono-Regular.ttf fonts/    # rebuild Adhkar Mono from a Kawkab release

Related

Licenses

  • Scripts and data: MIT
  • fonts/AdhkarMono-*.ttf: SIL OFL 1.1 — derived from Kawkab Mono © Abdullah Arif (Latin portions from Adobe Source Code Pro); renamed per the OFL's Reserved Font Name rule

اجعل شاشتك تذكر الله 🤲

Frequently Asked Questions

What is claude-adhkar?

claude-adhkar is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by nosseralaa7-rgb. أذكار — Arabic-script adhkar in the Claude Code spinner, with a terminal font that renders them right. It has 51 GitHub stars.

Is claude-adhkar safe to use?

Yes. claude-adhkar passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install claude-adhkar?

Clone the repository with "git clone https://github.com/nosseralaa7-rgb/claude-adhkar" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is claude-adhkar written in?

claude-adhkar is primarily written in Shell. It is open-source under nosseralaa7-rgb on GitHub, so you can review or fork the full source.

Are there alternatives to claude-adhkar?

Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-adhkar against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ui-ux-pro-max-skill

by nextlevelbuilder

12

An AI skill that provides design intelligence for building professional UI/UX across multiple platforms.

119,92012,870Python
CLI Toolsai-skillsantigravity
View details

happy

by slopus

Mobile and Web client for Codex and Claude Code, with realtime voice, encryption and fully featured

23,4501,980TypeScript
CLI Tools
View details

claudecodeui

by siteboon

Use Claude Code, OpenCode, Cursor CLI, and Codex on mobile and web with CloudCLI (aka Claude Code UI). CloudCLI is a free open source webui/GUI that helps you manage your Claude Code session and projects remotely.

13,3941,866TypeScript
CLI Tools
View details

CRS-自建Claude Code镜像,一站式开源中转服务,让 Claude、OpenAI、Gemini、Droid 订阅统一接入,支持拼车共享,更高效分摊成本,原生工具无缝使用。

12,5471,869JavaScript
CLI Tools
View details

ccstatusline

by sirmalloc

🚀 Beautiful highly customizable statusline for Claude Code CLI with powerline support, themes, and more.

12,508545TypeScript
CLI Tools
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details