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

@gabedsam01/excalidash-v2-skills

v0.1.0

Published

Agent Skills installer for ExcaliDash V2.

Readme

@gabedsam01/excalidash-v2-skills

Zero-dependency npm/npx installer for the ExcaliDash V2 Agent Skills. It copies the packaged skills into Claude Code or universal agent skill directories without creating an extra excalidash/ nesting level.

ExcaliDash V2 preserves credit to the original ExcaliDash project by ZimengXiong and distributes this package under the repository's AGPL-3.0 license.

What are Agent Skills?

An Agent Skill is a directory containing a SKILL.md instruction file and optional on-demand resources:

excalidash-c4-context/
  SKILL.md
  references/
  scripts/
  assets/        # when provided by the skill

The shared _shared/ directory is installed with every selection because skills can reference its reusable guidance and scripts. _shared is not reported as a skill because it has no SKILL.md.

Install

Install in the current repository:

npx -y @gabedsam01/excalidash-v2-skills --local

Install for the current user:

npx -y @gabedsam01/excalidash-v2-skills --user

Install in another project:

npx -y @gabedsam01/excalidash-v2-skills --project ./meu-projeto

The CLI requires an explicit target. Running it without arguments prints help and does not install anything.

Select an agent

The default is --agent all.

npx -y @gabedsam01/excalidash-v2-skills --local --agent claude-code
npx -y @gabedsam01/excalidash-v2-skills --local --agent codex
npx -y @gabedsam01/excalidash-v2-skills --local --agent universal
npx -y @gabedsam01/excalidash-v2-skills --local --agent all

| Agent | Destination | | --- | --- | | claude-code | .claude/skills | | codex | .agents/skills | | universal | .agents/skills | | all | both destinations |

Select skills

Without --skill, every valid packaged skill is installed. Repeat --skill to install a subset:

npx -y @gabedsam01/excalidash-v2-skills --local --skill excalidash-c4-context
npx -y @gabedsam01/excalidash-v2-skills --local \
  --skill excalidash-c4-context \
  --skill excalidash-c4-container

_shared is always copied with the selected skills.

List, verify, diagnose, and remove

npx -y @gabedsam01/excalidash-v2-skills --list
npx -y @gabedsam01/excalidash-v2-skills --verify
npx -y @gabedsam01/excalidash-v2-skills --verify --local
npx -y @gabedsam01/excalidash-v2-skills --doctor --local
npx -y @gabedsam01/excalidash-v2-skills --uninstall --local

--verify without a target validates the skills packaged with the CLI. Targeted verification checks the installation manifest, required files, frontmatter, shared resources, and content hashes.

Uninstall removes only paths recorded in .excalidash-v2-skills-manifest.json. Modified installed directories are kept unless --force is supplied.

Paths created

| Target | Claude Code | Universal/Codex | | --- | --- | --- | | --local | ./.claude/skills/ | ./.agents/skills/ | | --user | ~/.claude/skills/ | ~/.agents/skills/ | | --project ./meu-projeto | ./meu-projeto/.claude/skills/ | ./meu-projeto/.agents/skills/ |

Skills are direct children of these directories:

.claude/skills/excalidash-c4-context/SKILL.md
.claude/skills/_shared/references/
.agents/skills/excalidash-c4-context/SKILL.md
.agents/skills/_shared/references/

Existing files and automation

  • Existing directories are skipped with a clear warning.
  • --yes updates existing directories only when the manifest shows they were installed by this package.
  • --force overwrites existing selected directories.
  • --dry-run reports copy or removal actions without changing files.
  • --json emits machine-readable output.
  • --global is accepted as an alias for --user.

No symlinks are created.

Security

Install and verify never execute scripts contained in a skill. Scripts are copied as files for an agent to load or for a user to run deliberately. Verification rejects symbolic links and obvious executable binary formats.

When configuring ExcaliDash integrations, use local examples such as http://localhost:3000/mcp and placeholder credentials such as YOUR_API_TOKEN; never commit real secrets.

Development

npm test
npm run verify
npm run pack:dry-run