Daily planner prioritizer
Skill ShreyasBh02/AI-Skills-Collection/daily-planner-prioritizer
Installable GitHub library of 5+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
npx -y skills add ShreyasBh02/AI-Skills-Collection --skill daily-planner-prioritizerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Creates a smart, time-blocked daily plan from a user's task dump, meetings, errands, habits, and goals β then outputs BOTH a clean text summary in chat AND a formatted Excel (.xlsx) schedule file. Covers work tasks, meetings, personal errands, health/exercise reminders, and QA-specific tasks (test runs, bug triage, reviews). Use this skill whenever the user mentions: "plan my day", "prioritize my tasks", "make a schedule", "I have too much to do", "help me organize today", "daily planner", "time block my day", "what should I do first", "morning routine", "task list for today", or dumps a list of things to do. Always trigger even for partial inputs β a rough list of tasks is enough to generate a useful plan. The more context given, the better, but never require it.
SKILL.md
10.3 KB, as published. Nobody here has run it
Daily Planner & Prioritizer
Turn a messy list of tasks, meetings, errands, and goals into a smart, time-blocked daily plan β delivered as a clean chat summary + a formatted Excel (.xlsx) schedule.
What This Planner Covers
- πΌ Work tasks & meetings β deadlines, standups, reviews, client calls
- π Personal errands & habits β chores, appointments, shopping, family
- π Health & exercise β workouts, walks, meals, water reminders
- π§ͺ QA-specific tasks β test runs, bug triage, test case writing, regression cycles, PR reviews
Workflow
Step 1 β Parse the Input
Accept input in any format β bullet list, paragraph, voice-style dump, or structured. Extract from the input:
- Task name β what needs to be done
- Type β Work / Personal / Health / QA
- Duration estimate β if stated; otherwise apply defaults (see below)
- Fixed time β meetings, appointments with specific times
- Deadline or urgency β "due today", "urgent", "by EOD", "can wait"
- Energy level needed β infer from task type (deep work vs. admin vs. quick errand)
If the user doesn't provide enough detail, make smart assumptions β never ask for more info before producing a plan. State assumptions clearly in the output.
Step 2 β Prioritize Tasks
Use this priority matrix to rank tasks before scheduling:
| Priority | Criteria |
|---|---|
| π΄ P1 β Urgent & Important | Deadlines today, blockers, critical bugs, meetings |
| π P2 β Important, Not Urgent | Deep work, test execution, errands with soft deadlines |
| π‘ P3 β Useful but Flexible | Reviews, reading, habit tasks, low-urgency emails |
| π’ P4 β Nice to Have | Optional tasks, backlog, long-term prep |
QA-specific priority rules:
- Production bugs β always P1
- Regression test runs with release deadline today β P1
- Test case writing / review β P2
- Exploratory testing β P2 or P3 depending on sprint stage
- Bug triage (no severity yet) β P2
Step 3 β Build the Time-Blocked Schedule
Default working window: 9:00 AM β 6:00 PM (adjust if user specifies otherwise)
Default time-blocking principles:
- Start with fixed-time meetings/appointments first
- Place deep focus work (P1 + P2) in the morning (9β12)
- Schedule health/exercise in early morning or lunch break
- Admin, email, reviews in early afternoon (2β4 PM)
- Personal errands and flexible tasks in late afternoon or after work
- End the day with a 15-min "wrap-up + plan tomorrow" block
Default duration estimates (use when not provided):
| Task Type | Default Duration |
|---|---|
| Meeting / standup | 30β60 min (30 if "standup", 60 if "meeting") |
| Bug fix / investigation | 60 min |
| Test case writing | 45 min per feature |
| Test execution / regression run | 90 min |
| Bug triage | 30 min |
| PR / code review | 30 min |
| Email / Slack catch-up | 20 min |
| Deep focus / dev work | 90 min |
| Personal errand (outside) | 60 min |
| Quick personal task | 20 min |
| Exercise / workout | 45 min |
| Meal / break | 30β60 min |
| Daily wrap-up | 15 min |
Protect these blocks always (unless user says otherwise):
- Lunch break: 1:00β2:00 PM (60 min)
- At least one 10-min break per 90-min work block
Step 4 β Output: Chat Summary
Print the plan in chat in this clean format:
π
YOUR DAY β [Day, Date]
ββββββββββββββββββββββββ
π
MORNING
09:00 β 09:30 π§ͺ QA Standup (P1)
09:30 β 11:00 π§ͺ Regression test run β Login module (P1)
11:00 β 11:45 πΌ Write test cases β Payment feature (P2)
11:45 β 12:00 β Break
π MIDDAY
12:00 β 13:00 π Lunch + walk
13:00 β 13:30 πΌ Email & Slack catch-up (P3)
π AFTERNOON
13:30 β 14:30 πΌ Deep work: [task] (P2)
14:30 β 15:00 π§ͺ Bug triage (P2)
15:00 β 16:00 π [Personal errand] (P3)
16:00 β 16:30 πΌ PR review (P3)
π END OF DAY
16:30 β 17:00 π Evening walk / exercise
17:00 β 17:15 π Wrap-up + plan tomorrow
ββββββββββββββββββββββββ
β
Tasks scheduled: X | β³ Total focus time: Xh Xmin
β οΈ Deferred to tomorrow: [any tasks that didn't fit]
π‘ Assumptions made: [list any guesses about timing or priority]
Emoji key: πΌ Work | π§ͺ QA | π Personal | π Health
Step 5 β Output: Excel File
Create a formatted .xlsx file with 2 sheets.
Sheet 1: Daily Schedule
Columns: Time | Task | Type | Priority | Duration | Status | Notes
Formatting:
- Header: bold white on dark blue (
#1F4E79), frozen row - Type color coding per row:
- Work β
#DEEAF1(blue) - QA β
#E2EFDA(green) - Personal β
#FFF2CC(yellow) - Health β
#FCE4D6(orange/pink) - Break/Meal β
#F2F2F2(grey)
- Work β
- Priority column: π΄ P1 =
#F4CCCC, π P2 =#FCE5CD, π‘ P3 =#FFF2CC, π’ P4 =#D9EAD3 - Status column: light grey, blank β user fills in (Done / In Progress / Skipped)
- Font: Arial 10pt, row height 25px, wrap text off
- Column widths: Time=14, Task=40, Type=12, Priority=10, Duration=12, Status=14, Notes=35
Sheet 2: Task Backlog
Any tasks that didn't fit today β columns: Task | Type | Priority | Suggested Day | Notes
- Same color coding as Sheet 1
- Header: same dark blue style
File naming: daily-plan-YYYY-MM-DD.xlsx
Step 6 β Save & Present
- Save to
/mnt/user-data/outputs/daily-plan-YYYY-MM-DD.xlsx - Use
present_filesto deliver - The chat summary should appear FIRST, then mention the Excel file is ready to download
Python Code Template
from openpyxl import Workbook
from openpyxl.styles import Font, PatternFill, Alignment, Border, Side
from openpyxl.utils import get_column_letter
from datetime import date
wb = Workbook()
HEADER_FILL = PatternFill("solid", fgColor="1F4E79")
HEADER_FONT = Font(bold=True, color="FFFFFF", name="Arial", size=10)
DATA_FONT = Font(name="Arial", size=10)
THIN = Side(style="thin")
BORDER = Border(left=THIN, right=THIN, top=THIN, bottom=THIN)
TYPE_FILLS = {
"Work": "DEEAF1",
"QA": "E2EFDA",
"Personal": "FFF2CC",
"Health": "FCE4D6",
"Break": "F2F2F2",
}
PRI_FILLS = {
"P1": "F4CCCC",
"P2": "FCE5CD",
"P3": "FFF2CC",
"P4": "D9EAD3",
"": "FFFFFF",
}
def style_header(ws, headers, col_widths):
for col, (h, w) in enumerate(zip(headers, col_widths), 1):
c = ws.cell(row=1, column=col, value=h)
c.font, c.fill, c.border = HEADER_FONT, HEADER_FILL, BORDER
c.alignment = Alignment(horizontal="center", vertical="center")
ws.column_dimensions[get_column_letter(col)].width = w
ws.freeze_panes = "A2"
ws.row_dimensions[1].height = 28
# Sheet 1: Daily Schedule
ws1 = wb.active
ws1.title = "Daily Schedule"
ws1.sheet_properties.tabColor = "1F4E79"
HEADERS1 = ["Time", "Task", "Type", "Priority", "Duration", "Status", "Notes"]
WIDTHS1 = [14, 40, 12, 10, 12, 14, 35]
style_header(ws1, HEADERS1, WIDTHS1)
# schedule = list of (time_str, task, type, priority, duration, notes)
# e.g. ("09:00β09:30", "QA Standup", "QA", "P1", "30 min", "Daily sync")
schedule = [] # REPLACE WITH ACTUAL GENERATED SCHEDULE
for r, (time, task, typ, pri, dur, notes) in enumerate(schedule, 2):
row_data = [time, task, typ, pri, dur, "", notes]
ws1.row_dimensions[r].height = 25
for col, val in enumerate(row_data, 1):
c = ws1.cell(row=r, column=col, value=val)
c.font, c.border = DATA_FONT, BORDER
c.alignment = Alignment(vertical="center")
# Row background from Type
fill_color = TYPE_FILLS.get(typ, "FFFFFF")
c.fill = PatternFill("solid", fgColor=fill_color)
# Override Priority and Status cells
if col == 4:
c.fill = PatternFill("solid", fgColor=PRI_FILLS.get(pri, "FFFFFF"))
c.alignment = Alignment(horizontal="center", vertical="center")
elif col == 6:
c.fill = PatternFill("solid", fgColor="EEEEEE")
# Sheet 2: Task Backlog
ws2 = wb.create_sheet("Task Backlog")
ws2.sheet_properties.tabColor = "ED7D31"
HEADERS2 = ["Task", "Type", "Priority", "Suggested Day", "Notes"]
WIDTHS2 = [40, 12, 10, 18, 35]
style_header(ws2, HEADERS2, WIDTHS2)
# backlog = list of (task, type, priority, suggested_day, notes)
backlog = [] # REPLACE WITH ACTUAL DEFERRED TASKS
for r, (task, typ, pri, day, notes) in enumerate(backlog, 2):
row_data = [task, typ, pri, day, notes]
ws2.row_dimensions[r].height = 25
for col, val in enumerate(row_data, 1):
c = ws2.cell(row=r, column=col, value=val)
c.font, c.border = DATA_FONT, BORDER
c.alignment = Alignment(vertical="center")
c.fill = PatternFill("solid", fgColor=TYPE_FILLS.get(typ, "FFFFFF"))
if col == 3:
c.fill = PatternFill("solid", fgColor=PRI_FILLS.get(pri, "FFFFFF"))
c.alignment = Alignment(horizontal="center", vertical="center")
today = date.today().strftime("%Y-%m-%d")
wb.save(f"daily-plan-{today}.xlsx")
Tips for Best Results
- Dump everything β tasks, meetings, errands, even "I need to exercise". More input = better plan.
- Mention fixed times for any meetings or appointments (e.g. "standup at 9:30").
- Flag urgent items β say "urgent", "due today", or "must finish by 3 PM".
- Specify energy if you know it β "I'm tired today" shifts deep work to best available window.
- Multiple days? Say "plan my week" β each day gets its own schedule section and Excel sheet.