Help us improve
Share bugs, ideas, or general feedback.
From wipnote
Deploy and release wipnote — run quality gates, bump version, tag, push, and trigger GitHub release pipeline. Use when asked to deploy, release, publish, ship, or push a new version.
npx claudepluginhub shakestzd/wipnote --plugin wipnoteHow this skill is triggered — by the user, by Claude, or both
Slash command
/wipnote:deploy [VERSION][VERSION]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run the full deployment pipeline for wipnote.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Guides systematic root-cause debugging when tests fail, builds break, or unexpected errors occur. Provides a structured triage checklist to preserve evidence, localize, and fix issues instead of guessing.
Share bugs, ideas, or general feedback.
Run the full deployment pipeline for wipnote.
# Non-interactive (recommended for CI/automation)
./scripts/deploy-all.sh VERSION --no-confirm
# Interactive (with confirmations)
./scripts/deploy-all.sh VERSION
# Dry run (preview what would happen)
./scripts/deploy-all.sh VERSION --dry-run
go build ./..., go vet ./..., go test ./...plugin/.claude-plugin/plugin.jsonrelease: vX.Y.Z commit, vX.Y.Z git tagrelease-go.yml workflow on v* tagWhen the user asks to deploy or release:
Check for a version argument. If not provided, read the current version from
plugin/.claude-plugin/plugin.json and suggest the next patch/minor/major bump.
Run the deploy script:
./scripts/deploy-all.sh VERSION --no-confirm
If the script doesn't exist (user is not in the wipnote dev repo), guide them through manual steps:
# 1. Run quality gates
go build ./... && go vet ./... && go test ./...
# 2. Bump version in plugin.json
# 3. Commit, tag, push
git add plugin/.claude-plugin/plugin.json
git commit -m "release: vVERSION"
git tag vVERSION
git push origin main --tags
After deployment, check CI status:
gh run list --workflow=release-go.yml --limit 3
Verify the release:
gh release view vVERSION
# Build-only (quality gates, no release)
./scripts/deploy-all.sh --build-only
# Docs-only (commit + push, no tag/release)
./scripts/deploy-all.sh --docs-only
wipnote follows semantic versioning: