一键导入
monolith-project-overview
Use for quick onboarding to this Monolith Go codebase, understanding startup flow, directory layout, and where to implement changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use for quick onboarding to this Monolith Go codebase, understanding startup flow, directory layout, and where to implement changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when generating or extending the built-in admin dashboard, admin-only middleware, and pprof debug endpoints.
Use when implementing login/signup/logout, access control, and cookie-backed session logic in this Monolith app.
Use when an agent needs authoritative make/go command usage in this repository, including test, run, guides, deploy, server setup, and generator invocations.
Use when building HTTP controllers and templates, including REST action scaffolding, view rendering patterns, and route wiring.
Use when working on persistence setup, migrations, and service integrations (like email) that depend on app config and models.
Use when adding app features via the built-in generator (model/controller/resource/authentication/job/admin), including expected file mutations and post-generation validation.
| name | monolith-project-overview |
| description | Use for quick onboarding to this Monolith Go codebase, understanding startup flow, directory layout, and where to implement changes. |
main.go to controllers.main.goapp/ (controllers, models, views, routes, middleware, jobs, services, session, config)db/db.gows/generator/generator.gostatic/server_management/README.md and guides/*.htmlconfig.InitConfig() loads env defaults.session.InitSession() initializes cookie store.db.InitDB() opens DB + automigrates models.jobs.InitJobQueue() starts worker queue.views.InitTemplates(...) parses templates.ws.InitPubSub() starts WebSocket hub.server_management.RunServer(...) starts HTTP server.make run (start app)make test (full tests)make generator help (list generator capabilities)make guides (serve built-in guides)app/controllers/app/middleware/app/models/app/jobs/app/services/app/routes/routes.goapp/views/**/*.html.tmplstatic/{css,js,img}