Add pre-ship-gate skill#1343
Open
Sharrmavishal wants to merge 3 commits into
Open
Conversation
Activates a disciplined builder + strategic-vetting operating mode with hard gates: permission discipline, production pre-flight, scratch-test before prod, milestone gate, verify-don't-infer, and a block + reframe protocol. Includes code-change discipline, deploy discipline, production incident protocol, and a catalog of silent failure modes to scan before deploying. From https://github.com/Sharrmavishal/operating-kit (MIT) Co-authored-by: Cursor <cursoragent@cursor.com>
The original submission was a behavioral operating mode, which doesn't fit the skills paradigm (task-oriented, invoked for a specific need). pre-ship-gate is a concrete task skill: it runs a structured gate immediately before any production deploy, scans for the five silent failure modes (migrations, feature gates, build caches, release pointers, staged rollouts), and delivers a go/no-go with findings. Files: - SKILL.md — gate protocol and verdict format - checklist.md — B/O/B/M/M pre-flight checklist (supporting asset) Source: https://github.com/Sharrmavishal/operating-kit (MIT) Co-authored-by: Cursor <cursoragent@cursor.com>
Avoids any ambiguity about file access — everything needed to run the gate is now in a single self-contained file, consistent with how mcp-builder and other single-file skills are structured. Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A structured pre-ship safety gate that runs immediately before any production deployment.
When to use: right before merging to main or triggering a production deploy.
What it does:
Runs two things in sequence:
Pre-flight checklist (Backup / Ownership / Blast-radius / Mechanism-tested / Memory) — the five questions that separate "we think it will work" from "we confirmed it will work"
Silent failure mode scan — checks for the five failure modes that pass every local test and surface only in production:
Output: a
GO / NO-GOverdict with specific findings for each item. If it is a no-go, the finding includes the exact issue and the fix needed before shipping.File:
skills/pre-ship-gate/SKILL.md— self-contained gate protocol, pre-flight checklist, silent failure scan, and verdict format.Source: operating-kit — MIT licensed. Each gate in the checklist came from a real production failure.
Made with Cursor