-
-
Notifications
You must be signed in to change notification settings - Fork 2
v0.6.0
Release Date: January 29, 2026 Status: Long-Term Support (LTS) Phase: Phase 1 Complete (100%)
nself v0.6.0 is a major milestone release completing Phase 1: Enterprise Authentication & Security. This release delivers production-ready authentication, authorization, and security infrastructure with 294 story points across 5 sprints.
Core Authentication:
- Password authentication with bcrypt hashing
- Email verification with secure token generation
- Password reset with time-limited tokens
- Account linking across multiple providers
- Session management with refresh token rotation
- Device management and fingerprinting
14 OAuth Providers:
- Google, GitHub, Facebook, Discord
- Microsoft, LinkedIn, Slack, Twitch
- Apple Sign In, Twitter/X
- GitLab, Bitbucket
- Custom OIDC provider support
6 MFA Methods:
- TOTP (Time-based One-Time Password)
- SMS verification
- Email codes
- Backup codes
- WebAuthn/FIDO2 (passwordless)
- MFA policies and enforcement
Role-Based Access Control (RBAC):
- Complete role and permission management
- Resource-based permissions (resource:action format)
- User-role assignments with multiple roles
- Role hierarchy and inheritance
- Default roles for new users
- Custom JWT claims for Hasura integration
Auth Hooks:
- Pre-signup, post-signup
- Pre-login, post-login
- MFA verification hooks
- Custom JWT claims injection
- Priority-based hook execution
- Webhook integration for external validation
API Key Management:
- SHA-256 hashed storage
- Scope-based permissions
- One-time display on creation
- Expiration and revocation
- Usage tracking and audit logs
Encrypted Secrets Vault:
- AES-256-CBC encryption at rest
- Automatic key rotation (90-day default)
- Secret versioning and rollback
- Environment separation (dev/staging/prod)
- Secret sync and promotion workflows
- Access auditing for compliance
7 Rate Limiting Strategies:
- Token Bucket (smooth rate limiting)
- Leaky Bucket (consistent throughput)
- Fixed Window (simple time-based)
- Sliding Window (accurate time-based)
- Sliding Log (precise tracking)
- Adaptive (dynamic based on load)
- Burst Protection (traffic spike handling)
Enforcement Levels:
- IP-based rate limiting
- User-based quotas (free/basic/pro/enterprise tiers)
- Endpoint-based rules with regex patterns
- Whitelist/blocklist management
- Automatic cleanup of expired entries
Webhook System:
- HMAC signature verification (SHA-256)
- Async delivery with retries
- Event types: user.created, auth.login, mfa.enabled, etc.
- Custom endpoint management
Device Management:
- Device fingerprinting
- Trusted device feature
- OS and browser detection
- Last seen tracking
Audit Logging:
- Comprehensive event tracking
- Actor, resource, action logging
- Compliance-ready audit trail
- Security event monitoring
Email Templates:
- Welcome emails
- Password reset
- Email verification
- MFA codes
- 5 Sprints: All 100% complete
- 294 Story Points: 100% delivered
- 60+ Files Created: ~14,000 lines of code
- 10 CLI Commands: Complete management interface
- 14 OAuth Providers: Enterprise-ready SSO
- 6 MFA Methods: Multi-layered security
- 7 Rate Limiting Strategies: Production-scale protection
- Integration Tests: Full test coverage
New commands in v0.6.0:
nself auth # Authentication management
nself oauth # OAuth provider configuration
nself mfa # MFA method management
nself roles # Role and permission management
nself vault # Encrypted secrets management
nself rate-limit # Rate limiting configuration
nself webhooks # Webhook management
nself admin # Admin dashboard API
nself hooks # Auth hooks management
nself apikeys # API key management-
Update nself:
brew upgrade nself # macOS # or curl -sSL https://install.nself.org | bash
-
Initialize new authentication:
nself auth init nself roles init
-
Configure OAuth providers (optional):
nself oauth add google nself oauth add github
-
Set up MFA (optional):
nself mfa init nself mfa enable totp -
Initialize secrets vault (optional):
nself vault init nself vault set DATABASE_URL "postgresql://..."
-
Configure rate limiting (optional):
nself rate-limit init nself rate-limit rules add "api.*" 100 60 # 100 req/min
None. This is a feature addition release with no breaking changes to existing functionality.
New tables in v0.6.0:
-
auth.users- User accounts -
auth.sessions- Session management -
auth.oauth_providers- OAuth configuration -
auth.mfa_methods- MFA settings -
auth.roles- Role definitions -
auth.permissions- Permission definitions -
auth.user_roles- User-role assignments -
auth.api_keys- API key management -
secrets.vault- Encrypted secrets -
secrets.encryption_keys- Key rotation -
rate_limit.rules- Rate limit rules -
rate_limit.log- Rate limit tracking -
webhooks.endpoints- Webhook subscriptions -
audit.events- Audit logging
Encryption:
- Passwords: bcrypt with 10 rounds
- Secrets: AES-256-CBC with HMAC-SHA256
- API Keys: SHA-256 hashing
- JWT: RS256 with 4096-bit keys
Token Security:
- Short-lived access tokens (15 minutes)
- Long-lived refresh tokens (30 days)
- Automatic token rotation
- Secure token storage
- PostgreSQL-backed: Scalable to millions of users
- Single-instance ready: Production-ready without Redis
- Efficient rate limiting: O(1) token bucket algorithm
- Indexed queries: Optimized for performance
- Unit Tests: All core modules tested
- Integration Tests: End-to-end workflows validated
- Security Tests: Encryption, hashing, signature verification
- Rate Limit Tests: All 7 strategies validated
The following features are planned for Phase 2:
- Distributed rate limiting (requires Redis cluster)
- Multi-region session replication
- Advanced audit analytics
- Compliance reporting dashboards
brew tap nself-org/nself
brew install nselfcurl -sSL https://install.nself.org | bashnpm install -g nself-clidocker pull nself-org/cli:0.6.0- Documentation: https://github.com/nself-org/cli/wiki
- GitHub: https://github.com/nself-org/cli
- Issues: https://github.com/nself-org/cli/issues
- Discussions: https://github.com/nself-org/cli/discussions
Special thanks to all contributors who made v0.6.0 possible.
nself is source-available software. See LICENSE file for details.
Next Release: v0.7.0 - Phase 2: Advanced Features & Integrations Estimated: Q2 2026
ɳSelf CLI v1.0.9. MIT licensed. Docs CC BY 4.0.
GitHub · Issues · Discussions · nself.org · nself.org/docs
Getting Started
Commands
- Commands, Overview
- Lifecycle: cmd-init · cmd-build · cmd-start · cmd-stop · cmd-restart · cmd-dev
- Monitoring: cmd-status · cmd-logs · cmd-health · cmd-urls · cmd-doctor · cmd-monitor · cmd-alerts · cmd-sentry · cmd-watchdog
- Data: cmd-db · cmd-backup · cmd-dr · cmd-queue · cmd-webhooks
- Config: cmd-config · cmd-service · cmd-env · cmd-promote
- Networking: cmd-ssl · cmd-trust · cmd-dns-setup
- Security: cmd-access · cmd-security · cmd-secrets
- Tenancy: cmd-tenant · cmd-billing
- Plugins: cmd-plugin · cmd-license · cmd-dogfood (extracted, CLI-R11) · cmd-k8s (extracted, CLI-R11) · cmd-encryption (extracted, CLI-R11) · cmd-waf (extracted, CLI-R11) · cmd-federation (extracted, CLI-R11) · cmd-mail (extracted, CLI-R11) · cmd-dlq (extracted, CLI-R11)
- AI: cmd-ai · cmd-claw · cmd-model
- Templates: cmd-template
- Utilities: cmd-exec · cmd-clean · cmd-reset · cmd-update · cmd-upgrade · cmd-version · cmd-admin · cmd-migrate · cmd-migrate-firebase · cmd-migrate-supabase · cmd-completion
Features
- Features, Overview
- Feature-Auth
- Feature-Storage
- Feature-Search
- Feature-Functions
- Feature-Email
- Feature-Monitoring
- Feature-Plugins
- Feature-nClaw, AI Assistant
- Feature-nChat, Messaging
- Feature-nTV, Media Player
- Feature-nFamily, Family Social
- Feature-nCloud, Managed Hosting
- Feature-Memory-Rooms, Knowledge Organization
- Feature-Agent-Dashboard, Agent Metrics
- Feature-Image-Generation, AI Image Generation
Configuration
- Configuration, Overview
- Config-Env-Vars
- Config-Postgres
- Config-Hasura
- Config-Auth
- Config-Nginx
- Config-Optional-Services
- Config-Custom-Services
- Config-System
Plugins (87 + 10 monitoring)
Free (25)
- plugin-backup
- plugin-content-acquisition
- plugin-content-progress
- plugin-cron
- plugin-donorbox
- plugin-feature-flags
- plugin-github
- plugin-github-runner
- plugin-invitations
- plugin-jobs
- plugin-link-preview
- plugin-mdns
- plugin-mlflow
- plugin-monitoring
- plugin-notifications
- plugin-notify
- plugin-paypal
- plugin-search
- plugin-shopify
- plugin-stripe
- plugin-subtitle-manager
- plugin-tokens
- plugin-torrent-manager
- plugin-vpn
- plugin-webhooks
Pro (62)
- plugin-access-controls
- plugin-activity-feed
- plugin-admin-api
- plugin-nself-ai-gateway
- plugin-nself-ai-mcp
- plugin-nself-ai-mcp
- plugin-analytics
- plugin-auth
- plugin-backup-pro
- plugin-bots
- plugin-browser
- plugin-calendar
- plugin-cdn
- plugin-chat
- plugin-claw
- plugin-claw-budget
- plugin-claw-news
- plugin-claw-web
- plugin-cloudflare
- plugin-cms
- plugin-compliance
- plugin-cron-pro
- plugin-ddns
- plugin-devices
- plugin-documents
- plugin-donorbox-pro
- plugin-entitlements
- plugin-epg
- plugin-file-processing
- plugin-game-metadata
- plugin-geocoding
- plugin-geolocation
- plugin-google
- plugin-home
- plugin-idme
- plugin-knowledge-base
- plugin-linkedin
- plugin-livekit
- plugin-media-processing
- plugin-meetings
- plugin-moderation
- plugin-mux
- plugin-notify-pro
- plugin-object-storage
- plugin-observability
- plugin-paypal-pro
- plugin-photos
- plugin-podcast
- plugin-post
- plugin-realtime
- plugin-recording
- plugin-retro-gaming
- plugin-rom-discovery
- plugin-shopify-pro
- plugin-social
- plugin-sports
- plugin-stream-gateway
- plugin-streaming
- plugin-stripe-pro
- plugin-support
- plugin-tmdb
- plugin-voice
- plugin-web3
- plugin-workflows
Planned (26)
plugin-auditplugin-blogplugin-checkoutplugin-commerceplugin-drmplugin-exportplugin-flowplugin-importplugin-ldapplugin-mailgunplugin-mediaplugin-oauth-providersplugin-pagesplugin-postmarkplugin-rate-limitplugin-reportsplugin-samlplugin-schedulerplugin-sendgridplugin-ssoplugin-subscriptionplugin-thumbplugin-transcoderplugin-twilioplugin-wafplugin-watermark
Guides
- Guide-Production-Deployment
- Guide-SSL-Setup
- Guide-Multi-Tenancy
- Guide-Security-Hardening
- Guide-Monitoring-Setup
- Guide-Backup-Restore
- Guide-Custom-Services
- Guide-Migration-from-v1
Architecture
Reference
- API-Reference
- error-codes, Error Codes
Licensing
Security
Brand
Operations
- operations/release-cascade, Release Cascade
- operations/self-healing, Self-Healing Schema
- operations/redis-tuning, Redis Pool Tuning
- operations/meilisearch-warmup, MeiliSearch Warm-Up
- operations/jwt-rotation, JWT Key Rotation
- operations/windows-wsl2-setup, Windows / WSL2 Setup
- operations/gemini-oauth-reauth, Gemini OAuth Reauth
Contributing
Admin
- USER-ACTION-QUEUE, Pending Admin Actions
All commands (52)
- A: cmd-access · cmd-account · cmd-admin
- B: cmd-backup · cmd-build · cmd-bundle
- C: cmd-ci · cmd-clean · cmd-completion · cmd-config
- D: cmd-db · cmd-deploy · cmd-dev · cmd-doctor
- E: cmd-env · cmd-exec
- F: cmd-functions
- G: cmd-generate
- H: cmd-health · cmd-help-topics
- I: cmd-init · cmd-install
- L: cmd-license · cmd-login · cmd-logout · cmd-logs
- M: cmd-man · cmd-mcp · cmd-migrate
- O: cmd-oauth · cmd-ops
- P: cmd-plugin · cmd-promote
- R: cmd-remove · cmd-reset · cmd-restart · cmd-runner
- S: cmd-secrets · cmd-security · cmd-self-heal · cmd-server · cmd-service · cmd-start · cmd-status · cmd-stop
- T: cmd-telemetry · cmd-template · cmd-trust
- U: cmd-update · cmd-urls
- V: cmd-verify-sbom · cmd-version