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

litskills

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

skills مجمعة
10
Stars
0
محدث
2025-12-21
Forks
0
التغطية المهنية
3 فئات مهنية · 100% مصنفة
مستكشف المستودعات

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

coding-standards
مطوّرو البرمجيات

Universal coding standards for implementation, code quality, testing, and refactoring. Covers anti-patterns, type safety, debugging, Red-Green-Refactor development, test design, code duplication (Rule of Three), decision frameworks, and impact analysis. Use when implementing features, reviewing code quality, fixing bugs, or refactoring.

2025-12-21
frontend-data-flow-patterns
مطوّرو الويب

Enforce unidirectional flow: state → UI (selectors) → actions → updates. Prevent direct store access from components, use granular selectors, implement reselect for complex filtering/sorting/aggregation. Use when designing component data flow or optimizing re-renders.

2025-12-21
frontend-error-handling-standards
مطوّرو البرمجيات

Implement error handling: try-catch at boundaries, typed errors with instanceof checks, error state in store, error boundaries for components, exponential backoff retry with jitter, Sentry monitoring in production, user-friendly error messages. Use when implementing API calls, form submissions, or component error boundaries.

2025-12-21
frontend-state-management-patterns
مطوّرو البرمجيات

Implement state management: Zustand slices pattern, manual immutable updates with spread operators, middleware stack (devtools, subscribeWithSelector), Immer decision matrix (4+ spreads → use Immer), transient updates for 10+ updates/sec. Use when implementing stores or managing complex state.

2025-12-21
frontend-technical-spec
مطوّرو البرمجيات

Frontend technical design rules including environment variables, architecture design, data flow, Nx workspace conventions, and build/testing commands.

2025-12-21
frontend-type-safety-standards
مطوّرو البرمجيات

Enforce type safety: Zod runtime validation at boundaries, type guards for discriminated unions, avoid any/unknown, validate before asserting. Optimize Zod with .pick()/.partial() on hot paths. Use when implementing API integrations, form handling, or state management with strict typing.

2025-12-21
frontend-typescript-rules
مطوّرو الويب

React/TypeScript frontend development rules including type safety, component design, state management, and error handling.

2025-12-21
frontend-typescript-testing
محللو ضمان جودة البرمجيات والمختبرون

Frontend testing rules with Jest, React Testing Library, and MSW. Includes coverage requirements, test design principles, and quality criteria.

2025-12-21
langgraph-agent-architecture
مطوّرو البرمجيات

Build LangGraph agents: StateGraph with Annotation.Root, multi-tier orchestration (main/sub-agents), node patterns (pure/async/injectable), routers (intent/mode/error-aware/confidence), error-resilient nodes, streaming with async generators, batch processing, LLM fallbacks. Use when designing or implementing AI agents.

2025-12-21
langgraph-state-patterns
مطوّرو البرمجيات

Manage LangGraph state: Annotation.Root with custom reducers (concatenate arrays, keep latest, deduplicate by ID, merge objects, conditional logic). Prefer flat state, use discriminated unions for variants. Validate with Zod guards. Version state for migrations. Use when building LangGraph agents.

2025-12-21