Best for
- Recurring reminders - "remind me every morning", "notify me weekly"
- Periodic reports - "send me a daily summary", "generate weekly analytics"
- Scheduled checks - "check status every hour", "monitor every 30 minutes"
wecode-ai/Wegent/backend/init_data/skills/subscription-manager/SKILL.md
Create and manage scheduled subscription tasks. Use when the user wants to set up recurring reminders, periodic reports, scheduled checks, or any automated tasks that run on a schedule. Supports cron expressions, fixed intervals, and one-time executions.
Decision brief
You now have access to subscription management tools. Use them to create scheduled, recurring, or periodic tasks for the user.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/wecode-ai/Wegent --skill "backend/init_data/skills/subscription-manager"Inspect the Agent Skill "subscription-manager" from https://github.com/wecode-ai/Wegent/blob/aa89ef88ea199e10f364827eaedf8cd7c9bd1157/backend/init_data/skills/subscription-manager/SKILL.md at commit aa89ef88ea199e10f364827eaedf8cd7c9bd1157. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
1. Recurring reminders - "remind me every morning", "notify me weekly" 2. Periodic reports - "send me a daily summary", "generate weekly analytics" 3. Scheduled checks - "check status every hour", "monitor every 30 minutes" 4. One-time future tasks - "remind me tomorrow at 3pm",…
ALWAYS call this when the user mentions scheduling intent.
ALWAYS call this when the user mentions scheduling intent.
1. 🚫 NEVER auto-create subscription - After calling previewsubscription, you must wait for user to click the "Confirm" button in the preview card or explicitly send a confirmation message. Do NOT auto-create the subscription after preview. 2. ONLY call createsubscription when u…
Review the “Examples” section in the pinned source before continuing.
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 90/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 713 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
You now have access to subscription management tools. Use them to create scheduled, recurring, or periodic tasks for the user.
ALWAYS call this when the user mentions scheduling intent.
Generates a preview of the subscription configuration without creating it. The preview is displayed as an interactive block card in the UI with "Confirm" and "Cancel" buttons.
Key Parameters:
display_name (string): Human-readable task nametrigger_type (string): "cron", "interval", or "one_time"prompt_template (string): The prompt to execute on each runcron_expression (string): For cron type, e.g., "0 9 * * *" (daily at 9am)interval_value + interval_unit: For interval type, e.g., 30 + "minutes"execute_at (string): For one_time type, ISO format datetimepreserve_history (boolean): Whether to keep conversation context across runsexpiration_type + expiration_fixed_date/expiration_duration_days: Optional expirationWorkflow:
preview_subscription with appropriate parameterscreate_subscription with the same parameters to create the subscriptionIMPORTANT:
create_subscription with the same parameterspreview_subscription, you must wait for user to click the "Confirm" button in the preview card or explicitly send a confirmation message. Do NOT auto-create the subscription after preview.create_subscription when user explicitly confirms via message - If user sends "确认" or "创建" after preview, then call create_subscription with the same parameters to actually create the subscription. If user clicks the Confirm button in UI, frontend handles creation automatically - you do NOT need to call create_subscription.preserve_history: true for tasks needing context continuity (daily reports, monitoring)preserve_history: false for independent tasks (reminders, checks)preview_subscription(
display_name="Daily Morning Water Reminder",
trigger_type="cron",
cron_expression="0 9 * * *",
prompt_template="Remind me to drink a glass of water to start the day healthy!",
preserve_history=false
)
preview_subscription(
display_name="Weekly Project Summary",
trigger_type="cron",
cron_expression="0 18 * * 5",
prompt_template="Generate a weekly summary of project progress, blockers, and next week's priorities.",
preserve_history=true,
history_message_count=20
)
preview_subscription(
display_name="Server Status Monitor",
trigger_type="interval",
interval_value=30,
interval_unit="minutes",
prompt_template="Check server CPU and memory usage. Alert if CPU > 80% or memory > 90%.",
preserve_history=false
)
preview_subscription(
display_name="Deployment Reminder",
trigger_type="one_time",
execute_at="2025-04-15T14:00:00",
prompt_template="Remind me to deploy the new feature to production.",
preserve_history=false
)
preview_subscription(
display_name="Trial Monitoring",
trigger_type="interval",
interval_value=1,
interval_unit="days",
prompt_template="Check trial account status and send daily summary.",
expiration_type="duration_days",
expiration_duration_days=30
)
preview_subscription returns:
{
"__silent_exit__": true,
"reason": "subscription_preview block displayed; waiting for user confirmation",
"preview_id": "preview_abc123",
"execution_id": "exec_xyz789"
}
The frontend will display an interactive preview block card with Confirm/Cancel buttons.
User confirmation handling:
create_subscription with the same parameters to create the subscriptionFrequently asked questions
You now have access to subscription management tools. Use them to create scheduled, recurring, or periodic tasks for the user.
The source record exposes this install command: npx skills add https://github.com/wecode-ai/Wegent --skill "backend/init_data/skills/subscription-manager". Inspect the command and pinned source before running it.
Alternatives
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
prowler-cloud/prowler
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance
brucesongs/kali-claw
Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.