daily-task-creator

Create date-based daily task files in the .tmp directory.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/atman-33/skills --skill daily-task-creator
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: daily-task-creator
Source: https://github.com/atman-33/skills/tree/main/skills/daily-task-creator
Command: npx skills add https://github.com/atman-33/skills --skill daily-task-creator

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the creation of daily task files in the .tmp directory, eliminating manual naming and entry errors, and ensuring consistency.

Core Features & Use Cases

  • Automatic daily task file generation with date-based naming.
  • Per-day sequence to avoid filename collisions across tasks.
  • Simple Python-based automation that integrates into daily workflows (e.g., task logging, progress tracking).

Quick Start

To create a new task file, run the included Python script: python3 {path}/scripts/create_task.py

Frequently Asked Questions about daily-task-creator

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

FAQPage Schema
How do I automate daily task file creation with sequential date-based naming?

To automate daily task file creation, this Skill uses a Python script to compute the date-based sequence and generates a task-YYYYMMDD-N.md file in the .tmp directory. It eliminates manual naming errors by automatically incrementing the sequence number for each daily task file.

What's the best way to generate sequential task files for daily routines in Python?

The best way to generate sequential task files for daily routines is running the included Python script. It creates the .tmp directory if it is missing and outputs a sequentially named task-YYYYMMDD-N.md file, ensuring per-day sequence to avoid filename collisions across your tasks.

Do I need to manually create a .tmp directory before running the daily task automation script?

You do not need to manually create a .tmp directory before running the daily task automation script. The Python script automatically checks for the .tmp directory and creates it if it is missing, then generates the task file and prints its path.

How does the date-based sequence naming work for daily task journal files?

The date-based sequence naming works by computing today's date and appending a sequence number. It creates a task-YYYYMMDD-N.md file where YYYYMMDD represents the current date and N is the sequence number, preventing filename collisions when generating multiple task files on the same day.

Can I use this Python task management script for logging daily activities?

You can use this Python task management script for logging daily activities. It is designed for productivity workflows like starting a new day's task journal or tracking progress, generating a consistent markdown file for each daily routine entry.

Why does the generated task file include a sequence number at the end of the filename?

The generated task file includes a sequence number at the end of the filename to avoid filename collisions. By computing a per-day sequence for the task-YYYYMMDD-N.md file, it ensures multiple daily task files created on the same day do not overwrite each other.