Overview

Two command line packages and four browser tools: project scaffolding, sitemap and robots.txt generation, AI pull-request review and dependency scanning. All of them free, and the browser ones run without an account.

SEO & AI Tools

No install, no account — they run in the page.

Image Tools

Browser-based image editing — your files never leave your device.

PDF Tools

Merge, split, compress, convert, and protect PDFs — server-side processing, nothing leaves your session.

JSON Tools

Format, validate, and convert JSON — all in your browser.

XML Tools

Format, validate, and convert XML — all in your browser.

Text Tools

Compare, count, convert, and transform text — all in your browser.

@nayan-ui/cli

Scaffold new projects from templates, generate XML sitemaps by crawling a site, and create or validate robots.txt files.

Install

terminal
npm install -g @nayan-ui/cli
# or, without installing
npx @nayan-ui/cli [command]

Commands

terminal
nayan-ui new
nayan-ui new my-app -t expo
nayan-ui create sitemap -w https://example.com
nayan-ui create robots -d /admin
nayan-ui validate sitemap -i ./sitemap.xml
nayan-ui validate robots -i ./robots.txt

What it does

  • Project scaffoldingCreate projects from the Expo, Games, Next.js and Vite templates.
  • SitemapsCrawl a website to generate an XML sitemap, or validate an existing one.
  • Robots.txtCreate and validate robots.txt files for crawler control.
  • Interactive or notPrompts when you want them, flags when you are scripting CI.

@nayan-ui/ai

Codex and Claude Code agents that review GitHub pull requests and scan repositories for vulnerable dependencies, with auto-fix.

Install

terminal
npm install -g @nayan-ui/ai
# or, without installing
npx @nayan-ui/ai [command]

Commands

terminal
nayan-ai review <pr-url> -t ghp_xxx
nayan-ai review <pr-url> -t ghp_xxx --dry
nayan-ai review <pr-url> -t ghp_xxx --inline
nayan-ai scan <repo-url> -t ghp_xxx
nayan-ai scan <repo-url> -t ghp_xxx --fix
nayan-ai scan <repo-url> -t ghp_xxx --llm claude

What it does

  • AI code reviewDeep pull-request analysis for bugs, security, performance and test coverage.
  • Vulnerability scanningPackage vulnerabilities across npm, Python, Go, Rust and more.
  • Auto-fix and PRsFix what it finds and open a pull request describing the change.
  • Two providersCodex by default, or Claude Code with one flag.