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

@ident-agency/identa-cli

v0.0.7

Published

Command-line interface for Ident Agency - secure, privacy-preserving identity and data management

Readme

Ident Agency CLI

Command-line interface for Ident Agency - secure, privacy-preserving identity and data management.

Installation

Install the CLI globally to use it from anywhere:

npm install -g @ident-agency/identa-cli

Or using npx (without installation):

npx @ident-agency/identa-cli help
npm install -g @ident-agency/identa-cli

Or using npx (without installation):

npx @ident-agency/identa-cli help
npx @ident-agency/identa-cli help

Or install the binary

curl -fsSL https://get.ident.agency/install.sh | sh

Local Development

For development, clone the repository and link locally:

pnpm install
pnpm link --global

Usage

identa help

Common Commands

Authentication

# Login to Ident.Agency (opens browser for OAuth flow)
identa auth login

# View your profile information
identa auth profile

# Logout
identa auth logout

# Change password
identa auth change-password

Fragments (Data Management)

# List fragments (alias: ls)
identa fragment list
identa fragment ls

# Get a fragment value
identa fragment get <path>
# Example: identa fragment get profile/name

# Write/update a fragment
identa fragment put <path> <value>
# Example: identa fragment put profile/bio "Software developer"

# Get raw fragment data (includes metadata)
identa fragment raw <path>

# Delete a fragment
identa fragment delete <path>
# Example: identa fragment delete profile/old-data

# Recover a deleted fragment
identa fragment recover <path>

Secrets Management (Local Device Secrets)

# Set the secrets provider (local, gcp)
identa secrets provider <provider>
# Example: identa secrets provider local

# Store a secret locally
identa secrets set <key> <value>
# Example: identa secrets set github-token ghp_xxxxx

# Retrieve a secret
identa secrets get <key>

# List all secrets
identa secrets list

# Delete a secret
identa secrets delete <key>

# Google Cloud Platform secrets (if configured)
identa secrets gcp <project-id> <secret-name>

Key Management

# Register a new key/device
identa keys register

# List registered keys
identa keys list

# Remove a key
identa keys remove <key-id>

# Test key functionality
identa keys test

# Device-specific operations
identa keys device

# Recovery key operations
identa keys recovery

# SSH key operations
identa keys ssh

Advanced Options

# Enable debug output
identa auth login --debug

# Use a different API endpoint
identa auth login --api-url https://staging.ident.agency

# Output as JSON (where supported)
identa fragment get profile --json

Config

You can set config options with:

identa config set <key> <value>

You can get config options with:

identa config get <key>

You can list all config options with:

identa config list

API URL Configuration

The CLI needs to know which Ident.Agency server to connect to. The API URL is resolved in the following priority order:

  1. Command-line flag --api-url (highest priority)
  2. Config file setting apiBaseUrl
  3. Default https://www.ident.agency (production)

Set to Production (default)

# Remove any custom setting to use the default production URL
identa config delete apiBaseUrl

# Or explicitly set to production
identa config set apiBaseUrl https://www.ident.agency

Set to Local Development

identa config set apiBaseUrl https://www.dev.ident.agency:5173

Check Current Setting

identa config get apiBaseUrl

Override Temporarily

Use the --api-url flag to override for a single command:

identa auth login --api-url=https://www.ident.agency

Debug Mode

Use --debug to see which API URL is being used and its source:

identa auth login --debug
# Output: 🔧 API URL: https://www.ident.agency (from config)