Bundles group related pro plugins into a single purchase. Each paid bundle costs
$0.99/mo or $9.99/yr. ɳSelf+ ($3.99/mo or $39.99/yr) includes all six paid bundles.
Activate a bundle by setting a license key:
nself license set<key>
nself bundle list
List all available bundles with pricing and plugin counts.
nself bundle list [--installed] [--json]
Flags
Flag
Description
--installed
Show only bundles with at least one active plugin on this machine
--json
Output a machine-readable JSON array (used by the admin/ marketplace UI)
Examples
# Show all bundles
nself bundle list
# Show only bundles with plugins already installed
nself bundle list --installed
# Machine-readable output for scripting
nself bundle list --json
Output columns (table mode)
Column
Description
Slug
CLI identifier used in bundle info / install / remove
Name
Display name (ɳClaw, ɳChat, etc.)
Price
$0.99/mo or $9.99/yr (paid); FREE (ɳTask); $3.99/mo (ɳSelf+)
Plugin count
Number of plugins in the bundle
nself bundle info <name>
Show full details for one bundle: plugin membership, pricing, and your current
license status.
Output a machine-readable JSON object with all fields
Output fields (table mode)
Bundle / Price: display name and pricing tier
License: active, inactive, or not-set based on local license cache (no network call)
Plugins: full member list with installed marker (✓)
Install: one-line hint to activate and install
JSON output fields
Field
Type
Description
slug
string
CLI identifier
name
string
Display name
price
string
Human-readable price
description
string
Optional note (omitted when empty)
plugins
array
Plugin slug list
plugin_count
int
Number of plugins
license_status
string
Current license status
install_hint
string
One-line install instruction
Examples
# Human-readable output
nself bundle info nclaw
# Machine-readable JSON
nself bundle info nclaw --json
# Unknown bundle exits 1 and suggests nself bundle list
nself bundle info bad-name
Exit codes
Code
Meaning
0
Success
1
Bundle not found — run nself bundle list for valid names
nself bundle install <name>
Install every plugin in a bundle in a single transaction. License validation runs
for each plugin before any filesystem change. On failure, all plugins installed in
this invocation are rolled back.