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

@maxal_studio/kratosjs-skill

v2.0.0

Published

Portable Agent Skill that teaches AI coding assistants (Claude Code, Cursor, Codex, VS Code/Copilot, Gemini CLI, and 40+ others) how to build KratosJs admin panels.

Readme

@maxal_studio/kratosjs-skill

A portable Agent Skill that teaches AI coding assistants how to build KratosJs admin panels — resources, forms, tables, hooks, actions, widgets, pages, relations, media, auth, i18n, and plugins — using the current, verified API and the non-obvious gotchas that aren't in the reference docs.

Agent Skills are an open standard supported by 40+ tools (Claude Code, Cursor, VS Code / GitHub Copilot, OpenAI Codex, Gemini CLI, opencode, Roo Code, Kiro, Junie, Amp, and more). The same skill folder works everywhere — only the install location differs.

Install

Run the installer with npx (no global install needed):

# Installs to Claude Code (.claude/skills) AND the universal .agents/skills location
npx @maxal_studio/kratosjs-skill

That single command covers Claude Code plus every tool that reads the standard .agents/skills/ directory (Codex, Cursor, VS Code/Copilot, Gemini CLI, …). To target one tool, pass its name:

npx @maxal_studio/kratosjs-skill claude      # Claude Code
npx @maxal_studio/kratosjs-skill agents      # universal .agents/skills (Codex, Cursor, VS Code, Gemini…)
npx @maxal_studio/kratosjs-skill cursor      # Cursor's own .cursor/skills
npx @maxal_studio/kratosjs-skill vscode      # VS Code / Copilot (.github/skills)
npx @maxal_studio/kratosjs-skill gemini      # Gemini CLI (.gemini/skills)

Flags:

| Flag | Effect | | -------------- | --------------------------------------------------------------------------------------------- | | --global | Install into your home directory instead of the current project | | --dir <path> | Copy into an exact directory (skill lands at <path>/kratosjs) — use for any tool not listed | | --force | Overwrite an existing install |

Where each tool loads the skill from (project scope shown; add --global for the home variant):

| Tool | Project directory | Home directory | | --------------------------------------------------- | ----------------- | -------------------- | | Claude Code | .claude/skills/ | ~/.claude/skills/ | | Any standard tool (Codex, Cursor, VS Code, Gemini…) | .agents/skills/ | ~/.agents/skills/ | | Cursor (native) | .cursor/skills/ | ~/.cursor/skills/ | | VS Code / Copilot | .github/skills/ | ~/.copilot/skills/ | | Gemini CLI | .gemini/skills/ | ~/.gemini/skills/ |

Manual install (no npx)

The skill is just a folder — copy it wherever your tool reads skills from:

cp -r node_modules/@maxal_studio/kratosjs-skill/skill/kratosjs  <your-tool-skills-dir>/kratosjs

For example, .claude/skills/kratosjs for Claude Code, or .agents/skills/kratosjs for Codex/Cursor/VS Code/Gemini. If your tool isn't listed above, check its docs (linked from agentskills.io) for its skills directory and copy the kratosjs/ folder there.

Using it

Once installed, the assistant loads the skill automatically when you work on a KratosJs panel (its description matches requests like "add a resource", "build a form/table", "create a widget"). You can also invoke it explicitly with /kratosjs in tools that support slash-invocation.

The skill uses progressive disclosure: SKILL.md is a short router; the detailed material in skill/kratosjs/references/*.md loads only when the task needs it, so it costs almost nothing until used.

What's inside

skill/kratosjs/
├── SKILL.md              # router: overview + when-to-load table + top gotchas
└── references/
    ├── getting-started.md   entities.md   resources.md   forms.md
    ├── tables.md            filters.md    cells.md       hooks.md
    ├── actions.md           widgets.md    pages.md       relations.md
    ├── media.md             auth.md       i18n.md        plugins.md
    └── gotchas.md