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

@vaultlayer/vincent-ability-unpermit-app

v0.2.12

Published

A Vincent ability that unpermits an app version for a delegatee by calling the Lit contracts directly.

Readme

Vincent Ability: Unpermit App

A Vincent Ability that allows an agent to revoke its own app permissions, useful for cleaning up after completing tasks.

Overview

The Unpermit App Ability allows an agent to revoke its own app permissions by automatically unpermitting the currently permitted app version. This is useful for cleaning up permissions after the app completes its intended task, ensuring the agent can only use the app when explicitly needed.

Features

  • Automatically derives app ID and version from the delegatee
  • Unpermits the currently permitted app version for the agent
  • Validates that the app is delegated to the delegatee
  • Calls the Lit Vincent Tool Policies contract directly
  • Uses PKP-derived keys for secure transaction signing
  • No policies required - simple and straightforward

Installation

npm install @vaultlayer/vincent-ability-unpermit-app
# or
pnpm add @vaultlayer/vincent-ability-unpermit-app
# or
yarn add @vaultlayer/vincent-ability-unpermit-app

Usage

Basic Usage

import { bundledVincentAbility } from '@vaultlayer/vincent-ability-unpermit-app';

// Unpermit the currently permitted app version
// No parameters needed - app ID and version are derived automatically
const result = await executeAbility({
  ability: bundledVincentAbility,
  params: {},
});

Parameters

This ability requires no parameters. The app ID and version are automatically derived from:

  • The delegatee's address (via getAppByDelegatee)
  • The currently permitted app version for the PKP token (via getPermittedAppVersionForPkp)

Response Format

Success Response

{
  txHash: '0x...',           // Transaction hash
  pkpTokenId: '123456',      // PKP token ID used
  appId: 1,                  // App ID that was unpermitted
  appVersion: 1,             // App version that was unpermitted
  timestamp: 1234567890      // Unix timestamp
}

Precheck Response

{
  pkpTokenId: '123456', // PKP token ID
  appId: 1,             // App ID
  appVersion: 1         // App version
}

Error Response

{
  error: 'Vault PKP tokenId is required for unpermit operation',
  reason: 'MISSING_PKP_TOKEN_ID'
}

Contract Details

Contract Address

  • Contract: 0xa3a602F399E9663279cdF63a290101cB6560A87e
  • Chain: Yellowstone (Lit Protocol)
  • Chain ID: 175188
  • Function: unPermitAppVersion(uint256 pkpTokenId, uint256 appId, uint256 appVersion)

Use Cases

  • Permission Cleanup: Automatically revoke permissions after completing a task
  • Security: Ensure agents only retain permissions when actively needed
  • Self-Management: Allow agents to clean up their own permissions
  • Temporary Access: Grant permissions for specific operations, then automatically revoke

Security Considerations

  • Delegatee Validation: Verifies the app is actually delegated to the delegatee address
  • Permission Verification: Confirms a permitted version exists before attempting to unpermit
  • PKP Token ID Validation: Ensures PKP token ID is available before execution
  • Chain ID Verification: Ensures correct chain before executing
  • PKP Security: Uses PKP-derived keys for secure transaction signing

Dependencies

  • @lit-protocol/vincent-ability-sdk - Vincent framework
  • @lit-protocol/vincent-scaffold-sdk - Transaction utilities
  • [email protected] - Ethereum library
  • zod - Schema validation

Related Packages