webdev-owner-notifications

Push operational alert notifications to Manus project owners via tRPC.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill webdev-owner-notifications-anderhonorato
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: webdev-owner-notifications
Source: https://github.com/AnderHonorato/Mem-rias-IA---Infinity/tree/main/Manus/Skills/webdev-owner-notifications
Command: npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill webdev-owner-notifications-anderhonorato

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Backend events in Manus webdev fullstack and mobile-app projects often need to reach the project owner, but wiring a notification channel from scratch is repetitive. This Skill shows how to use the built-in owner notification helper so operational updates reach the owner without custom infrastructure. ## Core Features & Use Cases - Built-in Helper: Uses the pre-shipped notifyOwner({ title, content }) function in server/_core/notification.ts to send alerts. - tRPC Mutation: Exposes a protected trpc.system.notifyOwner mutation callable from jobs, webhooks, or the client via trpc.system.notifyOwner.useMutation(). - Failure Handling: Returns a boolean (true on success, false when the upstream service is unavailable) so you can decide on a fallback channel. - Use Case: When a user submits a contact form or survey, call notifyOwner from the server handler so the project owner immediately receives the submission details. ## Quick Start Add an owner notification to my form submission endpoint using the notifyOwner helper so I get alerted on every new submission.

Frequently Asked Questions about webdev-owner-notifications

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

FAQPage Schema
How do I send a notification to the Manus project owner from my server code?

Call the built-in notifyOwner helper from server/_core/notification.ts with a title and content object, for example await notifyOwner({ title, content }). It returns true on success and false if the upstream service is temporarily unavailable.

How to trigger owner notifications from a webhook or background job?

Reuse the provided protected tRPC mutation trpc.system.notifyOwner from jobs or webhooks, or call it from the client with trpc.system.notifyOwner.useMutation(). Both paths route through the same notification helper.

Which Manus project templates support owner notifications?

The notification helper ships with Manus webdev fullstack (web-db-user) and mobile-app (Expo) project templates. The helper lives in server/_core/notification.ts and is exposed through the system.notifyOwner tRPC procedure.

What happens when the owner notification service is unavailable?

The notifyOwner helper returns false when the upstream notification service is temporarily unavailable. Check the boolean return value and implement a fallback channel, such as logging or retrying, when it returns false.

Should I use notifyOwner to message end users of my app?

No, this channel is reserved for owner-facing operational alerts like form submissions or workflow results. End-user messaging should flow through your own app-specific systems such as email, SMS, or in-app notifications.