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

Notulensi

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

skills مجمعة
163
Stars
0
محدث
2026-04-18
Forks
0
التغطية المهنية
16 فئات مهنية · 100% مصنفة
مستكشف المستودعات

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

api-implementation
مطوّرو البرمجيات

Use to implement a REST or GraphQL API endpoint from a specification or description, including request validation, error handling, and accompanying tests. Activate for building a new API route, resolver, or handler end-to-end. Do NOT use for API design/contract creation, documentation generation, or frontend API consumption.

2026-04-18
background-job-queue-worker
مطوّرو البرمجيات

Use to implement background job processing with a queue, worker, retry with exponential backoff, dead letter queue, and monitoring. Activate when the request involves offloading work from the request cycle (emails, reports, data processing). Do NOT use for real-time event streaming, webhook handling, or scheduled cron jobs.

2026-04-18
boilerplate-generation
مطوّرو البرمجيات

Use to scaffold a new project from scratch — generating directory structure, configuration files, entry points, and a README skeleton. Activate when starting a new project, service, or package and needing a production-ready starting point. Do NOT use for adding features to existing projects, generating tests, or CI/CD configuration.

2026-04-18
caching-strategy-implementation
مطوّرو البرمجيات

Use to design and implement a caching layer for data that is expensive to compute or fetch. Activate for cache-aside, write-through, or write-behind patterns, TTL strategy, and cache invalidation logic. Do NOT use for database query optimization, CDN configuration, or HTTP response caching headers.

2026-04-18
ci-cd-pipeline-scripting
مطوّرو البرمجيات

Use to generate a CI/CD pipeline configuration for building, testing, and deploying an application. Activate for GitHub Actions, GitLab CI, CircleCI, or similar pipeline tools for any tech stack. Do NOT use for infrastructure provisioning, Dockerfile creation, or deployment strategy design.

2026-04-18
code-generation
مطوّرو البرمجيات

Use to generate production-ready code for a new feature, function, class, or module from a description. Activate for writing new code from scratch with error handling, inline documentation, and a self-review checklist. Do NOT use for refactoring existing code, code review, or test generation.

2026-04-18
code-migration
مطوّرو البرمجيات

Use to migrate existing code from one framework, language version, or technology stack to another. Activate for porting code with compatibility notes, breaking change identification, and maintaining test coverage through the migration. Do NOT use for refactoring within the same stack, dependency upgrades, or new feature development.

2026-04-18
code-review
محللو ضمان جودة البرمجيات والمختبرون

Use when a developer needs a thorough review of existing code before merging — covering bugs, security vulnerabilities, style violations, and improvement opportunities. Activate when the request involves reviewing a PR, function, or module for quality and correctness. Do NOT use for refactoring, generating new code, or writing tests.

2026-04-18
configuration-management
مطوّرو البرمجيات

Use to design and implement a configuration management system with environment separation, secrets handling, and startup validation. Activate when the request involves managing app config across dev/staging/production environments. Do NOT use for environment setup scripts, CI/CD configuration, or infrastructure secrets management.

2026-04-18
database-query-optimization
مديرو قواعد البيانات

Use when a developer has a slow or expensive database query and needs analysis, index recommendations, and a rewritten optimized version. Activate for query performance, EXPLAIN output interpretation, or index strategy for any relational or document database. Do NOT use for schema design from scratch, ORM configuration, or general database architecture.

2026-04-18
dependency-upgrade
مطوّرو البرمجيات

Use to upgrade one or more dependencies to newer versions, including breaking change analysis, step-by-step migration instructions, and a rollback plan. Activate for library upgrades, framework version bumps, or security patch updates. Do NOT use for adding new dependencies, removing unused packages, or full stack migrations.

2026-04-18
design-pattern-application
مطوّرو البرمجيات

Use when a developer has a design problem and needs help identifying and implementing the most appropriate design pattern. Activate for structuring code around a recurring architectural challenge, applying OOP or functional patterns, or improving extensibility. Do NOT use for refactoring without a pattern goal, API design, or database schema design.

2026-04-18
dockerfile-containerization
مطوّرو البرمجيات

Use to containerize an application with an optimized Dockerfile and docker-compose configuration. Activate for creating Docker images, multi-stage builds, or local development container setups. Do NOT use for Kubernetes manifests, CI/CD pipeline configuration, or cloud container service setup.

2026-04-18
environment-setup
مديرو الشبكات وأنظمة الحاسوب

Use to generate environment setup scripts, .env.example files, and README setup documentation for a project. Activate when onboarding a new developer or setting up a project for the first time on a new machine. Do NOT use for CI/CD pipeline configuration, Docker setup, or production infrastructure setup.

2026-04-18
error-handling-patterns
مطوّرو البرمجيات

Implement a comprehensive error handling strategy with typed errors, propagation, logging, and user-facing messages. Do NOT use for debugging existing errors, writing tests, or logging-only instrumentation.

2026-04-18
feature-flag-implementation
مطوّرو البرمجيات

Implement a feature flag system for toggles, gradual rollout, and targeting. Do NOT use for configuration management, A/B test analytics, or infrastructure feature flags.

2026-04-18
graphql-schema-generation
مصممو قواعد البيانات

Generate a GraphQL schema for a domain, including types, queries, mutations, subscriptions, directives, and resolvers. Do NOT use for REST API design, OpenAPI spec generation, or GraphQL client code generation.

2026-04-18
infrastructure-as-code
مطوّرو البرمجيات

Generate Infrastructure as Code templates using Terraform, Pulumi, or AWS CDK. Do NOT use for Dockerfile creation, CI/CD pipelines, or application-level configuration.

2026-04-18
interface-contract-implementation
مطوّرو البرمجيات

