Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

nex-reports下一步报告

Agent Skill

nex-reports 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,203

周安装

90

GitHub Stars

1

下载量

706
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nex-reports(下一步报告)
来源仓库:https://github.com/nexaiguy/nex-reports
安装命令:
openclaw skills install nex-reports
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install nex-reports

简介

聚合多个 Nex 工具数据的自动化日报生成器与调度中心。

  • 适合需要每日业务简报同步给管理层或客户的场景。
  • 可自定义报告结构与分发渠道。nex-reports 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install nex-reports;依赖其他 Nex 技能数据源。
  • 建议先部署基础数据整理模块再启用汇总功能。

SKILL.md

name
nex-reports
description
Automated report generation and scheduling meta-skill that aggregates data from multiple Nex tools into unified, actionable business briefings for day-to-day decision making. Create custom composite reports combining curated data from nex-healthcheck (infrastructure uptime and service health), nex-crm (sales pipeline status and hot prospects), nex-expenses (spending patterns and budget tracking), nex-deliverables (project progress and overdue items), nex-domains (domain expiry alerts and SSL certificate warnings), and nex-vault (contract expirations and renewal deadlines). Schedule reports to run fully automatically on recurring schedules (daily, weekly, monthly) using standard cron expressions and pre-built convenient presets (DAILY_MORNING at 8am, WEEKLY_MONDAY, WEEKLY_FRIDAY, MONTHLY_FIRST). Generate morning briefings for team standups, weekly summaries for stakeholder reviews, or monthly business reviews for strategic planning in multiple output formats (markdown for email with professional formatting, simple HTML, compact Telegram format with emojis, structured JSON for API integration). Route report delivery via Telegram for instant mobile notifications and team alerts or save generated reports to files for email distribution, client sharing, and documentation archives. Perfect for Belgian agency operators, business owners, and management teams who need daily or weekly snapshots of overall business health without manual data compilation overhead.
version
1.0.0
metadata
clawdbot
emoji
📋
requires
bins
env
primaryEnv
homepage
https://nex-ai.be
files

Nex Reports

Scheduled Report Generator - Create, schedule, and deliver automated reports combining data from multiple Nex tools.

When to Use

Use this skill when the user asks about:

  • Creating automated reports (daily, weekly, monthly)
  • Morning briefings or weekly summaries
  • Scheduling reports for specific times
  • Combining multiple data sources into one report
  • Getting health checks, CRM pipeline, expenses, deliverables in one place
  • Email notifications or Telegram updates
  • Report templates and presets
  • Overdue items, expiring domains, vault alerts in one view
  • Custom automated reporting
  • Report history or viewing past reports

Trigger phrases: "create a report", "morning briefing", "weekly summary", "schedule a report", "automated report", "report briefing", "compile data", "overzicht", "samenvatting", "dagrapport", "wekelijk rapport"

Quick Start

bash setup.sh

This creates the data directory, initializes the database, and checks for nex-* command availability.

Commands

Create a Report

nex-reports create "Monday Morning" \
  --schedule "0 8 * * 1" \
  --modules health,crm,deliverables,domains \
  --output markdown \
  --output-target file

Schedule presets: DAILY_MORNING, DAILY_EVENING, WEEKLY_MONDAY, WEEKLY_FRIDAY, MONTHLY_FIRST

Run a Report

nex-reports run "Monday Morning"
nex-reports run --all

Manage Configs

nex-reports list
nex-reports show "Monday Morning"
nex-reports edit "Monday Morning" --modules health,crm,expenses
nex-reports delete "Monday Morning"

View History

nex-reports history "Monday Morning" --limit 20

Test Modules

nex-reports modules
nex-reports test health

Available Modules

  • EMAIL - Check unread emails via IMAP
  • CALENDAR - Parse ICS calendar file
  • TASKS - Read JSON taskboard file
  • HEALTH - Run nex-healthcheck check
  • CRM - Run nex-crm pipeline
  • EXPENSES - Run nex-expenses summary monthly
  • DELIVERABLES - Run nex-deliverables overdue
  • DOMAINS - Run nex-domains expiring
  • VAULT - Run nex-vault alerts
  • CUSTOM - Run arbitrary shell command

Output Formats

  • markdown - Full markdown report for documents/email
  • html - Simple HTML report
  • telegram - Compact Telegram format with emojis
  • json - JSON structured data

Output Targets

  • file - Save to disk (~/.nex-reports/reports/)
  • telegram - Send to Telegram (requires TELEGRAM_TOKEN and TELEGRAM_CHAT_ID)
  • both - Save and send to Telegram

Configuration

Set via environment variables:

export IMAP_HOST=imap.gmail.com
export IMAP_USER=your.email@gmail.com
export IMAP_PASS=your-app-password
export IMAP_PORT=993

export TELEGRAM_TOKEN=your-bot-token
export TELEGRAM_CHAT_ID=your-chat-id

Data Directory

Reports and database stored in: ~/.nex-reports/

  • reports.db - SQLite database
  • reports/ - Generated report files
  • templates/ - (Reserved for future use)

Examples

Morning briefing combining health, CRM, and deliverables:

nex-reports create "Daily Standup" \
  --schedule "0 9 * * 1-5" \
  --modules health,crm,deliverables \
  --output telegram \
  --output-target telegram

Weekly summary to file (every Friday 5pm):

nex-reports create "Weekly Summary" \
  --schedule WEEKLY_FRIDAY \
  --modules health,crm,expenses,deliverables,domains,vault \
  --output markdown \
  --output-target file

Custom command in report:

nex-reports create "Git Status" \
  --schedule "0 10 * * *" \
  --modules custom \
  --output markdown

View the last run:

nex-reports show "Daily Standup"

Scheduling

Reports are created with cron expressions. Use an external scheduler (systemd timer, crontab, etc.) to execute:

nex-reports run "Daily Standup"

on a schedule.


Nex Reports by Nex AI | nex-ai.be

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.29%
按下载量换算602

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills