From mbg-admin
Publish a report to your cloud dashboard on mybusinessgenie.ai. Use this skill when a scheduled task completes, when the user says "publish this", "send to dashboard", "add to my dashboard", "share to cloud", or when any skill produces output that should be visible on the web dashboard as a report card. Automatically pairs with Goals Pulse and Update Blueprint to push their output to the dashboard.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mbg-admin:publish-dashboard [task name] [content to publish][task name] [content to publish]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Publish AI-generated reports from scheduled skill runs to the client's cloud dashboard on mybusinessgenie.ai. Each report appears as a card showing the latest run of that task. Previous runs are automatically archived.
Publish AI-generated reports from scheduled skill runs to the client's cloud dashboard on mybusinessgenie.ai. Each report appears as a card showing the latest run of that task. Previous runs are automatically archived.
Look at the current conversation for publishable content:
Before publishing, retrieve the agent's communication style:
mcp__cloud-dashboard__get_agent_persona()
This returns the agent's name and persona description. Apply this persona to shape the tone, style, and formatting of the report content. If no persona is configured, use your default style.
Call the mcp__cloud-dashboard__publish_report MCP tool:
mcp__cloud-dashboard__publish_report(
taskName: "kebab-case-task-id",
taskLabel: "Human-Readable Task Name",
category: "briefing|email|social|real-estate|crm|research|custom",
content: "full markdown report content",
summary: "1-2 sentence preview for the card",
actionRequired: true|false,
actionCount: 0,
tags: ["relevant", "tags"],
links: [{ label: "View Details", url: "https://..." }],
ttlDays: 30
)
After publishing, confirm:
IMPORTANT: Always use the exact taskName below. Using different names for the same task creates duplicate cards on the dashboard.
| Skill / Task | taskName | category |
|---|---|---|
| Goals Pulse (weekly check-in) | goals-pulse | briefing |
| Update Blueprint (platform update) | update-blueprint | custom |
| Morning Briefing / Daily Brief | morning-briefing | briefing |
| Email Digest / Inbox Triage | email-digest | email |
| Social Trends / Content Calendar | social-trends | social |
| Lead Pipeline / CRM New Leads | lead-pipeline | crm |
| Deal Analysis / Property Research | deal-analysis | real-estate |
| Market Research / Competitor Analysis | market-research | research |
| Financial Snapshot / KPI Dashboard | financial-snapshot | research |
| Generic / Custom output | custom-report | custom |
When Goals Pulse completes, publish its output like this:
mcp__cloud-dashboard__publish_report(
taskName: "goals-pulse",
taskLabel: "Goals Pulse",
category: "briefing",
content: "<full pulse check output>",
summary: "<one sentence: alignment score + key insight from the session>",
actionRequired: <true if any priorities are at risk>,
actionCount: <number of at-risk priorities>,
tags: ["goals", "weekly-check-in"]
)
When Update Blueprint completes, publish its output like this:
mcp__cloud-dashboard__publish_report(
taskName: "update-blueprint",
taskLabel: "Platform Update",
category: "custom",
content: "<full update summary>",
summary: "<one sentence: version installed or 'already on latest'>",
actionRequired: false,
actionCount: 0,
tags: ["platform", "update"]
)
If the report contains action items:
actionRequired: trueactionCount to the number of itemsWhen a scheduled task runs Goals Pulse or Update Blueprint, publish its output automatically at the end of the skill run. The previous run's card is automatically archived — only the latest shows on the dashboard.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub owenmecham/mbg --plugin mbg-admin