with one click
check-package-docs
查询第三方 Dart/Flutter 包的最新文档和 API 使用方法
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
查询第三方 Dart/Flutter 包的最新文档和 API 使用方法
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
PocketMind 本地无头浏览器爬取架构,适用于小红书/知乎抓取、后台爬虫服务、MethodChannel、Cookie 管理与 MetadataManager 协作场景。
Use when implementing or debugging PocketMind mobile chat flows, including note-scoped sessions, global multi-session switching, sync gating, stream send behavior, and dialog interaction regressions.
PocketMind 后端 notes->resource_records->context_catalog 一致性改造专项 Skill。当用户讨论 resource_records 真相层、context_catalog 索引层、Outbox/Projector、检索 fallback、SessionCommit 长事务、transcript 重复同步或相关回归测试时必须触发。
Use when you need to understand or modify PocketMind note save to resource indexing flow, including outbox, MQ hint/DLQ compensation, projector consumption, and consistency boundaries.
PocketMind 移动端笔记同步架构专项 Skill。当涉及以下问题时必须触发:预览字段(previewTitle等)被同步覆盖、多端一致性与离线冲突问题、同步链路改造(Pull/Push)、UI层违规调用底层Provider、抓取/轮询等写入未进入同步队列、或维护同步守卫测试。
设计、重构和实现 PocketMind 项目中的整体上下文架构(Context Architecture),用于统一规划和落地 resources、user memories、agent memories、tenant skills、session、retrieval、ingestion、storage 与现有 Note/Chat/Asset 的边界。当用户要求为 PocketMind 新增长期记忆、重构 AI 上下文体系、借鉴 OpenViking 的上下文类型/层级/URI/存储/检索/会话思想,或需要分阶段实施 Context Service 时使用。
| name | check-package-docs |
| description | 查询第三方 Dart/Flutter 包的最新文档和 API 使用方法 |
| version | 1.0.0 |
当遇到第三方 Dart/Flutter 包的使用问题时,请按以下步骤操作:
识别问题包和版本
pubspec.yaml 中该包的版本号^3.0.0-0.0.dev)使用 context7 MCP 查询文档
[包名] [版本号] [关键词]migration guide - 查询迁移指南breaking changes - 查询破坏性变更api reference - 查询 API 参考example - 查询示例代码重点关注的文档内容
应用文档中的解决方案
dart run build_runner build --delete-conflicting-outputs 重新生成代码flutter analyze 验证修复问题:编译错误 "Missing concrete implementations"
查询:freezed 3.0 migration guide
解决:添加 abstract 或 sealed 关键字到类定义
问题:Provider 代码生成失败
查询:riverpod_annotation breaking changes
解决:更新注解用法和 Provider 定义
问题:Schema 生成失败
查询:isar_community migration
解决:更新 @collection 注解和字段定义
完成查询后,请提供: