New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@framers/agentos-ext-auth

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@framers/agentos-ext-auth

Authentication extension for AgentOS (part of @framers/agentos-extensions)

latest
npmnpm
Version
1.1.0
Version published
Maintainers
2
Created
Source

Authentication Extension for AgentOS

Authentication and subscription management extension that integrates with AgentOS via the service injection pattern.

Why This Exists

Auth logic doesn't belong in the core library. This extension demonstrates clean separation:

  • Core AgentOS: Pure orchestration
  • Auth Extension: Optional middleware
  • Your choice: Use ours, bring your own, or omit entirely

Installation

import { createAuthExtension } from '@framers/agentos-extensions/auth';
import { AgentOS } from '@framers/agentos';

const authExtension = createAuthExtension({
  jwtSecret: process.env.JWT_SECRET,
  defaultTier: 'free',
});

const agentos = new AgentOS();
await agentos.initialize({
  authService: authExtension.authService,
  subscriptionService: authExtension.subscriptionService,
});

Features

  • JWT Authentication: Token generation, validation, refresh
  • Password Hashing: BCrypt with configurable rounds
  • Subscription Tiers: Multi-tier with feature flags
  • Tool Permissions: Integrate with AgentOS tool system
  • Persona Gating: Tier-based persona access

Usage

See examples for complete integration patterns.

Author

Framers AI (support@frame.dev)

License

MIT

Keywords

agentos

FAQs

Package last updated on 06 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts