dedsi-native-coding
Installation
SKILL.md
DedsiNative 开发
Quick start
- 确认实体名、主键类型、路由资源名。
- 按层次顺序修改:Domain -> Infrastructure -> Operation -> HttpApi。
- 需要模板或路径细节时,打开
references/templates.md与references/architecture.md。
Project structure
- 仅在
content/src中增删改代码。 - 不要修改
content/frameworks。 - 需要项目结构或运行管线细节时,打开
references/architecture.md。
Workflow
- 创建领域实体与仓储接口。
- 添加 EF Core 实体配置与 DbContext 的 DbSet。
- 实现仓储。
- 编写 Operation(创建、更新、删除、查询、条件分页)。
- 添加 Minimal API 端点并在
DedsiNativeEndpoints中注册。 - 必要时补充数据库迁移或调整配置。