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

juncture

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

skills مجمعة
4
Stars
23
محدث
2026-05-24
Forks
3
التغطية المهنية
1 فئات مهنية · 100% مصنفة
مستكشف المستودعات

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

systematic-debugging
مطوّرو البرمجيات

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes

2026-05-24
rust-concurrency
مطوّرو البرمجيات

Production-grade Rust concurrency: threads, atomics, async/await, lock-free data structures, memory ordering, ABA problem, executor design, NUMA, work-stealing, deadlock prevention. Use when: building high-concurrency systems, implementing lock-free algorithms, debugging race conditions, optimizing async runtimes, handling synchronization primitives, choosing channel types (mpsc/crossbeam/flume/tokio), working with DashMap/ArcSwap/parking_lot, or asking about thread patterns (scoped threads, ThreadLocal, park/unpark, affinity, priority).

2026-05-18
rust-guidelines
مطوّرو البرمجيات

ALWAYS invoke this skill BEFORE writing or modifying ANY Rust code (.rs files) even for simple Hello World programs. Enforces Microsoft-style Rust development discipline, zero-tolerance quality standards (zero errors, zero warnings), and requires consulting the appropriate guideline files before any coding activity. This skill is MANDATORY for all Rust development.

2026-05-18
rust-hex-arch
مطوّرو البرمجيات

Implement hexagonal (ports and adapters) architecture in Rust with clean separation between business logic and external dependencies. Use when: (1) User explicitly asks for `hexagonal architecture`, `ports and adapters`, or `clean architecture` in Rust, (2) Building testable services requiring clear boundaries between domain and infrastructure, (3) Multi-team projects (3+ developers) where coordination needs clear contracts, (4) Projects with expected lifetime 12+ months, (5) Domain-driven design with bounded contexts requiring isolation, (6) Applications where requirements change frequently and adapters need swapping.

2026-05-18