Implements all methods of a defined interface, abstract class, or contract with full type safety, error handling, and documentation. Do NOT use for designing interfaces from scratch, API contract design, or generating tests only.

2026-04-18
logging-instrumentation
مطوّرو البرمجيات

Adds structured logging to a module or service, including log levels, context fields, correlation IDs, and PII masking. Do NOT use for error handling design, metrics/tracing instrumentation, or log aggregation setup.

2026-04-18
monorepo-setup
مطوّرو البرمجيات

Use to configure a monorepo with workspace tooling, shared packages, build pipeline, and CI optimization. Activate for setting up Turborepo, Nx, Lerna, or similar monorepo tooling for a multi-package project. Do NOT use for single-package project setup, CI/CD pipeline scripting, or Docker configuration.

2026-04-18
openapi-spec-generation
مطوّرو البرمجيات

Use to generate an OpenAPI 3.x YAML specification for an API, either from existing code or from a description. Activate for creating API documentation, generating client SDKs, or defining an API contract. Do NOT use for GraphQL schema generation, API implementation, or Postman collection creation.

2026-04-18
pagination-implementation
مطوّرو البرمجيات

Use to implement pagination for an API endpoint or UI data list. Activate for cursor-based or offset pagination, total count, next/prev links, and performance considerations for large datasets. Do NOT use for infinite scroll UI implementation, search result ranking, or data filtering design.

2026-04-18
performance-optimization
مطوّرو البرمجيات

Use when a developer has identified a performance issue in existing code and needs bottleneck analysis, optimized implementation, and benchmarks. Activate for slow code, high CPU/memory usage, or latency problems in a specific module. Do NOT use for database query optimization (use database-query-optimization skill), caching design, or infrastructure scaling.

2026-04-18
rate-limiting
مطوّرو البرمجيات

Use to implement rate limiting middleware for API endpoints to prevent abuse and protect backend resources. Activate for configurable request limits, response headers, and bypass rules for trusted clients. Do NOT use for authentication, API gateway configuration, or DDoS protection at the infrastructure level.

2026-04-18
refactoring
مطوّرو البرمجيات

Use to improve existing code quality — readability, maintainability, or performance — without changing its observable behavior. Activate for cleaning up code, reducing complexity, or applying better patterns to working code. Do NOT use for adding new features, fixing bugs, or generating code from scratch.

2026-04-18
rest-to-graphql-migration
مطوّرو البرمجيات

Use to plan and implement a migration from a REST API to GraphQL, including schema design, resolver mapping, deprecation strategy, and client migration guide. Activate for transitioning an existing REST API to GraphQL. Do NOT use for designing a new GraphQL API from scratch, REST API design, or API versioning.

2026-04-18
sdk-library-integration
مطوّرو البرمجيات

Use to integrate a third-party SDK or library into their application with a proper abstraction layer, error handling, retry logic, and a mock for testing. Activate for adding a new external service integration. Do NOT use for building SDKs from scratch, API contract design, or webhook handling.

2026-04-18
senior-code-review
محللو ضمان جودة البرمجيات والمختبرون

Performs a comprehensive production-readiness evaluation. Covers error handling, security, performance, observability, testing, and documentation with severity-rated findings. DO NOT use for quick style reviews, refactoring, or generating code.

2026-04-18
tech-stack-guidelines
مطوّرو البرمجيات

Provides architectural guidelines, coding standards, folder structure, and best practices for 13 supported tech stacks. DO NOT use for generating actual code.

2026-04-18
webhook-handler
مطوّرو البرمجيات

Implements a production-ready webhook receiver with signature verification, idempotency, retries, and dead letter queue. DO NOT use for outgoing webhooks or general endpoints.

2026-04-18
api-timeout-debugging
مطوّرو البرمجيات

Diagnoses API timeouts, identifies slow components via tracing, and provides retry/timeout strategies. DO NOT use for network infrastructure, DB query optimization, or general profiling.

2026-04-18
async-await-error-tracing
مطوّرو البرمجيات

Debug async/await errors, unhandled promise rejections, and event loop blocking. Do not use for synchronous logic bugs or race conditions in concurrent systems.

2026-04-18
authentication-token-debugging
مطوّرو البرمجيات

Debugs authentication token errors (JWT validation, OAuth token issues, expiry, signature, refresh flows). Do NOT use for CORS, session auth, or authorization logic.

2026-04-18
build-failure-analysis
مطوّرو البرمجيات

Analyze build failures to identify root causes and provide fix instructions. Do not use for deployment failures or runtime errors.

2026-04-18
container-crash-analysis
مديرو الشبكات وأنظمة الحاسوب

Analyzes crashing, restarting, or OOMKilled Docker/Kubernetes containers. Fixes crash causes. Do NOT use for deployment failures, app bugs, or infrastructure.

2026-04-18
cors-error-resolution
مطوّرو البرمجيات

Resolves browser CORS errors by identifying missing headers and applying server-side fixes. Do NOT use for authentication errors, API gateway config, or network firewalls.

2026-04-18
data-corruption-investigation
مطوّرو البرمجيات

Investigates incorrect, inconsistent, or missing data to identify the corruption source and create a remediation plan. Do NOT use for data migration planning, schema design, or general database optimization.

2026-04-18
database-query-slow-analysis
مصممو قواعد البيانات

Interprets EXPLAIN/EXPLAIN ANALYZE output to diagnose slow queries and recommend indexes or rewrites. Do NOT use for schema design or ORM configuration.

2026-04-18
deadlock-analysis
مطوّرو البرمجيات

Analyze application hangs, thread deadlocks, and circular wait conditions. Do not use for race conditions or infinite loops.

2026-04-18
عرض أهم 40 من أصل 163 skills مجمعة في هذا المستودع.