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

@ofabriciolima/aiox-vault-install

v1.1.0

Published

Cloud installer for private AIOX agent and squad vault packages.

Readme

@ofabriciolima/aiox-vault-install

Cloud installer for private AIOX agent and squad vault packages.

Current package version: 1.1.0.

Usage

Open a terminal in an AIOX project and run:

npx @ofabriciolima/aiox-vault-install

The default installer is interactive in Brazilian Portuguese. Use the arrow keys, press Enter, and choose:

  • what to install
  • current folder or another project path
  • install mode/profile
  • conflict behavior
  • post-install sync/validation
  • install now or simulate

List packages:

npx @ofabriciolima/aiox-vault-install list

Install Agent Forge:

npx @ofabriciolima/aiox-vault-install install --package-type agents --package-id agent-forge --profile full --merge --create-missing-surfaces --yes

Install only Codex surface:

npx @ofabriciolima/aiox-vault-install install --package-type agents --package-id agent-forge --profile codex-only --merge --create-missing-surfaces --yes

Dry-run with plan export:

npx @ofabriciolima/aiox-vault-install install --package-type agents --package-id agent-forge --profile full --merge --dry-run --export-plan install-plan.json

Private Vault Auth

This installer keeps the vault repository private. It can fetch package files with either:

  • GitHub CLI: run gh auth login
  • Environment token: set GITHUB_TOKEN with access to uzeninguem/aiox-agent-squad-vault

Commands

  • install - interactive or flag-driven install.
  • list - list agents/squads from the private vault registry.
  • doctor - show auth and vault configuration health.

Install Flags

  • --package-type agents|squads|both - Registry type to install from.
  • --package-id <id> - Install one package by id.
  • --all - Install all packages from the selected package type.
  • --target <path> - Target AIOX project. Defaults to the current terminal folder.
  • --profile full|codex-only|core-only|all-clis - Install profile.
  • --merge - Use the recommended safe merge conflict policy.
  • --backup - Backup and overwrite existing files.
  • --force - Overwrite without backup.
  • --conflict-policy merge|create-only|backup-and-overwrite|force-overwrite|skip-existing - Explicit conflict behavior.
  • --create-missing-surfaces - Create selected CLI/IDE folders when missing.
  • --allow-non-aiox-target - Allow install when .aiox-core is not present.
  • --run-sync - Run package post-install sync/validation commands when available.
  • --dry-run - Show the plan without writing files.
  • --export-plan <path> - Write the install plan as JSON.
  • --yes / -y - Skip final confirmation.

Profiles

  • full - AIOX Core, Codex, supported CLI/IDE surfaces, and docs.
  • codex-only - Only the local Codex skill/agent surface.
  • core-only - Only canonical .aiox-core source files.
  • all-clis - CLI/IDE surfaces without .aiox-core.

Interactive Notes

Profiles are the safest path for most installs. The default interactive flow hides surface-level details and maps simple choices to the right profile.

When a file already exists, choose Mesclar com seguranca for the safest default. The merge policy creates a backup, updates AIOX-MANAGED blocks when present, deep-merges JSON files, and preserves local text by appending missing package content into an audited AIOX-VAULT-MERGE section.

Conflict policies:

  • merge - Recommended. Backup + managed-block merge + JSON deep merge + text preservation.
  • create-only - Block when a target file already exists.
  • backup-and-overwrite - Backup and overwrite.
  • skip-existing - Leave existing files untouched.
  • force-overwrite - Overwrite without backup.

Valid custom surfaces are: aiox-core, codex, claude, gemini, cursor, github-copilot, antigravity, kimi, docs.

Environment Overrides

  • AIOX_VAULT_OWNER
  • AIOX_VAULT_REPO
  • AIOX_VAULT_REF
  • AIOX_VAULT_LOCAL_ROOT for local testing/development

Publish

The package is configured as a public scoped npm package.

npm login
npm publish --access public

After publish, the command works from any AIOX project:

npx @ofabriciolima/aiox-vault-install