Skip to main content
在 Manus 中运行任何 Skill
一键导入
$pwd:
serverpod
GitHub 创作者资料

serverpod

按仓库查看 3 个 GitHub 仓库中的 87 个已收集 skills,并展示近似职业覆盖。

已收集 skills
87
仓库
3
职业领域
1
更新
2026-05-29
职业覆盖
该创作者主要覆盖的职业大类。
仓库浏览

仓库与代表性 skills

#001
skills-registry
61 个 skills80更新于 2026-03-07
占该创作者 70%
riverpod-3-0-migration
软件开发工程师

Migrate Riverpod from 2.0 to 3.0; automatic retry, paused listeners, legacy providers import, Ref simplification, FamilyNotifier removal, ProviderException, updateShouldNotify. Use when the user asks about Riverpod 3 migration, upgrading to Riverpod 3, or breaking changes in 3.0.

2026-03-07
riverpod-auto-dispose
软件开发工程师

Enable automatic disposal of Riverpod providers when they have no listeners; keepAlive, onDispose, invalidate, ref.keepAlive. Use when preventing memory leaks, caching only while used, or cleaning up resources when a provider is no longer needed. Use this skill when the user asks about auto-dispose, keepAlive, or when to dispose Riverpod state.

2026-03-07
riverpod-cancel
软件开发工程师

Cancel or debounce Riverpod async requests with ref.onDispose; cancel when user leaves the page, debounce rapid refreshes. Use when the user asks about cancelling requests, debouncing, or cleaning up when a provider is disposed.

2026-03-07
riverpod-codegen-and-hooks
网页开发工程师

Use Riverpod code generation (@riverpod, riverpod_generator) and hooks (hooks_riverpod, HookConsumerWidget, flutter_hooks with Riverpod). Use when the user asks about @riverpod, code generation, riverpod_generator, when to use codegen, or using flutter_hooks with Riverpod (HookConsumerWidget, HookConsumer).

2026-03-07
riverpod-consumers
软件开发工程师

Use Riverpod Consumer, ConsumerWidget, and ConsumerStatefulWidget to read and watch providers in widgets; WidgetRef, builder ref parameter. Use when building widgets that need to access Riverpod providers, ref.watch or ref.read in the UI, or converting StatelessWidget to ConsumerWidget. Prefer this skill when the user asks how to use providers in Flutter widgets or why ConsumerWidget is required.

2026-03-07
riverpod-containers
软件开发工程师

Use ProviderScope in Flutter and ProviderContainer in Dart for Riverpod; where provider state is stored, overrides, observers, testing with ProviderContainer.test. Use when setting up Riverpod in Flutter or pure Dart, understanding where state lives, or writing tests with a fresh container. Use this skill when the user asks about ProviderScope, ProviderContainer, or where Riverpod stores state.

2026-03-07
riverpod-eager-initialization
软件开发工程师

Eagerly initialize Riverpod providers at app startup by watching them in a root Consumer; handle loading/error in the initializer, AsyncValue.requireValue. Use when a provider must be ready before the rest of the app is used. Use this skill when the user asks about eager initialization or preloading providers.

2026-03-07
riverpod-family
软件开发工程师

Use Riverpod family providers to pass parameters and cache per parameter; FutureProvider.family, NotifierProvider.family, autoDispose with family, overriding in tests. Use when fetching data by ID, pagination, or any provider that depends on a parameter. Use this skill when the user asks about family, provider parameters, or caching by ID.

2026-03-07
当前展示该仓库 Top 8 / 61 个已收集 skills。
#002
serverpod
19 个 skills3.2k361更新于 2026-05-29
占该创作者 22%
serverpod-webserver
软件开发工程师

Serverpod web server (Relic) — REST APIs, webhooks, middleware, static files, server-rendered HTML, SPAs, Flutter web. Use when adding HTTP routes, serving web pages or web apps, intercepting requests, or working with the Relic web server.

2026-05-29
serverpod-overview
软件开发工程师

Serverpod overview — what it is, project structure, how to work with. Always use at least once when working with projects that use Serverpod.

2026-05-22
serverpod-auth
软件开发工程师

Serverpod Authentication — Signing in users, verify if they are authenticated, assinging scopes (e.g., admin). Use when adding features that require the user to be signed in.

2026-05-21
serverpod-database
软件开发工程师数据库管理员

Serverpod ORM with PostgreSQL or SQLite — CRUD, filters, sorting, pagination, relations, transactions, raw SQL, client-side database. Use when querying the database or working with relations.

2026-05-12
serverpod-logging
软件开发工程师网络与计算机系统管理员

Serverpod logging — session.log, log levels, persistence, retention, console output. Use when adding logging or debugging server calls.

2026-05-12
serverpod-migrations
数据库架构师

Serverpod database migrations — when and how to create/apply/repair migrations. Use whenever database schema changes are involved.

2026-05-12
serverpod-streams
软件开发工程师

Real-time streaming in Serverpod — Stream parameters and return types, WebSocket lifecycle, error handling. Use when building real-time features, chat, live updates, or WebSocket streaming.

2026-05-12
serverpod-upgrading
软件开发工程师

Upgrade Serverpod — minor/patch updates, major upgrade to v3. Use when upgrading Serverpod versions or updating dependencies.

2026-05-12
当前展示该仓库 Top 8 / 19 个已收集 skills。
#003
relic
7 个 skills12314更新于 2026-02-26
占该创作者 8.0%
relic-app-setup
网页开发工程师

Bootstrap a Relic web server, configure RelicApp, start serving, and enable hot reload. Use when creating a new Relic project, setting up a server, or configuring the development workflow.

2026-02-26
relic-middleware
软件开发工程师

Create and apply middleware for auth, CORS, logging, and other cross-cutting concerns. Use context properties for type-safe request-scoped data. Use when adding middleware, request/response transformations, or passing data between middleware and handlers.

2026-02-26
relic-request-response
软件开发工程师

Handle HTTP requests and create responses with Body, headers, and status codes in Relic. Use when reading request data, parsing JSON, building API responses, working with headers, or streaming content.

2026-02-26
relic-routing
网页开发工程师

Define routes with path parameters, wildcards, tail segments, and typed params in Relic. Use when adding endpoints, handling dynamic URLs, setting up URL patterns, or forwarding requests.

2026-02-26
relic-shelf-migration
软件开发工程师

Migrate a Dart web server from Shelf to Relic. Side-by-side reference for every API change. Use when converting Shelf code to Relic, replacing shelf/shelf_router/shelf_web_socket imports, or upgrading an existing server.

2026-02-26
relic-static-files
软件开发工程师

Serve static files and directories with caching and cache busting in Relic. Use when serving assets, images, CSS, JS, favicons, or configuring HTTP cache control headers.

2026-02-26
relic-websockets
软件开发工程师

Handle WebSocket connections and hijack connections for SSE or custom protocols in Relic. Use when implementing real-time communication, WebSocket endpoints, or server-sent events.

2026-02-26
已展示 3 / 3 个仓库
已展示全部仓库