-
-
Notifications
You must be signed in to change notification settings - Fork 2
v0.4.8
Release Date: January 24, 2026 Status: Released
v0.4.8 "Plugin System" introduces a powerful extensibility framework for integrating third-party services:
- Plugin Architecture - Install, update, and manage plugins from a central registry
- Three Launch Plugins - Stripe, GitHub, and Shopify integrations ready to use
- Database Schemas - Each plugin creates prefixed tables for synced data
- Webhook Handlers - Real-time event processing with signature verification
- CLI Actions - Full command-line interface for managing plugin data
Manage third-party integrations with a unified plugin system:
# List available plugins
nself plugin list # All plugins
nself plugin list --installed # Only installed
nself plugin list --category billing # Filter by category
# Install and remove
nself plugin install stripe # Install from registry
nself plugin install ./my-plugin # Install local plugin
nself plugin remove stripe # Remove plugin
nself plugin remove stripe --keep-data # Keep database tables
# Update
nself plugin update stripe # Update specific plugin
nself plugin update --all # Update all installed
# Status
nself plugin status # All plugins status
nself plugin status stripe # Specific plugin healthEach plugin provides its own actions accessible via nself plugin <name> <action>:
# Stripe Plugin
nself plugin stripe sync # Sync all data from Stripe
nself plugin stripe customers list # List synced customers
nself plugin stripe subscriptions list # View subscriptions
nself plugin stripe invoices list # View invoices
nself plugin stripe webhook list # View webhook events
# GitHub Plugin
nself plugin github sync # Sync repositories
nself plugin github repos list # List repositories
nself plugin github issues list # View issues
nself plugin github prs list # View pull requests
nself plugin github workflows list # View GitHub Actions runs
# Shopify Plugin
nself plugin shopify sync # Sync store data
nself plugin shopify products list # List products
nself plugin shopify orders list # View orders
nself plugin shopify customers list # View customersSync payment processing data from Stripe:
| Table | Description |
|---|---|
stripe_customers |
Customer records |
stripe_products |
Product catalog |
stripe_prices |
Pricing tiers |
stripe_subscriptions |
Active subscriptions |
stripe_invoices |
Invoice history |
stripe_payment_intents |
Payment attempts |
stripe_payment_methods |
Saved payment methods |
stripe_webhook_events |
Webhook event log |
Configuration:
STRIPE_API_KEY=sk_test_PLACEHOLDER # Required
STRIPE_WEBHOOK_SECRET=whsec_xxxxx # For webhooksSync repository and CI data from GitHub:
| Table | Description |
|---|---|
github_repositories |
Repository metadata |
github_issues |
Issues with labels |
github_pull_requests |
PRs with merge info |
github_commits |
Commit history |
github_releases |
Release tags |
github_workflow_runs |
GitHub Actions runs |
github_deployments |
Deployment status |
github_webhook_events |
Webhook event log |
Configuration:
GITHUB_TOKEN=ghp_xxxxx # Required (PAT)
GITHUB_WEBHOOK_SECRET=xxxxx # For webhooks
GITHUB_ORG=myorg # Or GITHUB_REPOS=owner/repoSync store data from Shopify:
| Table | Description |
|---|---|
shopify_shops |
Store metadata |
shopify_products |
Product catalog |
shopify_variants |
Product variants |
shopify_collections |
Collections |
shopify_customers |
Customer data |
shopify_orders |
Order history |
shopify_order_items |
Line items |
shopify_inventory |
Inventory levels |
shopify_webhook_events |
Webhook event log |
Configuration:
SHOPIFY_STORE=your-store # Required
SHOPIFY_ACCESS_TOKEN=shpat_xxxxx # Required
SHOPIFY_WEBHOOK_SECRET=xxxxx # For webhooksInstalled plugins are stored in ~/.nself/plugins/:
~/.nself/plugins/
├── _shared/ # Shared utilities
│ ├── plugin-utils.sh
│ ├── schema-sync.sh
│ └── webhook-handler.sh
├── stripe/
│ ├── plugin.json # Plugin manifest
│ ├── install.sh
│ ├── uninstall.sh
│ ├── schema/tables.sql
│ ├── actions/
│ │ ├── sync.sh
│ │ ├── customers.sh
│ │ └── webhook.sh
│ └── webhooks/
│ ├── handler.sh
│ └── events/
└── ...
{
"name": "stripe",
"version": "1.0.0",
"description": "Stripe payment processing integration",
"category": "billing",
"minNselfVersion": "0.4.8",
"envVars": {
"required": ["STRIPE_API_KEY"],
"optional": ["STRIPE_WEBHOOK_SECRET"]
},
"tables": ["stripe_customers", "stripe_products", ...],
"webhooks": ["customer.created", "invoice.paid", ...],
"actions": {
"sync": "Sync all Stripe data",
"customers": "Manage customers"
}
}Plugins receive webhooks at standardized endpoints:
https://your-domain.com/webhooks/stripe
https://your-domain.com/webhooks/github
https://your-domain.com/webhooks/shopify
All webhooks are verified using HMAC-SHA256 signatures before processing.
nself uses a two-tier registry system for maximum reliability:
Primary: plugins.nself.org
- Cloudflare Worker-based API
- KV storage for caching
- Sub-second response times globally
- Automatic updates via GitHub Actions
Fallback: GitHub
- Raw file access from nself-plugins repo
- Used when primary is unavailable
- Stale cache as last resort
https://plugins.nself.org/registry.json # Full registry
https://plugins.nself.org/plugins/:name # Plugin info
https://plugins.nself.org/plugins/:name/:v # Specific version
https://plugins.nself.org/health # Health check
https://plugins.nself.org/categories # Category list
# Refresh registry cache
nself plugin refresh
# Check for plugin updates
nself plugin updates
# Show registry metadata
nself plugin refresh --infoRegistry data is cached locally:
- Cache TTL: 5 minutes (configurable via
NSELF_REGISTRY_CACHE_TTL) - Cache directory:
~/.nself/cache/plugins/ - Stale cache used when registry unavailable
| Variable | Description | Default |
|---|---|---|
NSELF_PLUGIN_DIR |
Plugin installation directory | ~/.nself/plugins |
NSELF_PLUGIN_REGISTRY |
Custom registry URL | Official registry |
See individual plugin documentation for required environment variables.
Tab completion now supports plugin commands:
nself plugin <TAB> # list, install, remove, update, status, stripe, github, shopify
nself plugin stripe <TAB> # sync, customers, subscriptions, invoices, webhookUpdate completions:
nself completion install bash
nself completion install zshNone. All existing commands remain functional.
All plugin scripts are:
- Bash 3.2 compatible (works on macOS default)
-
POSIX-compliant output (using
printf, notecho -e) - Platform-aware stat commands with proper detection
Plugins use the shared database utilities:
-
plugin_db_query()- Execute SQL via Docker or local psql -
plugin_db_exec_file()- Execute SQL files -
plugin_table_exists()- Check for table existence
Each plugin implements rate limiting:
- Stripe: 0.5s delay between requests
- GitHub: 0.1s delay (respects X-RateLimit headers)
- Shopify: 0.5s delay (2 req/sec limit)
# Update nself
nself update
# Verify version
nself version
# Install a plugin
nself plugin install stripe- v0.4.9 - Extensive Polish & Testing
- v0.5.0 - Production Ready LTS + nself-admin v0.1
For detailed documentation on each command, see the Commands Reference.
ɳ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