add-team-source
Sync interval in hours. Default 24.
When `--wait-for-checks` is set AND no PR matches HEAD, proceed anyway (legitimate for first-cut releases or local-only commits). Without this flag, no-PR-found is a hard error to avoid silent CI bypass on squash/rebase release flows.
> /plugin marketplace add thettwe/nyann > /plugin install nyann@nyann-plugins
How it fires
How this command gets triggered: by you, by Claude, or both.
/releaseContext preview
What this command does when you run it.
When `--wait-for-checks` is set AND no PR matches HEAD, proceed anyway (legitimate for first-cut releases or local-only commits). Without this flag, no-PR-found is a hard error to avoid silent CI bypass on squash/rebase release flows.
name: nyann:release
description: >
Cut a release: generate a CHANGELOG section from Conventional Commits,
make a release commit, and create an annotated tag. Defaults to
conventional-changelog strategy.
arguments:
- name: version
description: Semver for the release (e.g. `1.2.0` or `1.2.0-rc.1`). Required.
optional: false
- name: strategy
description: One of `conventional-changelog` (default) or `manual` (tag only). `changesets`/`release-please` soft-skip.
optional: true
- name: push
description: Push the tag (and release commit) to `origin` after creating.
optional: true
- name: dry-run
description: Render what would happen without mutating.
optional: true
- name: wait-for-checks
description: Block tag creation on green CI for HEAD's PR (resolved by exact HEAD SHA / `headRefOid`). Hard-fails on CI fail / timeout / unreachable gh / no-PR-found. Skipped silently on `--dry-run`.
optional: true
- name: allow-no-pr
description: When `--wait-for-checks` is set AND no PR matches HEAD, proceed anyway (legitimate for first-cut releases or local-only commits). Without this flag, no-PR-found is a hard error to avoid silent CI bypass on squash/rebase release flows.
optional: true**Plugin root:** This is a Claude Code plugin, NOT a CLI tool. Do NOT search via `which`, `npm list`, `pip list`, or `brew list`. This file is at `<plugin_root>/commands/`. All scripts: `<plugin_root>/bin/`. Read the matching `skills/*/SKILL.md` for the full flow.
Wraps `bin/release.sh`. Flow for `conventional-changelog`:
1. Find latest tag matching `tag_prefix` (default `v`). Walk commits since. 2. Group commits by Conventional Commits type. Breaking-changes (subject `!`) render first. 3. Prepend the block to CHANGELOG.md (creating the file with a header if missing). 4. Release commit: `chore(release): v<version>`. 5. Annotated tag `v<version>`. 6. Optional `--push` sends tag + commit to `origin`.
Profiles may declare an optional `release` block (strategy, changelog_path, tag_prefix) — the skill honors it when present.
`--wait-for-checks` is the safety net for "don't tag a broken build": it resolves the PR by exact HEAD SHA (`headRefOid`) and blocks on `bin/wait-for-pr-checks.sh` until CI passes. Output gains `ci_gate: { outcome, pr_number? }` on success so consumers can prove the gate ran. Because a pushed tag is marketplace-consumed, `--push` **auto-enables** this gate when origin is a GitHub remote and `gh` is authenticated — degrading gracefully (warn, not fail) when there's no PR or no authenticated gh; pass `--no-wait-for-checks` to opt out. Passing `--wait-for-checks` explicitly makes it strict: no PR matching HEAD is then a hard error — pass `--allow-no-pr` for first-cut or local-only releases.
See `skills/release/SKILL.md` for full flow, dry-run guidance, and breaking-change handling.
ငြမ်း is Burmese for scaffolding. Nyann is the Claude Code plugin that picks expert git defaults for your stack — branching, working hooks (Husky / pre-commit.com / lefthook), commits, releases, CI, docs — then keeps the repo on those rails through every PR
Repo: thettwe/nyann
Sync interval in hours. Default 24.
Path to an IacPlan JSON from a prior /nyann:plan run, to apply the exact previewed plan.
Optional profile name to apply. If provided, skip stack detection's recommendation step and load this profile via bin/load-profile.sh. Fall back to the skill's…
The branch slug (feature/bugfix/hotfix) or version string (release).
If passed, emit the probe results as JSON instead of the human table.
Branch to use as the merge target. Defaults to the profile's primary base branch (auto-resolved through `origin/HEAD`, `main`, or `master`).