Help us improve
Share bugs, ideas, or general feedback.
From aise-leadership
Commit Skill — aise-leadership version. Syncs context/ from aise-assistant, classifies changes, bumps version in both package.json and .claude-plugin/plugin.json (semver), then commits all modified files.
npx claudepluginhub kmtz3/aise-leadership --plugin aise-leadershipHow this skill is triggered — by the user, by Claude, or both
Slash command
/aise-leadership:commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. **Sync context from aise-assistant (always first):**
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Creates, reads, edits, and analyzes .docx files using docx-js for new documents, pandoc for text extraction, Python scripts for XML unpacking/validation/changes, and LibreOffice for conversions.
Share bugs, ideas, or general feedback.
Sync context from aise-assistant (always first):
Run bash scripts/sync-context.sh to pull the latest context/ from aise-assistant/main.
If context changed, the sync script commits it automatically — note that commit and continue with the remaining changes.
Run git status and git diff --stat to understand what else changed.
Stage the relevant changed files. Prefer staging specific files over git add -A — avoid accidentally bundling unrelated changes.
Version bump (mandatory when on main or staging):
git branch --show-current.main or staging, read the current version from package.json.package.json and .claude-plugin/plugin.json (must match).Update CHANGELOG.md (if one exists at the repo root):
## [version] — YYYY-MM-DD### Added, ### Changed, ### Fixed, or ### RemovedCHANGELOG.mdWrite a concise commit message focusing on the main change. Include the version bump if applicable.
Commit and push to the current branch.
Show the commit hash and summary.