From cd17b074dd75a9fc1524fa1b06814a80f30af3d2 Mon Sep 17 00:00:00 2001 From: rootiest Date: Sun, 31 May 2026 20:34:13 -0400 Subject: [PATCH] feat: ship-it Add a new skill (/ship-it) which essentially just executes the following: - /readme-sync-audit - /git-publish-workflow --- skills/ship-it/SKILL.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 skills/ship-it/SKILL.md diff --git a/skills/ship-it/SKILL.md b/skills/ship-it/SKILL.md new file mode 100644 index 0000000..0fe1f46 --- /dev/null +++ b/skills/ship-it/SKILL.md @@ -0,0 +1,18 @@ +Name: /ship-it +Description: Run a comprehensive pre-flight audit, sync the README, and publish the changes to a new PR. + +Instructions: +Execute the following two phases sequentially. Do not proceed to Phase 2 unless Phase 1 completes successfully. + +1. Phase 1: Documentation Sync & Code Audit + - Act as the `/readme-sync-audit` skill. + - Scan all file changes since the last README edit and update the README to ensure it accurately reflects the current state of the codebase. + - Audit all code files for any syntax errors, regressions, or issues. + - CRITICAL: If any code errors or breaking issues are discovered during the audit, HALT the workflow immediately and report them to the user. Do not proceed to publishing. + +2. Phase 2: Git Publish Workflow + - Act as the `/git-publish-workflow` skill. + - Create a new, descriptively named git branch. + - Stage and commit all pending changes (including the newly updated README from Phase 1). + - Push the branch to the remote repository. + - Generate a Pull Request (PR) from the new branch into 'main'.