tasks-creator

Create and update Daycare tasks and permanent agents via Python orchestration.

14|2|Updated Jan 30, 2026
One-click install
npx skills add https://github.com/ex3ndr/daycare --skill tasks-creator
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: tasks-creator
Source: https://github.com/ex3ndr/daycare/tree/main/packages/daycare/sources/skills/autonomous-ai-agents/tasks-creator
Command: npx skills add https://github.com/ex3ndr/daycare --skill tasks-creator

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the creation and management of automated workflows and persistent agents within the Daycare runtime, reducing the need for complex manual Python scripting.

Core Features & Use Cases

  • Task Automation: Define and manage recurring or event-driven tasks using cron or webhooks.
  • Permanent Agent Creation: Set up and configure dedicated agents with stable identities and system prompts.
  • Robust Orchestration: Ensures tasks are deterministic, idempotent, and performant with explicit parameter schemas and skip() behavior.
  • Use Case: Set up a daily report generation task that runs automatically at 8 AM, fetches data from an external API, processes it, and sends a summary to a Slack channel.

Quick Start

Use the tasks-creator skill to create a new permanent agent named 'report-generator' with a system prompt to summarize daily metrics.

Frequently Asked Questions about tasks-creator

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

FAQPage Schema
How do I automate recurring tasks with cron jobs and webhooks in Daycare?

Automate recurring tasks in Daycare by defining cron schedules or webhook triggers using explicit Python orchestration and parameter schemas, ensuring deterministic and idempotent background workflows.

How does permanent agent creation work for scheduled report generation?

Permanent agent creation configures dedicated agents with stable identities and system prompts using create_permanent_agent, enabling resilient background workflows like scheduled daily report generation and processing.

Can I use Python orchestration to manage event-driven task automation?

Python orchestration manages event-driven task automation by leveraging explicit tool schemas and functions like task_create and task_trigger_add, handling webhook triggers and recurring checks robustly.

What is the best way to update and manage resilient background workflows?

Manage resilient background workflows by using task_update and explicit skip() behavior within Python orchestration, ensuring tasks remain idempotent and performant across scheduled executions.

Does Daycare task management support webhook automation for external API data fetching?

Daycare task management supports webhook automation for external API data fetching, enabling tasks to trigger automatically, process fetched data, and send summaries to configured endpoints.

Why are explicit parameter schemas needed for cron job task automation?

Explicit parameter schemas are needed for cron job task automation to ensure deterministic execution and idempotency, preventing duplicate processing and maintaining robust orchestration across recurring triggers.