https://github.com/ansari-project/ansari-skill
Islamic Knowledge Agent Skill — answers questions about Islam using authentic sources. Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, and Gemini CLI.
https://github.com/ansari-project/ansari-skill
agent-skills ai-agent claude codex copilot cursor gemini hadith islamic quran skill
Last synced: 3 months ago
JSON representation
Islamic Knowledge Agent Skill — answers questions about Islam using authentic sources. Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, and Gemini CLI.
- Host: GitHub
- URL: https://github.com/ansari-project/ansari-skill
- Owner: ansari-project
- License: mit
- Created: 2026-02-01T13:25:00.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-03T23:07:14.000Z (4 months ago)
- Last Synced: 2026-02-06T15:55:25.126Z (4 months ago)
- Topics: agent-skills, ai-agent, claude, codex, copilot, cursor, gemini, hadith, islamic, quran, skill
- Size: 91.8 KB
- Stars: 9
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Ansari — Islamic Knowledge Agent Skill
An [Agent Skill](https://agentskills.io) that answers questions about Islamic theology, history, ethics, and practice using authentic sources (Quran, Hadith, classical scholars).
Works with Claude (web, desktop, and Code), GitHub Copilot, OpenAI Codex CLI, Cursor, Gemini CLI, and any platform supporting the [Agent Skills specification](https://agentskills.io/specification).
## Installation
### Claude.ai / Claude Desktop
1. Download [`ansari-skill.zip`](https://github.com/ansari-project/ansari-skill/releases/latest/download/ansari-skill.zip) from the latest release
2. Open **Settings > Customize > Skills**
3. Upload the zip file
4. Toggle the skill on
### Claude Code
```bash
# Project-level
cp -r ansari/ .claude/skills/ansari/
# Or user-level (available in all projects)
cp -r ansari/ ~/.claude/skills/ansari/
```
### VS Code / GitHub Copilot
```bash
# Project-level (recommended)
mkdir -p .github/skills
cp -r ansari/ .github/skills/ansari/
# Or user-level
mkdir -p ~/.copilot/skills
cp -r ansari/ ~/.copilot/skills/ansari/
```
### OpenAI Codex CLI
```bash
# Project-level
mkdir -p .codex/skills
cp -r ansari/ .codex/skills/ansari/
# Or user-level
mkdir -p ~/.codex/skills
cp -r ansari/ ~/.codex/skills/ansari/
```
Restart Codex after installing. See [Codex Skills docs](https://developers.openai.com/codex/skills/).
### Cursor
```bash
mkdir -p .cursor/skills
cp -r ansari/ .cursor/skills/ansari/
```
### Gemini CLI
```bash
mkdir -p ~/.gemini/skills
cp -r ansari/ ~/.gemini/skills/ansari/
```
Enable skills in Gemini CLI: run `gemini`, type `/settings`, search for "Skills", toggle to `true`.
### OpenClaw
```bash
# Install from ClawHub registry
clawhub install ansari
# Or manual installation (user-level)
cp -r ansari/ ~/.openclaw/skills/ansari/
# Or project-level
cp -r ansari/ skills/ansari/
```
### Via OpenSkills (universal installer)
```bash
npx openskills install ansari-project/ansari-skill
npx openskills sync
```
### Any Agent Skills-compatible platform
Copy the `ansari/` directory into your platform's skills directory. The skill follows the open [Agent Skills specification](https://agentskills.io/specification).
## Upgrading
**Claude.ai / Claude Desktop:** Remove the old skill in **Settings > Customize > Skills**, then upload the new `ansari-skill.zip`.
**All other platforms:** Download the latest [`ansari-skill.zip`](https://github.com/ansari-project/ansari-skill/releases/latest/download/ansari-skill.zip), extract it, and replace your existing `ansari/` directory.
## What It Does
When you ask an Islamic question, the skill instructs the AI agent to call the Ansari API — a service that provides answers grounded in the Quran, authentic Hadith collections, and classical Islamic scholarship.
The API requires no authentication and no API key.
## Examples
- "What are the five pillars of Islam?"
- "What does the Quran say about charity?"
- "Explain the concept of Tawheed"
- "What are the conditions for valid prayer?"
## Links
- [Ansari Chat](https://ansari.chat)
- [Ansari API Docs](https://api.ansari.chat/docs)
- [Agent Skills Standard](https://agentskills.io)
## License
MIT