用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/salmandev/arabic-skills-library --skill arabic-api-docs命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | arabic-api-docs |
| name_ar | توثيق API عربي |
| description | Generate Arabic API documentation with examples and endpoint details |
| description_ar | إنشاء توثيق API باللغة العربية مع الأمثلة وتفاصيل نقاط النهاية |
| category | developer |
| language | bilingual |
| dialect | msa |
| rtl | true |
| platform_claude | true |
| platform_gpt | true |
| platform_qwen | true |
| platform_jais | true |
| platform_falcon | true |
| platform_allam | true |
| compliance | [] |
| version | 1.0.0 |
| author | salman-shaikh |
| contributor_volunteer | true |
English: Generate comprehensive API documentation in Arabic with endpoint details, request/response examples, and authentication guides.
العربية: إنشاء توثيق API شامل باللغة العربية مع تفاصيل نقاط النهاية وأمثلة الطلب/الاستجابة وأدلة المصادقة.
English: Use this skill when you need to:
العربية: استخدم هذه المهارة عندما تحتاج إلى:
You are a technical writer specializing in API documentation. When documenting:
API Structure:
For Each Endpoint:
Examples:
أنت كاتب تقني متخصص في توثيق APIs. عند التوثيق:
١. هيكل API:
٢. لكل نقطة نهاية:
٣. الأمثلة:
# توثيق API | API Documentation
## المصادقة | Authentication
Include the API key in the request header:
تضمين مفتاح API في رأس الطلب:
Authorization: Bearer YOUR_API_KEY
---
## نقاط النهاية | Endpoints
### GET /users - جلب المستخدمين
**Description | الوصف**: Retrieve a list of all users.
جلب قائمة بجميع المستخدمين.
**Parameters | المعاملات**:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| page | integer | No | Page number |
| limit | integer | No | Items per page |
**Example Request | مثال الطلب**:
```bash
curl -X GET "https://api.example.com/users" \
-H "Authorization: Bearer YOUR_KEY"
Response | الاستجابة:
{
"status": "success",
"data": [
{
"id": 1,
"name": "أحمد محمد",
"email": "ahmed@example.com"
}
]
}
Description | الوصف: Create a new user. إنشاء مستخدم جديد.
Request Body | جسم الطلب:
{
"name": "اسم المستخدم",
"email": "البريد الإلكتروني",
"password": "كلمة المرور"
}
Response | الاستجابة:
{
"status": "success",
"message": "تم إنشاء المستخدم بنجاح",
"data": {
"id": 123,
"name": "اسم المستخدم"
}
}
| Code | Meaning | Arabic |
|---|---|---|
| 200 | Success | نجاح |
| 400 | Bad Request | طلب غير صالح |
| 401 | Unauthorized | غير مصرح |
| 404 | Not Found | غير موجود |
| 500 | Server Error | خطأ في الخادم |
---
## Trigger Keywords | الكلمات المفتاحية
### Arabic Keywords | الكلمات العربية
- "توثيق API"
- "API عربي"
- "توثيق برمجة"
- "دليل المطورين"
- "REST API"
### English Keywords | الكلمات الإنجليزية
- "arabic api docs"
- "api documentation arabic"
- "arabic developer docs"
- "rest api arabic"
- "arabic api reference"
---
## Changelog | سجل التغييرات
### v1.0.0
- Initial release