Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

claudes

يحتوي claudes على 32 من skills المجمعة من abnegate، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
32
Stars
2
محدث
2026-05-14
Forks
0
التغطية المهنية
7 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

build
مطوّرو البرمجيات

Build the project (auto-detects build system)

2026-05-14
cleanup
مطوّرو البرمجيات

Find and remove dead code, unused imports, and technical debt

2026-05-14
commit-all
مطوّرو البرمجيات

Create git commits in logical groups for all current changes

2026-05-14
commit
مطوّرو البرمجيات

Create a git commit with conventional commit message

2026-05-14
continue
السكرتيرون والمساعدون الإداريون (باستثناء القانوني والطبي والتنفيذي)

Pick up unfinished work from where the last session left off

2026-05-14
debug
مطوّرو البرمجيات

Debug and fix failing tests or errors

2026-05-14
history
مطوّرو البرمجيات

Search Claude Code conversation history on disk for a given query. Use when the user asks to find something from a previous conversation, check what was discussed before, or recover lost context.

2026-05-14
hotfix
مطوّرو البرمجيات

Emergency hotfix workflow for production issues

2026-05-14
implement
مطوّرو البرمجيات

Full TDD implementation of a feature with review cycles

2026-05-14
improve
مطوّرو البرمجيات

Review and improve code — fix bugs, harden security, optimize performance, improve readability and maintainability

2026-05-14
install
مديرو الشبكات وأنظمة الحاسوب

Install the app on a device or emulator (auto-detects platform and build system)

2026-05-14
investigate
محللو ضمان جودة البرمجيات والمختبرون

Deep investigation of bugs, performance issues, or unexpected behavior

2026-05-14
issue
مطوّرو البرمجيات

Implement a Linear issue end-to-end

2026-05-14
orchestrate
مطوّرو البرمجيات

End-to-end feature workflow - branch, implement, improve, PR, wait, pr-fix

2026-05-14
pr-fix
مطوّرو البرمجيات

Fix failing CI checks on a pull request

2026-05-14
pr
مطوّرو البرمجيات

Commit pending changes, push, and create a pull request with proper description

2026-05-14
profile
علماء البيانات

Build a comprehensive developer profile from git activity and Claude Code session history. Covers commit patterns, velocity, streaks, time-of-day habits, repo focus, tool usage, AI spend, model preferences, and session themes. Use whenever the user asks about their stats, coding patterns, what they've been working on, their Claude usage, or anything related to their developer profile.

2026-05-14
readme
مطوّرو البرمجيات

Assess the codebase and update the README with any new or outdated information

2026-05-14
refactor
مطوّرو البرمجيات

Safe refactoring with comprehensive test coverage

2026-05-14
release
مطوّرو البرمجيات

Create a GitHub release with auto-generated changelog. Use this skill whenever the user wants to create a release, tag a release, publish a release, cut a release, or ship a version. Triggers on phrases like "release 1.2.3", "create a release", "tag a new version", "ship it", "cut a release", or any mention of creating GitHub releases.

2026-05-14
review
محللو ضمان جودة البرمجيات والمختبرون

Thorough code review of current branch against main

2026-05-14
run
مديرو الشبكات وأنظمة الحاسوب

Build, install, and run the app on a target device (auto-detects platform)

2026-05-14
consolidation
مطوّرو البرمجيات

Full parallel execution cycle for non-trivial implementation tasks. Use for multi-part implementation, refactors, batch operations, or tasks spanning multiple files.

2026-05-14
php-expert
مطوّرو البرمجيات

Production PHP 8.3+ house rules for naming, style, typed constants, Override attributes, PHP 8.4 gotchas, strict types, Composer constraints, exceptions, PHPUnit, and anti-patterns. Use when writing or reviewing PHP code.

2026-05-14
kotlin-expert
مطوّرو البرمجيات

House rules and load-bearing patterns for Kotlin 2.x / K2 / KMP. Covers K2 compiler migration (what breaks), Kotlin 2.x features (context parameters, explicit backing fields, multi-dollar interpolation, guard conditions, non-local break/continue, name-based destructuring), KMP (expect/actual, source sets, pitfalls), and house naming rules. **Does not** re-teach coroutines, scope functions, delegation, inline/reified, sealed types, value classes, contracts, type system, null safety, collections, operators, DSLs, testing, or Gradle — those are well-documented. Android UI patterns live in android-expert. Use when writing or reviewing any Kotlin 2.x code.

2026-04-12
docker-expert
مطوّرو البرمجيات

Swoole-specific Docker patterns and house rules. Covers PHP+Swoole multi-stage builds (pecl and source compile), layer ordering for composer cache, PHP ini and opcache tuning for long-running Swoole processes, PID 1 with tini, graceful shutdown, file-based healthchecks for worker containers, Compose healthcheck-gated depends_on (house pattern), watch mode, profiles, Swoole memory budgeting and fd limits, and Swoole-specific anti-patterns. Does NOT cover general Docker basics, BuildKit features, image optimization, networking, security hardening, logging, debugging, or CI/CD — those are well-covered in training data. Use when writing or reviewing Dockerfiles and Compose files for PHP/Swoole services.

2026-04-12
swoole-expert
مطوّرو البرمجيات

Deep reference for writing production Swoole PHP code. Covers the long-running process mental model (object lifetimes, what breaks vs php-fpm, per-request state via Coroutine::getContext), runtime hook flags (what's hookable year-to-year, what isn't), parent/child priority gotcha, Channel/WaitGroup/Barrier/defer patterns, server canonical skeleton (SWOOLE_BASE default since 5.0, dispatch modes, graceful reload rules), connection pooling (try/finally + defer, Channel-as-pool), the full pitfalls catalog (blocking in coroutines, shared connections, pcntl, Channel deadlocks, cooperative != concurrent-safe, exception isolation), production tuning tables, testing entry point with Co\run, Swoole 6.x version notes (removed coroutine clients, multi-threading, io_uring, Lock API changes), and build flags. Use when writing or reviewing Swoole code (swoole/swoole-src, NOT openswoole) on Swoole 5.x/6.x with PHP 8.2+.

2026-04-12
android-expert
مطوّرو البرمجيات

House rules and load-bearing patterns for production Android with Jetpack Compose + MVI. Covers the MviViewModel<State,Intent,Effect> contract pattern, DispatcherProvider, collectAsStateWithLifecycle, type-safe Navigation Compose (@Serializable routes) + Navigation3 forward path, Koin DI (not Hilt), strong skipping defaults, edge-to-edge mandate, Material 3 / Expressive + adaptive layouts, Room + DataStore, Turbine + MockK + Robolectric testing scaffold, Baseline Profiles, R8 full mode, composable parameter ordering, module layout, and anti-pattern catalog. **Does not** re-teach elementary Compose (recomposition, remember, LaunchedEffect basics), standard Kotlin/coroutine patterns, or basic Material 3 usage -- assume that baseline. Use when writing or reviewing any Android/Compose code.

2026-04-12
backend-development
مطوّرو البرمجيات

Backend API design, database architecture, microservices patterns, and test-driven development. Use for designing APIs, database schemas, or backend system architecture.

2026-04-09
database-design
مصممو قواعد البيانات

Database schema design, optimization, and migration patterns for PostgreSQL, MySQL, and NoSQL databases. Use for designing schemas, writing migrations, or optimizing queries.

2026-04-09
frontend-design
مطوّرو الويب

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.

2026-04-09
react-best-practices
مطوّرو البرمجيات

React development guidelines with hooks, component patterns, state management, and performance optimization.

2026-04-09