Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

elixir_rpc_load_balancer

elixir_rpc_load_balancer 收录了来自 MikaAK 的 17 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
17
Stars
3
更新
2026-05-04
Forks
0
职业覆盖
4 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

rpc-load-balancer-elixir-rpc-calls-load-balancer
软件开发工程师

Use when working with rpc_load_balancer for TODO

2026-05-04
modify-api-wrapper
软件开发工程师

API wrapper patterns for the CheddarFlow project. TRIGGER when: writing or modifying API wrapper apps (apps with _api suffix), making HTTP requests to external services, working with SharedUtils.HTTP, Tesla middleware, or Finch pools. Also trigger when creating response structs with new!/1 constructors. DO NOT TRIGGER when: working with internal Elixir code that doesn't make external HTTP calls.

2026-03-18
modify-auth
软件开发工程师

Authentication and authorization patterns for the CheddarFlow project. TRIGGER when: writing or modifying authentication, authorization, sessions, Auth0 integration, user access control, entitlements, or any plug/middleware that checks user identity or permissions. Also trigger when working with SessionCache, JWKS, or Ueberauth. DO NOT TRIGGER when: working with code that doesn't involve auth or user identity.

2026-03-18
modify-background-jobs
软件开发工程师

Oban background job patterns for the CheddarFlow project. TRIGGER when: writing or modifying Oban workers, background jobs, cron schedules, job queue configuration, or any code that enqueues or processes Oban jobs. Also trigger when working with Schemas.JobsRepo for job-related queries. DO NOT TRIGGER when: working with code that doesn't involve background job processing.

2026-03-18
modify-caching
软件开发工程师

Caching patterns for the CheddarFlow project. TRIGGER when: writing or modifying caching code involving Redis, ETS, elixir_cache, Cachex, or any of the _cache apps. Also trigger when working with RedisLock, Cache.Redis, Cache.ETS, or cache sandbox testing. DO NOT TRIGGER when: working with code that doesn't involve caching layers.

2026-03-18
modify-dependencies
软件开发工程师

Umbrella dependency management patterns for the CheddarFlow project. TRIGGER when: adding dependencies, creating new apps, modifying mix.exs files, working with CFX.MixHelpers, or changing the mix_helpers.exs file. Also trigger when adding tags like :root, :web, :http to app configurations. DO NOT TRIGGER when: working with code that doesn't involve dependency or project configuration.

2026-03-18
modify-distributed-cluster
软件开发工程师

Distributed cluster patterns for the CheddarFlow project. TRIGGER when: writing or modifying code involving cross-node communication, CFXRpc, libcluster, Phoenix.PubSub broadcasting, distributed Erlang, or node routing. Also trigger when working with SharedUtils.Cluster, CFXPubSub, or any code that needs to handle dev/test vs prod cluster differences. DO NOT TRIGGER when: working with single-node code that doesn't involve distribution.

2026-03-18
modify-ecto-schemas
数据库架构师

Ecto schema, migration, and database patterns for the CheddarFlow project. TRIGGER when: writing or modifying Ecto schemas, changesets, migrations, database queries, context modules, or any code in the schemas app. Also trigger when creating new database tables, adding indexes, working with EctoShorts, QueryBuilder, TimescaleDB, or FactoryEx factories. DO NOT TRIGGER when: working with code that doesn't touch the database layer.

2026-03-18
modify-elixir-code
软件开发工程师

Elixir code patterns and conventions for the CheddarFlow project. TRIGGER when: writing or modifying ANY Elixir code in this project, including modules, functions, GenServers, supervisors, or any .ex/.exs file. This skill should ALWAYS be read first before any other skill when working with Elixir code. DO NOT TRIGGER when: only modifying non-Elixir files like Terraform, Ansible, Docker, or documentation.

2026-03-18
modify-event-processor
软件开发工程师

GenStage pipeline patterns for the CheddarFlow project. TRIGGER when: writing or modifying GenStage pipelines, event processors, trade ingestion code, or any code in options_events_processor or dark_pool_events_processor apps. Also trigger when working with PipelineSupervisor, Producer/Consumer stages, or SSE ingestion. DO NOT TRIGGER when: working with code unrelated to event processing pipelines.

2026-03-18
modify-feature-flags
软件开发工程师

Feature flag patterns for the CheddarFlow project. TRIGGER when: writing or modifying feature flag code, FunWithFlags usage, CFXFeatureFlags calls, or conditional feature enablement. Also trigger when adding new flags to config or checking flag state. DO NOT TRIGGER when: working with code that doesn't involve feature flags.

2026-03-18
modify-feed-system
软件开发工程师

Feed system patterns for the CheddarFlow project. TRIGGER when: writing or modifying feed server code, feed adapters, SharedFeedUtils, FeedServer, FeedSupervisor, or any real-time data streaming components. Also trigger when working with ETS-backed feed state, feed routing via CFXRpc, or Absinthe subscription resolvers that read feed data. DO NOT TRIGGER when: working with code unrelated to real-time data feeds.

2026-03-18
modify-graphql
软件开发工程师

GraphQL and Absinthe patterns for the CheddarFlow project. TRIGGER when: writing or modifying GraphQL schemas, types, queries, mutations, subscriptions, resolvers, or Absinthe middleware in the cfx_web app. Also trigger when working with Dataloader, Absinthe.Subscription, or any file under schema/, resolvers/, or types/ directories. DO NOT TRIGGER when: working with non-GraphQL code.

2026-03-18
modify-infrastructure
网络与计算机系统管理员

Deployment and infrastructure patterns for the CheddarFlow project. TRIGGER when: working with deployment, infrastructure, OpenTofu/Terraform, Ansible, CI/CD workflows, release configuration, AWS resources, or deploy_ex. Also trigger when modifying GitHub Actions workflows, Dockerfiles, or cloud-init templates. DO NOT TRIGGER when: working with application-level Elixir code that doesn't touch infrastructure.

2026-03-18
modify-metrics
软件开发工程师

Telemetry and metrics patterns for the CheddarFlow project. TRIGGER when: writing or modifying telemetry events, metrics definitions, CFXMetrics modules, or monitoring-related code. Also trigger when adding :telemetry.execute or :telemetry.span calls, or working with Prometheus/Grafana metric exports. DO NOT TRIGGER when: working with code that doesn't involve observability or metrics.

2026-03-18
modify-phoenix-code
软件开发工程师

Phoenix framework patterns for the CheddarFlow project. TRIGGER when: writing or modifying Phoenix controllers, LiveView modules, templates, routes, plugs, components, layouts, or any code in the cfx_web app that touches the web layer. Also trigger when working with core_components.ex, router.ex, or endpoint.ex. DO NOT TRIGGER when: working with non-web Elixir code that doesn't involve Phoenix.

2026-03-18
modify-tests
软件质量保证分析师与测试员

Testing patterns for the CheddarFlow project. TRIGGER when: writing or modifying tests, test support modules, test configuration, FactoryEx factories, or test helper functions. Also trigger when setting up HTTP sandboxing, database sandbox, or Oban test helpers. DO NOT TRIGGER when: writing production code that doesn't involve test infrastructure.

2026-03-18