onboard

Validates Aeon fork setup and sends the checklist to configured notification channels.

Updated May 25, 2026
One-click install
npx skills add https://github.com/Cbowcrptex/CBOWCRYPTEX --skill onboard-cbowcrptex
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: onboard
Source: https://github.com/Cbowcrptex/CBOWCRYPTEX/tree/main/skills/onboard
Command: npx skills add https://github.com/Cbowcrptex/CBOWCRYPTEX --skill onboard-cbowcrptex

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After forking the Aeon agent repo, operators have no quick way to confirm that secrets, workflows, and notification channels are correctly configured. This Skill runs the full setup validation and delivers a pass/warn/fail checklist with exact fix commands to Telegram, Discord, Slack, or Email. ## Core Features & Use Cases - One-shot setup validation: Runs the ./onboard CLI, parses its JSON output, and converts every failing check into a notification containing the exact command that fixes it. - Silent scheduled audits: Supports a --silent-on-pass mode for nightly cron runs so operators are only notified when something breaks, such as a rotated secret or dead webhook. - Trend tracking and logging: Appends each run's verdict to memory/logs/ and memory/topics/onboard-history.md so setup drift can be spotted over time. - Use Case: You just forked Aeon and set your secrets. Trigger the workflow and receive a single message telling you whether the agent will run on its next cron tick, plus the exact gh secret set commands for anything missing. ## Quick Start Run the onboard skill to validate my Aeon fork setup and send the checklist to my configured notification channel.

Frequently Asked Questions about onboard

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify my Aeon fork is set up correctly?▼

Run the onboard skill manually via ./onboard --remote or trigger the workflow in GitHub Actions. It executes every setup check and sends a checklist with pass, warning, and failure statuses plus exact fix commands to your configured notification channel.

How do I run setup checks without getting notified when everything passes?▼

Set the skill's var parameter to --silent-on-pass. When all checks pass with zero warnings, the run logs ONBOARD_OK_SILENT and skips the notification, which is useful for nightly cron self-audits.

What happens if the onboard CLI is missing from the repo?▼

The skill logs ONBOARD_MISSING_CLI and stops without sending any notification. This indicates the operator has not synced the latest files from the upstream Aeon repository.

Does the onboard skill fix configuration problems automatically?▼

No, the skill is read-only by design. It suggests commands like gh secret set or chmod in the notification, but never executes them, keeping the operator in control of all repo and secret changes.

Why did I not receive a notification after running the setup check?▼

Either the run used --silent-on-pass with all checks passing, or no notification channel is configured. In the latter case the checklist itself flags the missing channel as a failing check, and the message body is written to articles/ for review.