Creates a new task folder with auto-generated timestamp and device name.
From task-folder-managernpx claudepluginhub a-ariff/ariff-claude-plugins --plugin task-folder-managerCreates a new task folder with auto-generated timestamp and device name.
Pattern: T{YYYYMMDD}.{HHMMSS}-{device}-{slug}
Location: /Users/ariff/Library/CloudStorage/OneDrive-Independent/dev-terminal/projects/
/new-task <slug>
Example:
/new-task intune-policy-audit
Creates: projects/T20241216.143052-ariff-macbook-intune-policy-audit/
Each new task folder is initialized with:
T{timestamp}-{device}-{slug}/
├── README.md # Task overview and status
├── notes/ # Working notes
└── artifacts/ # Output files, exports, screenshots
# Task: {slug}
**Created:** {YYYY-MM-DD HH:MM:SS}
**Device:** {hostname}
**Status:** 🟡 In Progress
## Objective
[What needs to be accomplished]
## Context
[Background and relevant info]
## Progress
- [ ] Step 1
- [ ] Step 2
## Outcome
[Final result - fill when complete]
## Related
- Previous: [link]
- Docs: [link]
To create the folder, use the shell script:
${CLAUDE_PLUGIN_ROOT}/scripts/create-task-folder.sh <slug>
Or manually with Claude:
SLUG="my-task"
FOLDER="T$(date +%Y%m%d).$(date +%H%M%S)-$(hostname -s | tr '[:upper:]' '[:lower:]' | tr ' ' '-')-${SLUG}"
mkdir -p "/Users/ariff/Library/CloudStorage/OneDrive-Independent/dev-terminal/projects/${FOLDER}"/{notes,artifacts}