subscription-manager
FeaturedCreate 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.
AI & Automation 667 stars
122 forks Updated today Apache-2.0
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Subscription Task Manager
You now have access to subscription management tools. Use them to create scheduled, recurring, or periodic tasks for the user.
## When to Use
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", "check this next Friday"
5. **Any automated recurring task** - anything that needs to run on a schedule
## Available Tools
### preview_subscription
**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 name
- `trigger_type` (string): `"cron"`, `"interval"`, or `"one_time"`
- `prompt_template` (string): The prompt to execute on each run
- `cron_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 datetime
- `preserve_history` (boolean): Whether to keep conversation context across runs
- `expiration_type` + `expiration_fixed_date`/`expiration_duration_days`: Optional expiration
**Workflow:**
1. User: "remind m...
Details
- Author
- wecode-ai
- Repository
- wecode-ai/Wegent
- Created
- 6 months ago
- Last Updated
- today
- Language
- Python
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
cron
Schedule reminders and recurring tasks.
46,322 Updated today
HKUDS AI & Automation Solid
cron
Schedule reminders and recurring tasks.
78 Updated today
MemTensor AI & Automation Solid
schedule
Create a scheduled task that can be run on demand or automatically on an interval. Use when the user says 'schedule X', 'remind me in N minutes', 'every weekday at 9am', or wants to convert a session task into a recurring/one-shot cron job. Outputs a create_scheduled_task tool call with cronExpression OR fireAt fields filled correctly.
3 Updated today
0xUrsanomics