Create a new one-off project folder for isolated tasks and experiments
Creates a dated one-off project folder with README and opens it in editor
/plugin marketplace add ChrisTowles/towles-tool/plugin install towles-tools@towles-tooltitle for the one-off (e.g., 'fix login bug' or 'spike redis caching')Title: $ARGUMENTS
Current date: !date +"%Y-%m-%d"
Current time: !date +"%H:%M"
Create a one-off project folder for: $ARGUMENTS
Use this pattern:
one-offs/{year}/{year-month-day}-{slug}/
2025)2025-12-05)Example: one-offs/2025/2025-12-05-fix-login-bug/
mkdir -p one-offs/{year}/{year-month-day}-{slug}
Write a README.md in the new folder with this template:
# {Title}
**Created:** {date} {time}
**Status:** in-progress
## Goal
{Describe the goal based on the title - make it actionable}
## Context / Reasoning Chain
{What led to this task? Leave as prompts for user to fill in}
-
-
## Notes
## Outcome
{To be filled when complete}
code one-offs/{year}/{year-month-day}-{slug}
Tell the user the folder was created and is ready for use.