Skills Plugins MCP Prompt Model 博客 我的中心
開発 #data #api #github #database

goframe-v2

GoFrame v2 development skill. Use only when the target Go project uses or is explicitly adopting GoFrame v2: the nearest go.mod requires github.com/gogf/gf/v2, existing Go files import github.com/gogf/gf/v2 or any github.com/gogf/gf/v2/... component package, or the user asks to scaffold, migrate, or build with GoFrame. Trigger for GoFrame-backed Go work such as APIs/controllers/services, middleware, routing/config, ORM/DAO/DO/entity/database operations, gf CLI/codegen, HTTP/gRPC services, and microservice conventions. Do not trigger for generic Go projects without GoFrame evidence, frontend-only work, shell scripts, or unrelated infrastructure tasks.

DeepseekModel キュレーション済みスキル 品質 優秀 · 78 v1.0.0

取得

https://deepseekmodel.com/api/download.php?id=gogf-skills-skills-goframe-v2-skill-md&format=skill
ダウンロード .skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能
.skill ファイルの system_prompt フィールドの実際の内容。
name goframe-v2 description GoFrame v2 development skill. Use only when the target Go project uses or is explicitly adopting GoFrame v2: the nearest go.mod requires github.com/gogf/gf/v2, existing Go files import github.com/gogf/gf/v2 or any github.com/gogf/gf/v2/... component package, or the user asks to scaffold, migrate, or build with GoFrame. Trigger for GoFrame-backed Go work such as APIs/controllers/services, middleware, routing/config, ORM/DAO/DO/entity/database operations, gf CLI/codegen, HTTP/gRPC services, and microservice conventions. Do not trigger for generic Go projects without GoFrame evidence, frontend-only work, shell scripts, or unrelated infrastructure tasks. license Apache-2.0 Critical Conventions Project Development Standards For complete projects (HTTP/microservices), install GoFrame CLI and use gf init to create project scaffolding. See Project Creation - init for details. Auto-generated code files (dao, do, entity) MUST NOT be manually created or modified per GoFrame conventions. Unless explicitly requested, do NOT use the logic/ directory for business logic. Implement business logic directly in the service/ directory. Reference complete project examples: HTTP service best practice: user-http-service gRPC service best practice: user-grpc-service Component Usage Standards Before creating new methods or variables, check if they already exist elsewhere and reuse existing implementations. Use the gerror component for all error handling to ensure complete stack traces for traceability. When exploring new components, prioritize GoFrame built-in components and reference best practice code from examples. Database Operations MUST use DO objects ( internal/model/do/ ), never g.Map or map[string]interface{} . DO struct fields are interface{} ; unset fields remain nil and are automatically ignored by the ORM: // Good - use DO object dao.Users.Ctx(ctx).Where(cols.Id, id).Data(do.User{Uid: uid}).Update() // Good - conditional fields, unset fields are nil and ignored data := do.User{} if password != "" { data.PasswordHash = hash } if isAdmin != nil { data.IsAdmin = *isAdmin } dao.Users.Ctx(ctx).Where(cols.Id, id).Data(data).Update() // Good - explicitly set a column to NULL using gdb.Raw dao.Instances.Ctx(ctx).Where(cols.Id, id).Data(do.Instance{IdleSince: gdb.Raw( "NULL" )}).Update() // Bad - never use g.Map for database operations dao.Users.Ctx(ctx).Data(g.Map{cols.Uid: uid}).Update() Code Style Standards Variable Declarations : When defining multiple variables, use a var block to group them for better alignment and readability: // Good - aligned and clean var ( authSvc *auth.Service bizCtxSvc *bizctx.Service k8sSvc *svcK8s.Service notebookSvc *notebook.Service middlewareSvc *middleware.Service ) // Avoid - scattered declarations authSvc := auth.New() bizCtxSvc := bizctx.New() k8sSvc := svcK8s.New() Apply this pattern when you have 3 or more related variable declarations in the same scope. Soft Delete & Time Maintenance GoFrame provides automatic soft delete and time maintenance features. When a table contains created_at , updated_at , or deleted_at fields, the ORM handles these automatically. Automatic Time Fields Field Auto Behavior created_at Auto-written on Insert/InsertAndGetId , never modified afterward updated_at Auto-written on Insert/Update/Save deleted_at Auto-written on Delete (soft delete), auto-filtered on queries Critical Rules 1. NEVER manually set time fields - GoFrame handles these automatically: // WRONG - redundant manual time setting dao.User.Ctx(ctx).Data(do.User{ Name: "john" , CreatedAt: gtime.Now(), // REDUNDANT! Framework handles this UpdatedAt: gtime.Now(), // REDUNDANT! Framework handles this }).Insert() // CORRECT - let framework handle time fields dao.User.Ctx(ctx).Data(do.User{ Name: "john" , }).Insert() 2. NEVER manually add WhereNull(cols.DeletedAt) - GoFrame auto-adds soft delete filter: // WRONG - redundant soft delete condition dao.User.Ctx(ctx). Where(do.User{Status: 1 }). WhereNull(cols.DeletedAt). // REDUNDANT! Framework auto-adds this Scan(&list) // CORRECT - framework auto-adds deleted_at IS NULL dao.User.Ctx(ctx). Where(do.User{Status: 1 }). Scan(&list) 3. Use Delete() for soft delete - Framework converts to UPDATE SET deleted_at = NOW() : // CORRECT - use Delete(), framework handles soft delete dao.User.Ctx(ctx).Where(do.User{Id: id}).Delete() // Actual SQL: UPDATE `sys_user` SET `deleted_at`=NOW() WHERE `id`=? // WRONG - manual Update with deleted_at dao.User.Ctx(ctx). Where(do.User{Id: id}). Data(do.User{DeletedAt: gtime.Now()}). // REDUNDANT! Update() Field Type Support The deleted_at field supports multiple types: DateTime/Timestamp : Default, stores deletion time Integer : Stores Unix timestamp (seconds) Boolean : Stores 0/1 for deleted state Configuration (Optional) Time field names can be customized in config.yaml : database: default: createdAt: "created_at" # Custom field name updatedAt: "updated_at" deletedAt: "deleted_at" timeMaintainDisabled: false # Set true to disable this feature GoFrame Documentation Complete GoFrame development resources covering component design, usage, best practices, and considerations: GoFrame Documentation GoFrame Code Examples Rich practical code examples covering HTTP services, gRPC services, and various project types: GoFrame Examples
このスキルを起動するキーワード。クリックでコピーできます。

このスキルにはトリガーワードがありません。

ダウンロードした .skill に含まれるフィールド。
フィールド 説明
formatフォーマット識別子(skill/v1)
skill_idスキル固有 ID
nameスキル名
versionバージョン
description説明
categoryカテゴリ(配列)
trigger_wordsトリガーワード
tagsタグ
sourceソース
source_urlソース URL(本ページ)
exported_atエクスポート日時(ダウンロード毎)
system_promptシステムプロンプト本文
model_configモデル設定:provider / model / temperature / max_tokens / top_p
examplesサンプル
install_guide各プラットフォームの導入説明(Coze / Dify / Claude / カスタム)
同じスキルを各プラットフォーム形式で出力できます。
.skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能 ダウンロード
.skillpro 拡張形式。scripts / tools / dependencies / hooks を含む ダウンロード
.json 純粋な JSON 出力。system_prompt とモデル設定のみ ダウンロード
Coze frontmatter 付き Markdown。Coze へのインポート用 ダウンロード
Dify Dify DSL。アプリ作成後にそのままインポート ダウンロード

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。