ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Community Manager

Build community strategies with engagement metrics and crisis playbooks. Use when scaling communities, tracking KPIs, handling crises.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/bytesagain/community-manager-pro
Or

Community Manager Pro

Multi-purpose utility tool for managing data entries, searching records, and exporting information — all from the command line.

Commands

CommandDescription
community-manager-pro run <input>Execute the main function with the given input
community-manager-pro configShow configuration file path ($DATA_DIR/config.json)
community-manager-pro statusDisplay current system status
community-manager-pro initInitialize the data directory and prepare for first use
community-manager-pro listList all entries stored in the data log
community-manager-pro add <item>Add a new timestamped entry to the data log
community-manager-pro remove <item>Remove a specified entry
community-manager-pro search <term>Search entries by keyword (case-insensitive)
community-manager-pro exportExport all stored data to stdout
community-manager-pro infoShow version number and data directory path
community-manager-pro helpShow help with all available commands
community-manager-pro versionShow current version

Data Storage

  • Default data directory: ~/.local/share/community-manager-pro/
  • Data log: $DATA_DIR/data.log — stores all added entries with dates
  • History log: $DATA_DIR/history.log — timestamped record of every command executed
  • Override the storage location by setting the COMMUNITY_MANAGER_PRO_DIR environment variable

Requirements

  • Bash 4+ (uses set -euo pipefail)
  • No external dependencies, API keys, or network access needed
  • Fully offline and local — your data stays on your machine

When to Use

  1. Quick data logging — Capture notes, ideas, or action items from the terminal with timestamped entries using add
  2. Searching through records — Find specific entries across your log with case-insensitive keyword search via search
  3. Exporting data for reports — Dump all stored entries to stdout with export for piping to other tools or files
  4. Initializing a new project workspace — Run init to set up the data directory and configuration for a fresh start
  5. Checking system readiness — Use status and info to verify the tool is properly configured before scripting

Examples

# Initialize the tool
community-manager-pro init

# Add a new entry
community-manager-pro add "Weekly community sync meeting notes"

# Add another entry
community-manager-pro add "New member onboarding checklist updated"

# List all stored entries
community-manager-pro list

# Search for entries containing a keyword
community-manager-pro search "meeting"

# Export all data
community-manager-pro export > backup.txt

# Check current status
community-manager-pro status

# View version and data location
community-manager-pro info

How It Works

Metadata

Stars3500
Views0
Updated2026-03-27
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-bytesagain-community-manager-pro": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.