Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计未展示

databases数据库工具

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

593

周安装

24

GitHub Stars

公开资料未说明

下载量

186
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:databases(数据库工具)
来源仓库:https://github.com/duc01226/easyplatform
仓库路径:skills/databases
安装命令:
npx skills add duc01226/easyplatform --skill "databases"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add duc01226/easyplatform --skill "databases"

简介

duc01226-easyplatform-databases 辅助数据库表结构、SQL 编写和迁移脚本生成。

  • 适合分析 schema、排查查询问题或整理索引建议。
  • 使用 npx skills add duc01226/easyplatform --skill "databases" 安装。
  • 需明确数据库类型和连接环境,区分只读分析与写入变更。
  • 涉及删除或批量导入时应优先 dry-run 或事务保护,防止误操作。

SKILL.md

name
databases
version
2.0.0
description
Database technology selection, schema design, query optimization, and migration guidance for MongoDB, SQL Server, PostgreSQL, and Redis. Triggers on database schema, mongodb query, sql server, postgresql, redis cache, database migration, index optimization.
infer
true
allowed-tools
Read, Bash, Grep, Glob

Databases

Purpose

Guide database technology selection, schema design, query optimization, and migration patterns -- with EasyPlatform-specific context for service-to-database mapping.

When to Use

  • Choosing which database technology for a new feature or service
  • Designing a schema or data model for a new entity
  • Optimizing slow queries or adding indexes
  • Writing or reviewing database migrations
  • Troubleshooting connection or performance issues
  • Understanding EasyPlatform's database topology

When NOT to Use

  • Writing C# repository code -- use easyplatform-backend skill (repositories follow platform patterns)
  • Cross-service data access design -- use arch-cross-service-integration skill (must use message bus, never direct DB access)
  • General backend CQRS implementation -- use easyplatform-backend skill
  • Frontend data fetching -- use frontend-angular-api-service skill

Prerequisites

  • Understand which EasyPlatform service you are working in
  • Read docs/claude/architecture.md for service boundaries

EasyPlatform Database Topology

ServiceDatabaseTechnologyConnection
TextSnippetExample service dataMongoDBlocalhost:27017 (root/rootPassXXX)
TextSnippet (EF)Example service dataSQL Serverlocalhost,14330 (sa/123456Abc)
TextSnippet (PG)Example service dataPostgreSQLlocalhost:54320 (postgres/postgres)
CachingSession, rate limitingRedislocalhost:6379
MessagingEvent busRabbitMQlocalhost:15672 (guest/guest)

CRITICAL: Each service owns its database. Never access another service's database directly -- use the message bus.

Workflow

Step 1: Identify Service and Database

IF using MongoDB persistence module THEN MongoDB patterns apply. IF using EF Core with SQL Server THEN SQL Server / EF Core patterns apply. IF using EF Core with PostgreSQL THEN PostgreSQL / EF Core patterns apply. IF caching or session data THEN Redis patterns apply.

Step 2: Select Task

TaskGo To
New entity/schema designStep 3A
Query optimizationStep 3B
MigrationStep 3C
Index designStep 3D

Step 3A: Schema Design

  1. Define entity class following platform patterns (see CLAUDE.md Entity section)
  2. For MongoDB: design document structure, decide embed vs. reference
  3. For SQL Server/PostgreSQL: design tables with proper normalization, foreign keys
  4. For Redis: design key naming convention ({service}:{entity}:{id})
  5. Add navigation properties using [PlatformNavigationProperty] where needed

Step 3B: Query Optimization

  1. Identify the slow query (check logs or EXPLAIN ANALYZE / MongoDB .explain())
  2. Check if proper indexes exist for the query's filter and sort columns
  3. For MongoDB: check if aggregation pipeline can replace multiple queries
  4. For SQL Server/PostgreSQL: check if CTEs or window functions simplify logic
  5. Verify N+1 queries are prevented -- use loadRelatedEntities parameter in repository calls

Step 3C: Migration

  1. For EF Core (SQL Server/PostgreSQL):
   dotnet ef migrations add MigrationName --project [Service].Persistence
   dotnet ef database update
  1. For MongoDB (platform migration):

- Create PlatformMongoMigrationExecutor<ServiceDbContext> class - Name format: YYYYMMDD_Description - Use paged processing for large datasets

  1. For data seeding: use PlatformDataMigrationExecutor<DbContext>

Step 3D: Index Design

  1. MongoDB: Use compound indexes matching query patterns
   db.collection.createIndex({ companyId: 1, status: 1, createdDate: -1 })
  1. SQL Server/PostgreSQL: Index foreign keys and frequently filtered columns
   CREATE INDEX IX_Employee_CompanyId_Status ON Employees(CompanyId, Status) INCLUDE (Name);
  1. Redis: No traditional indexes -- design keys for direct lookup patterns

Step 4: Verification

  • Run the query/migration in a test environment
  • Verify performance improvement with explain plans
  • Ensure migration is idempotent and backward-compatible
  • Check that repository extensions use static expressions (see CLAUDE.md patterns)

Output Format

## Database: [Task Summary]

### Context
- Service: [Service name]
- Database: [MongoDB | SQL Server | PostgreSQL | Redis]
- Task: [schema | query | migration | index]

### Recommendation
[Specific technical recommendation]

### Implementation
[Code or SQL/MongoDB commands]

### Verification
[How to confirm correctness]

Detailed References

Load for database-specific deep dives:

TopicFile
MongoDB CRUDreferences/mongodb-crud.md
MongoDB aggregationreferences/mongodb-aggregation.md
MongoDB indexesreferences/mongodb-indexing.md
MongoDB Atlasreferences/mongodb-atlas.md
PostgreSQL queriesreferences/postgresql-queries.md
PostgreSQL CLIreferences/postgresql-psql-cli.md
PostgreSQL performancereferences/postgresql-performance.md
PostgreSQL adminreferences/postgresql-administration.md

Related Skills

  • easyplatform-backend -- for C# repository, entity, and migration execution patterns
  • database-optimization -- for advanced performance tuning and N+1 prevention
  • arch-cross-service-integration -- for cross-service data access via message bus

IMPORTANT Task Planning Notes (MUST FOLLOW)

  • Always plan and break work into many small todo tasks
  • Always add a final review todo task to verify work quality and identify fixes/enhancements

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.91%
按下载量换算54

windsurf

22.11%
按下载量换算41

OpenCode

17.67%
按下载量换算33

Codex

10.63%
按下载量换算20

Antigravity

7.77%
按下载量换算14

Gemini CLI

3.36%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add duc01226/easyplatform --skill "databases" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills