Skip to main content
gestrich
ملف منشئ GitHub

gestrich

عرض على مستوى المستودعات لـ ٤٤ skills مجمعة عبر ٧ مستودعات GitHub.

skills مجمعة
٤٤
مستودعات
٧
محدث
٢٦ مايو ٢٠٢٦
خريطة المستودعات

أين توجد skills

أهم المستودعات حسب عدد skills المجمعة، مع حصتها من كتالوج هذا المنشئ وانتشارها المهني.

#01
AIDevTools
٢٠ skills · ٢١ مايو ٢٠٢٦
مطوّرو البرمجياتمحللو ضمان جودة البرمجيات والمختبرونالكتّاب والمؤلفونمتخصصو إدارة المشاريعموظفو الاستقبال والمعلومات
٥ فئات مهنية · ١٠٠٪؜ مصنفة
٤٥٪؜الحصة
#02
python-architecture
٧ skills · ٢٥ يناير ٢٠٢٦
مطوّرو البرمجياتمحللو ضمان جودة البرمجيات والمختبرون
٢ فئات مهنية · ١٠٠٪؜ مصنفة
١٦٪؜الحصة
#03
PRRadar
٤ skills · ١٤ مارس ٢٠٢٦
محللو ضمان جودة البرمجيات والمختبرونمتخصصو إدارة المشاريع
٢ فئات مهنية · ١٠٠٪؜ مصنفة
٩٫١٪؜الحصة
#04
xcode-sim-automation
٤ skills · ١٢ فبراير ٢٠٢٦
محللو ضمان جودة البرمجيات والمختبرون
١ فئات مهنية · ١٠٠٪؜ مصنفة
٩٫١٪؜الحصة
#05
ai-project-planning
٣ skills · ٢٦ مايو ٢٠٢٦
مطوّرو البرمجيات
١ فئات مهنية · ١٠٠٪؜ مصنفة
٦٫٨٪؜الحصة
#06
swift-app-architecture
٣ skills · ٢٩ مارس ٢٠٢٦
مطوّرو البرمجيات
١ فئات مهنية · ١٠٠٪؜ مصنفة
٦٫٨٪؜الحصة
#07
claude-tools-skills
٣ skills · ٢ مارس ٢٠٢٦
متخصصو إدارة المشاريعمحللو ضمان جودة البرمجيات والمختبرونمطوّرو البرمجيات
٣ فئات مهنية · ١٠٠٪؜ مصنفة
٦٫٨٪؜الحصة
مستكشف المستودعات

المستودعات و skills الممثلة

claude-chain
مطوّرو البرمجيات

Manages ClaudeChain automated PR chains. Use when working with claude-chain projects, listing open chain PRs, rebasing chain branches, triggering chain workflow runs, checking chain capacity, fetching workflow logs, creating new chains, or updating/editing an…

٢١ مايو ٢٠٢٦
ai-dev-tools-debug
محللو ضمان جودة البرمجيات والمختبرون

Debugging guide for AIDevTools (evals, plan runner, Mac app, PRRadar). Shows how to discover configured repositories, eval cases, artifact paths, plan storage, log files, and CLI commands for troubleshooting. Use this skill when: the user reports a bug, asks…

١٨ أبريل ٢٠٢٦
ai-provider
مطوّرو البرمجيات

Reference for where Claude and Codex provider data is stored on disk — session logs, raw output, thinking/reasoning availability, and format differences between the two providers. Use whenever investigating provider output, debugging missing thinking blocks,…

١٥ أبريل ٢٠٢٦
ai-dev-tools-ui-tests
محللو ضمان جودة البرمجيات والمختبرون

Running, writing, and extracting screenshots from UI tests and interactive tests for the AIDevTools Mac app. Use this skill when: running XCUITests, capturing app screenshots, adding new screenshot tests, extracting images from .xcresult bundles, or using the…

١٢ أبريل ٢٠٢٦
ai-dev-tools-composition-root
مطوّرو البرمجيات

Guidance for this project's composition root pattern — how SharedCompositionRoot centralises shared service wiring, how the Mac app and CLI targets each have their own root that wraps it, and how platform-specific additions (models, git client, credentials)…

١١ أبريل ٢٠٢٦
ai-dev-tools-configuration-architecture
مطوّرو البرمجيات

Guide for adding, modifying, or reviewing configuration in this Swift app. Use when adding credentials or API keys, creating a new config file, adding a ServicePath case, setting up a service that reads settings, wiring configuration through the Apps layer,…

١٠ أبريل ٢٠٢٦
ai-dev-tools-pr-radar-debug
مطوّرو البرمجيات

Debugging context for PRRadar. This content has moved — use the ai-dev-tools-debug skill instead, which now covers PRRadar debugging inline.

١٠ أبريل ٢٠٢٦
ai-dev-tools-code-quality
محللو ضمان جودة البرمجيات والمختبرون

Checks and fixes code quality issues in Swift: fallback values that hide failures, backwards-compatibility shims for unreleased code, raw String/[String:Any] types where typed models should exist, optional properties that should be non-optional, AI-changelog…

٧ أبريل ٢٠٢٦
عرض 8 من أصل ٢٠ skills مجمعة.
cli-architecture
مطوّرو البرمجيات

Structure CLI applications using command dispatcher pattern. Covers entry points, command routing, argument parsing, and explicit parameter flow. Use when building CLI tools or refactoring command structure.

٢٥ يناير ٢٠٢٦
creating-services
مطوّرو البرمجيات

Creates new Python service classes following Martin Fowler's Service Layer pattern with constructor-based dependency injection, proper layering (Core vs Composite), and static vs instance method conventions. Use when adding new services or refactoring…

٢٥ يناير ٢٠٢٦
identifying-layer-placement
مطوّرو البرمجيات

Determines the correct architectural layer (Entry Point/Service/Domain/Infrastructure) for code placement in Python applications using Service Layer pattern. Prevents layer violations and maintains separation of concerns. Use when adding new functionality,…

٢٥ يناير ٢٠٢٦
testing-services
محللو ضمان جودة البرمجيات والمختبرون

Writes unit tests for Python service classes using Arrange-Act-Assert pattern with proper mocking at boundaries. Tests behavior, not implementation. Mocks external systems only (API calls, file I/O, databases). Use when writing tests for services or fixing…

٢٥ يناير ٢٠٢٦
python-code-style
مطوّرو البرمجيات

Follow Python code organization conventions including method ordering, datetime handling, circular import avoidance, and type annotations. Use when organizing service classes, handling dates, or structuring modules.

٢٥ يناير ٢٠٢٦
dependency-injection
مطوّرو البرمجيات

Apply constructor-based dependency injection with explicit configuration flow. Covers required dependencies, fail-fast principles, and avoiding optional parameters with default factories. Use when designing service constructors or managing dependencies.

٢٥ يناير ٢٠٢٦
domain-modeling
مطوّرو البرمجيات

Design domain models following parse-once principle with type-safe APIs, factory methods, and Repository pattern. Use when creating domain models, parsing data structures, or organizing business logic in models.

٢٥ يناير ٢٠٢٦
عرض ٧ من أصل ٧ مستودعات
تم تحميل كل المستودعات