webdev-owner-notifications

Sends operational alert notifications to project owners from Manus webdev backends.

1|Updated Jul 17, 2026
One-click install
npx skills add https://github.com/waiyanphyo999/telegram-bot-deploy --skill webdev-owner-notifications-waiyanphyo999
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: webdev-owner-notifications
Source: https://github.com/waiyanphyo999/telegram-bot-deploy/tree/main/skills/webdev-owner-notifications
Command: npx skills add https://github.com/waiyanphyo999/telegram-bot-deploy --skill webdev-owner-notifications-waiyanphyo999

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Backend events like new form submissions or workflow results often go unnoticed by project owners. This Skill provides a built-in notification channel so server-side logic can push operational alerts directly to the Manus project owner without building custom messaging infrastructure. ## Core Features & Use Cases - Server-side helper: Call notifyOwner({ title, content }) from server/_core/notification.ts to push alerts from any backend code path. - tRPC mutation: Reuse the protected trpc.system.notifyOwner mutation from jobs, webhooks, or client code via trpc.system.notifyOwner.useMutation(). - Failure handling: Inspect the boolean return value (true on success, false when the upstream service is unavailable) to decide whether a fallback channel is needed. - Use Case: When a user submits a contact form on your Manus fullstack app, call notifyOwner in the submission handler so the project owner immediately receives the form details as an alert. ## Quick Start Add a call to notifyOwner with a title and content in my form submission handler so the project owner gets 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 project owner in a Manus webdev app?

Call `await notifyOwner({ title, content })` from server code using the helper in `server/_core/notification.ts`. Alternatively, use the protected `trpc.system.notifyOwner` mutation from jobs, webhooks, or the client.

How to trigger owner alerts on new form submissions?

Invoke `notifyOwner({ title, content })` inside your form submission handler on the server, passing the submission details as the content. The alert is pushed to the project owner through the built-in notification channel.

Can I call the notifyOwner mutation from the client side?

Yes, use `trpc.system.notifyOwner.useMutation()` on the client since it is exposed as a protected tRPC mutation. It can also be reused from background jobs and webhooks on the server.

What happens when the owner notification service is unavailable?

The `notifyOwner` helper returns `false` when the upstream service is temporarily unavailable and `true` on success. Check this boolean return value to decide whether you need a fallback notification channel.

Should I use notifyOwner for end-user messaging?

No, this channel is reserved for owner-facing operational alerts such as form submissions and workflow results. End-user messaging should flow through your app-specific systems instead.