Create a new initiative in the project tracker workspace
Creates a new initiative with structured documentation in the project tracker workspace.
/plugin marketplace add hhopkins95/project-tracker/plugin install project-tracker@project-tracker-mpCreate a new initiative in the project tracker workspace.
Generate a slug from the provided title using kebab-case (e.g., "User Authentication" → user-authentication)
Determine initial state: Ask the user if this should go in active or backlog (default to backlog)
Create the folder structure:
$PROJECT_TRACKER_WORKSPACE/initiatives/{state}/{slug}/
└── sessions/
Create INITIATIVE.md with this content:
---
title: '{title}'
created: '{today's date YYYY-MM-DD}'
status: {state}
tags: []
---
# {title}
## Goal
{Ask user for the goal or leave as placeholder}
## Scope
### In Scope
- *Define what's included*
### Out of Scope
- *Define what's excluded*
## Completion Criteria
- [ ] *Define measurable completion criteria*
## Current Status
*No updates yet*
## Blockers
*None*
User runs: /new-initiative "API Rate Limiting"
You create:
$PROJECT_TRACKER_WORKSPACE/initiatives/backlog/api-rate-limiting/INITIATIVE.md$PROJECT_TRACKER_WORKSPACE/initiatives/backlog/api-rate-limiting/sessions/