Nex MeetCost

v1.0.0

Meeting cost calculator. See what meetings actually cost in billable time. Per-attendee rates by role, recurring meeting projections (weekly/monthly/yearly),...

0· 95·0 current·0 all-time
byNex AI@nexaiguy

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for nexaiguy/nex-meetcost.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Nex MeetCost" (nexaiguy/nex-meetcost) from ClawHub.
Skill page: https://clawhub.ai/nexaiguy/nex-meetcost
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install nex-meetcost

ClawHub CLI

Package manager switcher

npx clawhub@latest install nex-meetcost
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the code and files: CLI to calculate and log meeting costs, role-based rates, recurring projections, local SQLite storage. No unexpected services, cloud APIs, or unrelated capabilities are requested.
Instruction Scope
SKILL.md instructs running setup.sh and using the CLI commands; the runtime instructions and examples align with the code. All runtime actions are local (DB creation, reads/writes under ~/.nex-meetcost). No instructions to read unrelated system files or send data externally.
Install Mechanism
There is no platform install spec, but a setup.sh is included and SKILL.md instructs running it. setup.sh initializes the DB and writes a CLI wrapper to ~/.local/bin; it does not download external code or fetch remote resources. Because an included script will write files and create an executable wrapper, users should inspect it before running.
Credentials
The skill requires no credentials or special environment variables. The code optionally honors NEX_MEETCOST_DIR for data location, which is reasonable. No secrets/TOKEN/KEY env vars are requested or used.
Persistence & Privilege
The setup script creates persistent files in the user's home (~/.nex-meetcost) and installs a wrapper into ~/.local/bin (user-level persistence). always:false and no system-wide config changes are performed. This is normal for a CLI tool but worth noting.
Assessment
This skill is internally coherent and appears benign, but do these checks before installing: 1) Inspect setup.sh (it will create ~/.nex-meetcost, ~/.nex-meetcost/exports and a wrapper in ~/.local/bin and run the bundled Python to initialize the DB). 2) Confirm you are comfortable with a user-level executable being created (~/.local/bin) and add that to PATH if needed. 3) Note the licensing inconsistency: SKILL.md/ClawHub claim MIT-0 while LICENSE.txt/README reference AGPL-3.0 and a commercial-license contact — clarify license terms for your intended use. 4) Optionally verify the bundled Python files yourself; they perform only local DB I/O and formatting, and there are no network calls or telemetry in the code. If you are comfortable with those points, installation risk is low.

Like a lobster shell, security has layers — review code before you run it.

latestvk975f8qv7pw7zqafyjcrvmtdds84bef0
95downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

Nex MeetCost

Meeting cost calculator. See what your meetings actually cost based on who attends and their hourly rates. Track recurring meetings and project monthly/yearly costs.

Requirements

  • Python 3.8+
  • No external dependencies (stdlib only)
  • SQLite (built into Python)

Setup

bash setup.sh

Commands

CommandWhat it does
calcCalculate cost (optional save)
logLog a meeting with cost
showShow meeting details
listList logged meetings
ratesShow default hourly rates
statsCost statistics and breakdowns
exportExport to JSON or CSV

Attendee Format

name:role:rate separated by commas. Role and rate are optional.

  • Kevin:developer uses the default developer rate
  • Kevin:developer:95 uses a custom rate
  • Kevin uses the default "other" rate

Tone Guide

Quick calculation:

"What does a 1-hour meeting with 3 developers and a manager cost?"

nex-meetcost calc 60 -a "Kevin:developer,Sarah:developer,Thomas:developer,Lisa:manager"

Log a meeting:

"Log today's 30-minute standup"

nex-meetcost log "Daily standup" 30 -a "Kevin:developer,Sarah:designer,Thomas:developer" --type standup --recurring 5

See what recurring meetings cost per year:

"How much do our recurring meetings cost?"

nex-meetcost stats

Storage

All data stored locally in ~/.nex-meetcost/meetcost.db (SQLite). No cloud, no telemetry.

License

MIT-0 on ClawHub (free for any use). AGPL-3.0 on GitHub (commercial licenses via info@nex-ai.be).

Comments

Loading comments...