I hereby claim:
- I am zergslaw on github.
- I am zergslaw (https://keybase.io/zergslaw) on keybase.
- I have a public key ASCht0ydL6qDTWziAjpsSOFzrfEsyBXT2zjj2sFbwnnyiAo
To claim this, I am signing this object:
| --- | |
| name: grill-me | |
| description: Builds a complete task brief before any code is written. Interrogates the user to fill goal, scope, constraints and acceptance criteria, then produces TASK_BRIEF.md from the embedded template. Use when the user gives a raw or vague task intention, says "grill me", asks for a task brief or spec, or makes an underspecified feature request like "add support for X". | |
| --- | |
| # Grill Me - build a task brief through interrogation | |
| ## Overview | |
| Turn a raw intention into a complete TASK_BRIEF.md through a short, structured | |
| interrogation. The brief transfers responsibility for understanding the task |
| --- | |
| name: safe-skill-install | |
| description: >- | |
| Use ALWAYS when installing a new agent skill — via `npx skills add`, cloning a repo, a zip, | |
| or a local folder. Before installing, the skill MUST be scanned with security scanners | |
| (NVIDIA SkillSpector, optionally Perplexity Bumblebee) and installed only per the scanner's | |
| verdict. Never install a skill that has not passed the scan. | |
| --- | |
| # Safe skill install |
| type Map struct { | |
| Vals [8][8]int | |
| Users []UserHui | |
| } | |
| type UserHui struct { | |
| Name string | |
| Coordinate int | |
| } |
| package app | |
| import ( | |
| "context" | |
| "github.com/google/uuid" | |
| "strings" | |
| ) | |
| func (a *Application) Registration(ctx context.Context, email, password string) error { | |
| passHash, err := a.password.Hashing(password) |
| 1) UnknownFields = []byte | |
| 2) SizeCache = int32 | |
| 3) type MessageState struct { | |
| pragma.NoUnkeyedLiterals | |
| pragma.DoNotCompare | |
| pragma.DoNotCopy | |
| atomicMessageInfo *MessageInfo | |
| } |
| func (svc *service) createProjectFrom(params project.CreateProjectParams, authUser *app.AuthUser) middleware.Responder { | |
| ctx, log, _ := fromRequest(params.HTTPRequest, authUser) | |
| id, err := svc.project.CreateProject(ctx, *authUser, app.DirID(params.Args.Dir), string(params.Args.Name)) | |
| switch { | |
| case err == nil: | |
| return project.NewCreateProjectOK().WithPayload(&project.CreateProjectOKBody{ID: models.ProjectID(id)}) | |
| case errors.Is(err, app.ErrAccessDenied): | |
| return errCreateProject(log, err, http.StatusNotAcceptable) | |
| case errors.Is(err, app.ErrNotFound): |
I hereby claim:
To claim this, I am signing this object:
| // Получение курсов | |
| func (api Api) GetCourses(ctx echo.Context) error { | |
| data, err := api.model.GetCourse() | |
| if err != nil { | |
| return ctx.JSON(view.Result(http.StatusInternalServerError, nil)) | |
| } | |
| return ctx.JSON(view.Result(http.StatusOK, data)) | |
| } |
| type ParamsGetCoursesByType struct { | |
| utils.Procedure | |
| Name string | |
| } | |
| // Получение курса по типу | |
| func (a *Api) GetCoursesByType(ctx echo.Context) error { | |
| var result = view.New() | |
| var err error |