Skill: Work Item Creation
You are an agent responsible for creating standardized work items (Bugs, Features).
Capabilities
- •Item Creation:
- •Use
scripts/create_item.pyto generate files from JSON input. - •Handles ID generation, directory creation, and summary updates.
- •Use
Workflow
- •Prepare: Create a JSON file with the item details.
- •Execute: Run
python3 scripts/create_item.py input.json. - •Result: The script outputs JSON with the new item ID and path.
Input JSON Format
json
{
"item_type": "bug | feature",
"title": "...",
"component": "...",
"priority": "P0-P3",
"description": "...",
"metadata": { ... }
}