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

neolith

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

skills مجمعة
6
Stars
6
محدث
2026-04-28
Forks
5
التغطية المهنية
2 فئات مهنية · 100% مصنفة
مستكشف المستودعات

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

unit-test
محللو ضمان جودة البرمجيات والمختبرون

Add unit tests for individual components. Use the GoogleTest (GTest) framework to define test cases and assertions. Troubleshooting test failures involves checking test logs, reproducing failures locally, and debugging with breakpoints or additional logging to identify root causes.

2026-04-28
function-naming
مطوّرو البرمجيات

Validates function naming when adding new functions, refactoring existing functions, or reviewing function signatures.

2026-04-16
lpc-coding
مطوّرو البرمجيات

Generate and refactor Neolith LPC code with correct driver semantics. Use when writing LPC functions, efun calls, simul_efun-aware code, inheritance calls, strict_types-safe code, inline LPC code (pre_text) in unit-tests, or when prompts mention ambiguity between local/simul/efun resolution. Prefer dot-call syntax receiver.method(args...) when explicit driver-efun intent is needed; dot-call lowers to efun::method(receiver, args...) and remains subject to efun type/arity validation.

2026-04-05
build-options
مطوّرو البرمجيات

Manage Neolith build-time options: add, change, or remove CMake options that control driver behavior and LPC visibility. Use when creating a new option, toggling an existing option default, renaming macros, tracing how an option surfaces to LPC code, or troubleshooting preprocessor define mismatches between cmake/options.cmake, lib/lpc/options.h.in, and the generated options.h.

2026-03-31
async-worker-pattern
مطوّرو البرمجيات

Implement async worker thread patterns with bounded task queues, admission control, and completion posting. Use when adding blocking I/O operations (DNS, file I/O, network calls) that must not block the main event loop. Covers worker thread design, queue management, completion callbacks, and main-loop integration for event-driven architectures.

2026-03-24
trace
مطوّرو البرمجيات

Add opt_trace() calls for debugging and profiling. Use -t option to enable specific trace tiers and levels.

2026-02-12