ငြမ်း 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 after. Conversational by default; every destructive change is previewed, schema-validated, and reversible.
Use nyann when:
- You start new projects more than once a month.
- You maintain multiple repos and want consistent hygiene across all of them.
- You use Claude Code and want git + hooks + docs setup to be conversational.
- You lead a small team and want shared conventions via profiles.
Skip nyann when:
- You start maybe one project a year. The setup time to learn nyann outweighs what it saves.
- You have mature internal scaffolding you're happy with.
- You want a code generator (nyann does not scaffold application code; that's
create-next-app/cookiecutterterritory).
- Working hooks for 26 stacks, not just configs. nyann installs the right framework — Husky for JS/TS, pre-commit.com for Python, lefthook for Go/Rust, native
.git/hooksfor shell — with hooks that run on day one. No follow-uphusky installrequired. - Preview before every mutation. Every destructive path emits a JSON
ActionPlan, renders a unified diff for merges, and waits for confirmation. The plan is SHA-bound, so the bytes you approve are the bytes that land — no TOCTOU between preview and execute. - Reversible.
bootstrapandretrofitwrite aBootRecord(manifest + pre-state file copies) before mutating./nyann:undo-bootstrapconsumes it to restore your repo to its pre-setup state — refusing to clobber files you've edited since. - Schema-validated contracts between every script. All 53 cross-layer JSON shapes (
ActionPlan,DriftReport,StackDescriptor,BootRecord, …) are locked by JSON Schema. A field rename without a schema bump fails CI. 1318 bats tests cover the surface. - Team-shareable governance. Profiles are pure data — register a git URL and your team's branching, hooks, conventions, and doc routing sync across every repo automatically. Stale-team-profile detection nudges before the next bootstrap.
- Health-graded, drift-aware.
doctorproduces a 0–100 score with per-category deltas and trend sparklines frommemory/health.json. Inline drift checks at commit / PR / ship time nudge (don't gate) when the repo drifts from its profile;governance-check.ymlupgrades that to a CI gate when desired.
Working hooks, branching, commits, and docs across 26 stacks. Nyann detects yours automatically and applies the right profile — branching strategy, commit conventions, language-specific hooks (Husky, pre-commit.com, lefthook, …) wired up to run on day one, and archetype-aware documentation scaffolding. All profiles default to Conventional Commits + GitHub Flow.
| Stack | Profile | Linting | Formatting | Package Manager |
|---|---|---|---|---|
| TypeScript / Next.js | nextjs-prototype |
ESLint | Prettier | npm / pnpm / yarn / bun |
| TypeScript Library | typescript-library |
ESLint, tsc | Prettier | npm / pnpm / yarn / bun |
| React + Vite | react-vite |
ESLint | Prettier | npm / pnpm / yarn / bun |
| Node.js API | node-api |
ESLint | Prettier | npm / pnpm / yarn / bun |
| Python CLI | python-cli |
Ruff | Ruff | uv |
| Django | django-app |
Ruff | Ruff | uv |
| FastAPI | fastapi-service |
Ruff | Ruff | uv |
| Go | go-service |
go vet, golangci-lint | gofmt | go |
| Rust | rust-cli |
Clippy | rustfmt | cargo |
| Swift / iOS | swift-ios |
SwiftLint | SwiftFormat | SPM |
| Kotlin / Android | kotlin-android |
detekt | ktlint | Gradle |
| Shell / Bash | shell-cli |
ShellCheck | shfmt | - |
| Java / Spring Boot | java-spring-boot |
Checkstyle | - | Maven / Gradle |
| C# / .NET | dotnet-api |
dotnet format | dotnet format | dotnet |
| PHP / Laravel | php-laravel |
Pint | Pint | Composer |
| Dart / Flutter | flutter-app |
dart analyze | dart format | pub |
| Ruby / Rails | ruby-rails |
RuboCop | RuboCop | Bundler |
| Deno | deno-app |
deno lint | deno fmt | deno |
| Bun | bun-app |
ESLint (opt) | Biome / Prettier | bun |
| SvelteKit | sveltekit-app |
ESLint, svelte-check | Prettier | npm / pnpm / yarn / bun |
| Astro | astro-site |
ESLint, astro-check | Prettier | npm / pnpm / yarn / bun |
| Nuxt | nuxt-app |
ESLint | Prettier | npm / pnpm / yarn / bun |
| Elixir / Phoenix | phoenix-app |
mix credo | mix format | mix |
| NestJS | nestjs-service |
ESLint | Prettier | npm / pnpm |
| C/C++ CMake | cpp-cmake |
clang-tidy | clang-format | - |
| Any / Unknown | default |
- | - | - |
All profiles also include block-main (prevent direct commits to main) and gitleaks (secret scanning) hooks.
Don't see your stack? You can create a custom profile or learn one from an existing repo.
Orthogonal to the stack (language + framework), nyann classifies every project into one of 6 archetypes that drive archetype-aware doc scaffolding. The same TypeScript stack can be a web-app, library, cli-tool, or plugin depending on what the repo does — and gets a different set of docs accordingly.
| Archetype | Detected from | Scaffolds |
|---|---|---|
api-service |
OpenAPI / proto specs, or server frameworks (FastAPI, NestJS, Django, Rails, Spring Boot, Phoenix, Laravel, Gin, Echo, ASP.NET, …) without a frontend | architecture.md, api-reference.md, runbook.md, deployment.md, decisions/, glossary.md |
web-app |
Frontend frameworks (Next.js, Nuxt, SvelteKit, Astro, React, Vue, Remix) | architecture.md, runbook.md, deployment.md, decisions/, glossary.md |
mobile-app |
iOS (xcodeproj/Podfile), Android (AndroidManifest.xml), Flutter (pubspec.yaml + flutter dep), React Native (react-native/expo in package.json) | architecture.md, runbook.md, deployment.md, decisions/, glossary.md |
cli-tool |
package.json with bin, pyproject.toml with [project.scripts], Cargo [[bin]], Go cmd/*/main.go |
architecture.md, runbook.md, decisions/, glossary.md |
library |
Published-package signals without an entry-point binary (main/module/exports in package.json, Cargo [lib], Swift Package.swift) |
architecture.md, api-reference.md, decisions/, glossary.md |
plugin |
.claude-plugin/plugin.json, engines.vscode in package.json, browser-extension manifest.json with manifest_version |
architecture.md, decisions/, glossary.md |
| fallback | unknown — when none of the above match |
architecture.md, decisions/ (pre-v1.6.0 default) |
Detection runs in priority order: plugin → mobile-app → frontend frameworks defer artifact-based api-service until web-app is checked → api-service (server frameworks) → cli-tool → library. This ordering means a full-stack repo with Next.js + an OpenAPI spec for backend route handlers classifies as web-app (frontend is the user-visible primary surface), not api-service.
Override detection by setting "archetype" in your profile, or pass --archetype <name> to /nyann:bootstrap / /nyann:route-docs. Archetype-aware scaffolding is opt-in via documentation.use_archetype_scaffolds: true in the profile.
1. Install nyann as a Claude Code plugin.
Install from the community marketplace (Anthropic-curated, reviewed releases):
claude plugin marketplace add anthropics/claude-plugins-community
claude plugin install nyann@claude-community
Or install from the nyann repo directly (latest tag, fastest to update):
/plugin marketplace add thettwe/nyann
/plugin install nyann@nyann-plugins
The community-marketplace listing is SHA-pinned and syncs nightly after Anthropic's review pipeline approves a new version, so it can lag behind by one or more tags. The direct path picks up new tags as soon as you run
/plugin marketplace update. Use the direct path if you want the newest fixes immediately; use the community path if you prefer to wait for an Anthropic-reviewed release.
For development / hacking on nyann itself, clone directly:
git clone https://github.com/thettwe/nyann ~/.claude/plugins/nyann2. Bootstrap a repo.
Open Claude Code in an empty (or existing) project directory and say:
"set up this project"
Or use the slash command directly:
/nyann:bootstrap
Claude detects your stack, previews a plan with a unified diff for merge actions, and on confirmation produces:
- Git initialized with the right base branches for the detected branching strategy
.gitignoremerged from stack-specific templates (existing user lines preserved — never overwritten)- Working git hooks wired to the right framework: Husky (JS/TS), pre-commit.com (Python), lefthook (Go/Rust), or native
.git/hooks(shell). Linting, formatting, Conventional-Commits validation, secret scanning, andblock-mainare runnable on day one. docs/archetype-aware scaffold (api-service / cli-tool / library / web-app / mobile-app / plugin) — architecture, ADR-000, and matching templatesmemory/with README plus the BootRecord undermemory/.nyann/bootstraps/<ts>/so the run is reversibleCLAUDE.mdas a router-mode file under the 3 KB soft cap (8 KB hard cap).editorconfig,.github/workflows/ci.yml,.github/PULL_REQUEST_TEMPLATE.md,.github/ISSUE_TEMPLATE/, andCODEOWNERS(monorepo) when the profile opts in- GitHub branch + tag protection auto-applied via
ghif installed and authenticated
Total wall time on a clean directory: ~2 seconds (excluding npm install / pip install / etc.).
3. Keep using nyann.
You don't need to memorize slash commands. Just describe what you need:
| You say | What happens |
|---|---|
| "commit these changes" | Generates a Conventional Commits message and commits |
| "start a feature branch for login" | Creates a strategy-compliant branch |
| "is this repo healthy?" | Graded health score (0–100), per-category deltas, sparkline trend from history |
| "cut a patch release" | Auto-detects the semver bump from Conventional Commits, regenerates CHANGELOG, tags, optionally creates a GitHub release |
| "pull and rebase" | Syncs upstream changes with conflict guidance |
| "undo that" | Reverses the last commit on a feature branch |
| "undo the bootstrap" | Reverses the last bootstrap (or retrofit) run from its boot record |
| "open a PR" | Creates a GitHub PR from the current branch |
| "ship it" | Opens a PR and either auto-merges (returns immediately) or polls CI then merges |
| "generate CI for this project" | Writes a GitHub Actions workflow + optional governance gate |
Every skill also has a slash command (/nyann:commit, /nyann:doctor, etc.) listed in the full command reference below.
| Area | What nyann does |
|---|---|
| Bootstrap | Stack-detected, schema-validated ActionPlan previewed before any write. Per-language working hooks, archetype-aware doc scaffolds, CI workflow, GitHub templates, branch + tag protection, and .gitignore merge with diff-preview. Monorepo-aware (pnpm / Turborepo / Nx / Lerna / Cargo workspaces). |
| Reversibility | bootstrap / retrofit write a BootRecord (manifest + pre-state file copies) before mutating; /nyann:undo-bootstrap reverses the run. Refusal-by-default protects files edited after bootstrap, branches with stacked commits, and HEAD ahead of the bootstrap seed. |
| Retrofit | Scoped audit + remediation against a profile. --scope docs|hooks|branching|gitignore|editorconfig|github lets you fix one category without touching the others. Idempotent — safe to re-run. Boot-record-backed, so it's reversible too. |
| Doctor | Read-only hygiene audit with a numerical health score (0–100) persisted to memory/health.json, rendered as a per-category sparkline trend. Covers hook drift, gitignore, non-Conventional history, broken internal links, doc orphans, doc staleness, archetype conformance (misplaced docs), CLAUDE.md size budget, and GitHub protection drift. --explain flag pipes the drift report through explain-diff for a plain-English summary. |
| Commit | Reads the staged diff, generates a Conventional Commits message scoped to touched workspaces (monorepo), and retries once on hook rejection. Supports --amend and --edit-message. |
| Branch | Creates strategy-compliant branch names off the right base for the active strategy (GitHub Flow / GitFlow / trunk-based). Validates slug; switches to an existing branch if one already matches. |
| PR | Opens a GitHub PR with a Conventional-Commits-style title generated from the commit range and a body summarizing the diff. Context-only mode works without gh. |
| Ship | Combined PR + merge in one step. Default uses GitHub's native auto-merge so the terminal returns immediately with outcome:"queued". --client-side polls CI in the foreground and runs gh pr merge when checks pass. |
| Release | Auto-detects the next semver bump from Conventional Commits since the last tag. Generates the CHANGELOG section, optionally bumps profile-declared manifest files (package.json, plugin.json, pyproject.toml, …), creates an annotated tag, pushes a GitHub release. Pre-release support for -rc.N / -beta.N. CI-gated tagging via --wait-for-checks. Monorepo: --workspace and --all-workspaces for per-workspace versioning with scoped tags (core@2.1.0); --batch-commit groups all workspace releases into a single commit. |
| Hotfix | Branch topology for patch releases against a previously tagged version. Creates release/<major>.<minor> from the source tag if missing, then hotfix/<slug> off it. Pairs with release for the actual cut. |
| PR risk score | /nyann:ship computes a composite risk score (churn × test gap × health delta) and surfaces `low |
| CI generation | Generates .github/workflows/ci.yml matched to your stack and profile (lint + typecheck + test jobs). Optional governance-check.yml posts inline PR comments when drift exceeds threshold or health drops below the floor. |
| GitHub protection | Audit (--check) or apply branch protection, tag rulesets, signing requirements, security settings, and Dependabot config. Output validates against protection-audit.schema.json so other tooling can consume it. |
| Docs routing | Routes docs to local Markdown, Obsidian (MCP), Notion (MCP), or a per-doc-type split. Standalone re-routing after bootstrap regenerates the scaffold to match. memory/ stays local. |
| Glossary | Auto-populates docs/glossary.md from detected exported types (Go, TS, JS, Python, Rust, Java, Kotlin, Swift) at bootstrap and retrofit time. Marker-bracketed auto block; user content outside markers is preserved. Profile-gated via documentation.glossary.auto_populate. |
| CLAUDE.md | Router-mode generation under 3 KB soft / 8 KB hard cap. Standalone regeneration via gen-claudemd. Usage-based optimization trims sections Claude never references, based on analytics/claudemd-usage.jsonl. |
| Inline drift checks | Drift detection runs at point-of-use (commit / PR / ship / release) — not on session start. Surfaces broken links, orphans, doc staleness, CLAUDE.md size, and protection drift. Non-blocking nudge by default; CI gate on opt-in. |
| Command | Purpose |
|---|---|
/nyann:setup |
First-run onboarding + preferences. Optional --simulate <path> previews what /nyann:bootstrap would do without writing. |
/nyann:bootstrap [--profile <name>] |
Full setup flow. |
/nyann:retrofit [--profile <name>] [--json] |
Audit drift + offer remediation. |
/nyann:doctor [--profile <name>] [--json] [--explain] |
Read-only hygiene + docs audit. --explain translates drift to plain English. |
/nyann:commit [--amend | --no-retry | --edit-message] |
Generate + commit a Conventional Commits message. |
/nyann:branch <purpose> <slug-or-version> |
Strategy-compliant branch creation. |
/nyann:pr [--draft] [--auto-merge] |
Open a GitHub PR from current branch. |
/nyann:ship [--client-side] [--merge-strategy s] |
Combined PR + auto-merge (or poll-and-merge). |
/nyann:wait-for-pr-checks [--pr <n>] [--timeout <s>] |
Poll a PR's checks until pass / fail / timeout. |
/nyann:release --version <x.y.z> |
Generate changelog, commit, and tag. |
/nyann:hotfix --from <tag> --slug <slug> |
Set up hotfix branch topology. |
/nyann:sync |
Pull + rebase with conflict guidance. |
/nyann:undo [--hard] |
Reverse last commit on a feature branch. |
/nyann:undo-bootstrap [--manifest <path>] [--scope <csv>] [--force] [--dry-run] |
Reverse a bootstrap or retrofit run from its BootRecord manifest. |
/nyann:cleanup-branches [--yes] |
Prune local branches whose work is merged. |
/nyann:gen-ci [--profile <name>] |
Generate GitHub Actions CI workflow. |
/nyann:gen-templates [--profile <name>] |
Generate PR + issue templates. |
/nyann:gen-claudemd [--profile <name>] [--force] |
Regenerate CLAUDE.md without a full bootstrap. |
/nyann:gen-dependency-updater |
Generate profile-aware Dependabot or Renovate config. |
/nyann:gen-devcontainer |
Generate profile-aware .devcontainer/devcontainer.json for Codespaces. |
/nyann:explain-diff |
Translate a drift report into plain-English markdown. |
/nyann:gh-protect [--check] [--profile <name>] |
Audit or apply GitHub protection rules. |
/nyann:route-docs [--routing <spec>] |
Change doc storage routing + regenerate scaffold. |
/nyann:optimize-claudemd [--force] |
Optimize CLAUDE.md based on usage data. |
/nyann:record-decision <title> |
Create a numbered ADR. |
/nyann:explain-state |
Summarize repo state for handoff. |
/nyann:suggest [--profile <name>] |
Suggest profile updates from repo state. |
/nyann:diff-profile --left <a> --right <b> |
Structured diff between two profiles. |
/nyann:inspect-profile <name> |
Pretty-print a profile. |
/nyann:migrate-profile --to <name> |
Switch profile with diff + re-bootstrap. |
/nyann:learn-profile [--target <path>] [--name <kebab>] |
Extract a reusable profile from an existing repo. |
/nyann:add-team-source --name <n> --url <u> |
Register a team profile repo. |
/nyann:sync-team-profiles [--force] |
Sync team profiles from remote. |
/nyann:check-prereqs [--json] |
Survey hard + soft prereqs. |
/nyann:diagnose [--json] |
Bundle a redacted support snapshot. |
/nyann:settings [<key> <value>] |
Interactive preferences menu (or direct <key> <value> shortcut). |
/nyann:watch [--pr <n>] [--stop] |
One-shot CI sentinel poll — queues state-transition notifications. |
All 37 skills respond to natural language, not just slash commands. See skills/*/SKILL.md for trigger-phrase lists. Every skill above also has a commands/*.md slash entry — invoke either way.
Nyann picks the right profile automatically. If the starter profiles don't fit, you have two options:
Learn from an existing repo. If you already have a well-configured project, nyann can extract a reusable profile from it:
bin/learn-profile.sh --target ~/projects/my-good-app --name good-appThis infers stack, hooks, branching, and conventions from the repo's files and last 50 commits.
Inspect any profile. To see what a profile contains before using it:
bin/inspect-profile.sh nextjs-prototypeWhen multiple profiles exist with the same name, the most specific one wins:
~/.claude/nyann/profiles/<name>.jsonuser profiles~/.claude/nyann/cache/<source>/.../<name>.jsonteam profiles (synced from a git URL)<plugin>/profiles/<name>.jsonstarter profiles
A namespaced name like our-team/frontend-baseline bypasses user shadowing.
Share conventions across a team by syncing profiles from a git repo:
# Register a source — optionally pinned to a tag, SHA, or branch
bin/add-team-source.sh --name our-team \
--url https://github.com/our-org/nyann-profiles.git \
--pin-strategy tag --pin-ref v1.0.0
# Sync (shallow clone, respects sync_interval_hours)
bin/sync-team-profiles.sh [--force]
# When pinned: check what would change before accepting an update
bin/sync-team-profiles.sh --check-updates --name our-team
bin/sync-team-profiles.sh --accept-update --name our-teamWhen a team profile updates upstream, nyann checks for staleness at point-of-use (during bootstrap and profile migration) and prompts you to sync before proceeding. SHA and tag pinning (v1.11.0) keep the team source on a known-good revision; updates require explicit --accept-update and surface a changelog of what changed.
Avoid copy-paste between similar profiles. A child profile can inherit from a parent via "extends":
{
"name": "my-react-vite",
"extends": "react-vite",
"branching": { "scopes": ["api", "web"] }
}Deep merge semantics: scalars and objects merge recursively (child wins), arrays replace entirely, null removes a parent's field. Max chain depth: 3. Circular references are rejected. Namespaced team/name form is supported for team-source parents.
nyann scaffolds and maintains your project's Project Memory — a documentation layer designed for AI agents to retrieve, sized to fit their context, and kept in sync as your code evolves.
CLAUDE.md ──→ docs/ (durable Project Memory)
│ ──→ memory/ (ephemeral team scratch)
│
└─ router-mode (≤ 3 KB), points into both.
Five properties define it:
- AI-retrieval-first — bounded scope per doc, predictable structure, decision rationale captured.
- Size-budgeted — docs fit in context windows. CLAUDE.md is router-mode (≤3 KB soft cap), not a content dump.
- Drift-aware — broken links, orphans, and staleness surfaced automatically by
doctorand CI. - Storage-agnostic — local Markdown, Obsidian (MCP), or Notion (MCP). Equal citizens.
- Dual-audience — high-signal structure works for AI agents AND humans reading reference docs.
See docs/principles/documentation.md for the full definition.
By default CLAUDE.md links to local docs/ and memory/.
When Claude Code has an Obsidian or Notion MCP configured, nyann asks where each doc type should live:
adrs:obsidian, research:local, architecture:local
memory/ is always local — it's the ephemeral team-shared scratch layer, distinct from Project Memory itself.
Run /nyann:check-prereqs (or bin/check-prereqs.sh) for a live inventory.
Hard (required):
gitjq(brew install jq/apt install jq)bash3.2+ (macOS default is fine)
Soft (feature-gated; nyann skips with a reason when missing):
| Feature | Needs |
|---|---|
| JS/TS hooks | node + npm / pnpm / yarn / bun |
| Python hooks | python3 + pre-commit (or uv / uvx) |
| Go hooks | go |
| Rust hooks | cargo |
| Swift hooks | swiftlint, swiftformat |
| Kotlin hooks | ktlint, detekt |
| Shell hooks | shellcheck, shfmt |
| Secret scanning | gitleaks |
| Branch protection | gh with gh auth status green |
| Schema validation | uv (provides uvx check-jsonschema) or check-jsonschema |
| Dev loop | shellcheck, bats-core |
Nyann never prompts for credentials. gh auth status is a passive read; missing auth surfaces as a skip, not a prompt.
bin/ # 87 top-level shell scripts + 39 extracted modules + 1 python helper
commands/ # 37 Claude Code slash-command registrations
evals/ # 24 skill-level trigger + output-quality specs
hooks/ # Claude Code PreToolUse + UserPromptSubmit hooks
profiles/ # 27 starter profiles (+ _schema.json)
schemas/ # 62 JSON Schemas for every exchanged shape
skills/ # 37 skills (SKILL.md, optionally with references/ and scripts/)
templates/ # gitignore, pre-commit configs (incl. iac), husky, docs, CI, memory
monitors/ # Monitor manifest (monitors.json, currently empty)
tests/ # 1438 bats tests + fixtures
See CHANGELOG.md for the full release history. Most recent: v1.12.0 — Proactive Awareness. nyann shifts from purely reactive to proactively surfacing drift, validating preconditions, and watching CI state — quiet unless something actually changed. Highlights:
- Mandatory setup gate with new
/nyann:settingsinteractive menu (per-user preferences schema bumps to v2). - Session-start triage UserPromptSubmit hook with fingerprint-based dedup — silent unless drift state changed.
- Pre-action guards (
commit/pr/release/ship) — built-in checks for staged-files, merge-conflict markers, branch-pushed, WIP commits, clean-tree, with profile-promoted severity. - Proactive commit hygiene — scope suggestion, incomplete-staging detection, debug-artifact + dead-code scan folded into
/nyann:commit. - Public-doc governance — version-ref, file-ref, script-ref, count-claim drift detectors fold into
/nyann:doctor. - README SVG toolkit — shields.io badge + skillicons.dev tech-stack generators with marker-bracketed idempotent rewrites.
- CI sentinel —
/nyann:watchpolls open PRs and queues state-transition notifications surfaced by the session-start hook. - IaC minimal —
infraarchetype +terraform-monorepostarter profile + 5 IaC hook templates (fmt / validate / tflint / tfsec / terraform-docs) withinstall-hooks --iacphase.
Issues and feature requests: https://github.com/thettwe/nyann/issues.
