npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@thanhndpo/tanizy-po-agent

v0.1.1

Published

Portable Product Owner agent workflows for Gemini CLI, Antigravity, Codex, and Claude Code.

Downloads

241

Readme

Tanizy PO Agent

Tanizy PO Agent is a portable Product Owner workflow package for AI coding agents. It helps refine product ideas, write requirement artifacts, and create diagrams through reusable skill instructions.

Supported Tools

  • Gemini CLI
  • Antigravity 2.0 / Antigravity IDE
  • Codex
  • Claude Code

What It Supports

  • Brainstorming vague product ideas into approved feature specs.
  • Understanding Lock, explicit assumptions, non-functional requirements, and Decision Log before writing specs.
  • Writing requirements such as Epic, User Story, Use Case, Basic Design, API Spec, and Non-functional Requirements.
  • User Story quality gates that require happy path, alternative/edge, and exception/negative coverage.
  • Creating diagrams such as Use Case, Sequence, BPMN-style process flow, Activity, and State diagrams.
  • Research fallback when a requested artifact type has no local template.

Repository Structure

core/skills/              # Canonical skill source of truth
adapters/                 # Thin tool-specific entrypoints
scripts/install.mjs       # No-dependency installer
docs/                     # Install and manual-copy guides

Do not edit copied/generated skill files inside target projects as the source of truth. Update core/skills/ in this repository, then reinstall into the target project.

Install via npm (Recommended)

No need to clone. Just run:

npx @thanhndpo/tanizy-po-agent --target gemini-cli --project /path/to/project
npx @thanhndpo/tanizy-po-agent --target codex --project /path/to/project
npx @thanhndpo/tanizy-po-agent --target claude-code --project /path/to/project
npx @thanhndpo/tanizy-po-agent --target antigravity --project /path/to/project

Preview the install first:

npx @thanhndpo/tanizy-po-agent --target gemini-cli --project /path/to/project --dry-run

If destination files already exist, the installer stops. Re-run with --force when you intentionally want to overwrite Tanizy files in the target project.

Update to Latest Version

When a new version is published, update with:

npx @thanhndpo/tanizy-po-agent@latest --target gemini-cli --project /path/to/project --force

Install from Local Clone

If you cloned this repository locally:

node scripts/install.mjs --target gemini-cli --project /path/to/project
node scripts/install.mjs --target codex --project /path/to/project
node scripts/install.mjs --target claude-code --project /path/to/project
node scripts/install.mjs --target antigravity --project /path/to/project

Preview first:

node scripts/install.mjs --target gemini-cli --project /path/to/project --dry-run

Manual Copy

You can install without scripts by copying the relevant adapter and skill folders. See docs/manual-copy.md.

Quick summary:

Gemini CLI:  core/skills -> skills, adapters/gemini-cli/GEMINI.md -> GEMINI.md, adapters/gemini-cli/.gemini -> .gemini
Codex:       core/skills/* -> .agents/skills/, adapters/codex/AGENTS.md -> AGENTS.md
Claude Code: core/skills/* -> .claude/skills/, adapters/claude-code/CLAUDE.md -> CLAUDE.md
Antigravity: core/skills -> skills, adapters/antigravity/AGENTS.md -> AGENTS.md, adapters/antigravity/.agents -> .agents

Tool Guides

Important Behavior

  • The agent asks in Vietnamese by default unless the project uses another language.
  • The agent does not run version-control actions unless explicitly requested.
  • The agent does not save generated artifacts until the user approves the content and confirms the path.
  • Generated artifacts should be saved in the target project, not inside installed skill folders.

License

MIT License. See LICENSE.