Add-ons are standalone WordPress plugins that extend the capabilities of the Cointacted Social Terminal.
They behave like traditional plugins, but integrate directly into the terminalβs interface, command system, and output engine.
They allow you to add:
- new commands
- new command groups
- new features
- backend integrations
- UI enhancements
- Web3 capabilities
- gamification logic
- custom REST endpoints
- admin settings panels
- analytics or automation
The core Cointacted Social Terminal remains lightweight.
All heavy or feature-rich functionality is added through optional add-ons.
πΉ Why Add-Ons Instead of One Big Plugin? #
The architecture is intentionally modular because:
β It keeps the core plugin extremely fast #
β Keeps WordPress.org submission clean #
β Allows optional features (you activate only what you need) #
β Makes future integrations easy #
β Enables premium extensions #
β Allows third-party developers to create their own command packs #
The result is a terminal ecosystem, not a single plugin trying to do everything.
πΉ How Add-Ons Work #
Every add-on:
- Is installed like a normal WordPress plugin
- Depends on the core Social Terminal
- Loads its own JavaScript and/or CSS
- Registers custom commands inside the terminal
- Optionally adds WordPress admin settings
- Optionally integrates with REST API or Web3
- Shows new commands in the terminalβs help system
This means an add-on can add:
> reward
> walletclaim
> userstats
> chaininfo
> buddies
Or anything else the developer designs.
πΉ Examples of What Add-Ons Can Do #
β Add new commands #
Example:
fortune
tasklist
rewards
xp
profile
β Add new command groups #
Such as:
- SOCIAL
- WALLET
- EVM
- SOLANA
- STATS
- ADMIN-TOOLS
β Integrate third-party plugins #
Such as:
- BuddyBoss
- FluentCommunity
- myCred
- GamiPress
- SureDash
β Add Smart Contract / Web3 logic #
Wallet connection, signatures, claims β all belong inside add-ons, not core.
β Add AI-powered commands #
Chat actions, generation tools, etc.
β Add customization features #
Themes, cursor skins, backgrounds.
πΉ Core Plugin vs Add-On: Whatβs the Difference? #
| Feature | Core Plugin | Add-Ons |
|---|---|---|
| Base terminal UI | β | β |
| Input, output, cursor, history | β | β |
| Help system | β | β |
| Built-in commands | β | β |
| Wallet awareness (read-only) | β | β |
| New commands | β | β |
| Web3 actions (RPC, signing) | β | β |
| Points, rewards, social mining | β | β |
| Community plugin integrations | β | β |
| Theme packs, custom UI | β | β |
| Admin settings for extension | β | β |
The core stays stable.
Add-ons bring the magic on top.
πΉ Benefits of Add-Ons #
π§© Modular #
Install only the features you need.
π Lightweight #
Core remains minimal and fast.
π Secure #
No unnecessary Web3 or backend logic in the core.
π¨βπ» Developer-Friendly #
3rd parties can publish their own extensions.
πΌ Premium Ready #
Sell advanced add-ons without touching the core.
πΉ Who Can Build Add-Ons? #
Anyone who can write:
- Basic JavaScript
- Basic WordPress PHP
- Optional REST/API logic
The terminalβs architecture is intentionally simple.
Developers can extend it without modifying core files.
πΉ When Should You Use an Add-On? #
Use an add-on if:
- You need extra commands
- You need to integrate external APIs
- You want admin settings
- You want Web3 features
- You want additional groups in
help - You want to integrate 3rd-party plugins (BuddyBoss, myCred, etc.)
- You want to build premium extensions
π― Summary #
Add-ons allow the Cointacted Social Terminal to grow into a full platform, not just a plugin.
They:
- install like normal plugins
- integrate seamlessly
- register custom commands
- create new features
- connect to APIs, blockchains, communities
- stay fully isolated and safe
This article gives the high-level overview β the next ones explain how to install them and how they work internally.