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

@openape/grants

v0.11.5

Published

OpenApe authorization server: grant issuance, revocation, introspection

Downloads

2,069

Readme

@openape/grants

Grant lifecycle management for OpenApe. Grants control what actions agents (or humans) are authorized to perform on behalf of a user — from one-time approvals to time-limited or permanent permissions.

Installation

npm install @openape/grants

Peer dependency: @openape/core

Grant Lifecycle

create → [pending] → approve → [approved] → use / revoke
                    → deny    → [denied]
                                [approved] → revoke → [revoked]
                                [approved] → (time)  → [expired]

API

Grant Functions

  • createGrant(request, store) — Create a new grant request (status: pending)
  • approveGrant(grantId, approver, store) — Approve a pending grant
  • denyGrant(grantId, denier, store) — Deny a pending grant
  • revokeGrant(grantId, store) — Revoke an approved grant
  • introspectGrant(grantId, store) — Look up a grant by ID
  • useGrant(grantId, store) — Mark a once grant as used

Authorization JWT

  • issueAuthzJWT(payload, privateKey, kid?) — Issue a signed authorization JWT for an approved grant
  • verifyAuthzJWT(token, keyOrJWKS, options?) — Verify an authorization JWT

GrantStore Interface

interface GrantStore {
  save(grant: OpenApeGrant): Promise<void>
  findById(id: string): Promise<OpenApeGrant | null>
  updateStatus(id: string, status: GrantStatus, extra?: Partial<OpenApeGrant>): Promise<void>
  findByRequester(requester: string): Promise<OpenApeGrant[]>
  findByStatus(status: GrantStatus): Promise<OpenApeGrant[]>
}

An InMemoryGrantStore is included for development and testing.

Grant Types

| Type | Behavior | |------|----------| | once | Valid for a single use, then automatically marked as used | | timed | Valid for a duration (in seconds), then automatically expired | | always | Valid until explicitly revoked |

Example

import { createGrant, approveGrant, issueAuthzJWT, InMemoryGrantStore } from '@openape/grants'
import { generateKeyPair } from '@openape/core'

const store = new InMemoryGrantStore()

// 1. Agent requests a grant
const grant = await createGrant({
  requester: '[email protected]',
  target: 'api.github.com',
  grant_type: 'once',
  permissions: ['write:issues'],
  reason: 'Create issue for bug report',
}, store)

// 2. User approves the grant
const approved = await approveGrant(grant.id, '[email protected]', store)

// 3. IdP issues an authorization JWT
const { privateKey } = await generateKeyPair()
const authzToken = await issueAuthzJWT({
  iss: 'https://id.example.com',
  sub: '[email protected]',
  aud: 'api.github.com',
  grant_id: approved.id,
  grant_type: 'once',
  permissions: ['write:issues'],
}, privateKey, 'key-1')

License

MIT