plugins/project-management/skills/create-request/SKILL.md
This skill should be used when the user asks to "create a request", "add a request", "queue a request", "submit a request", "new request", or "make a request for the orchestrator". Creates a structured request file in requests/todo/ that the Project Orchestrator can pick up and execute.
npx skillsauth add hirogakatageri/hirokata create-requestInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create a structured request file in requests/todo/ for the Project Orchestrator to process.
Parse from $ARGUMENTS or ask the user interactively:
| Argument | Description |
|---|---|
| title | Short title for the request (used as filename) |
| details | Full description of what needs to be done |
If either argument is missing, ask the user for it before proceeding.
If title is not provided:
What is the title of this request? (e.g. "Implement authentication", "Generate requirements for checkout")
If details is not provided:
Describe what this request should do. Be as specific as possible — the orchestrator will use this to determine which agents to involve.
YYYY-MM-DDrequests/todo/YYYY-MM-DD-{slug}.mdExample: title "Implement authentication" on 2026-03-20 → requests/todo/2026-03-20-implement-authentication.md
---
title: {title}
created: {YYYY-MM-DD}
status: todo
---
# {title}
## Details
{details}
Request created!
File: requests/todo/YYYY-MM-DD-{slug}.md
Title: {title}
Status: todo
Run /project-management:project-orchestrator to process pending requests.
-2, -3, etc.title, created, status — no extra fieldstodo when created — the orchestrator manages status by moving the filedevelopment
This skill should be used when the user reports an error, bug, or unexpected behavior and wants it diagnosed and fixed. Trigger on phrases like "check this error", "check this bug", "here's an error", "here's a bug", "I have an error", "I have a bug", "found a bug", "got an error", "debug this", "this is broken", "fix this error", "verify and fix", or any message that includes a stack trace or error output. Runs a structured workflow: gather context, investigate configured log/code sources, report root cause with ranked solutions, then apply a test-driven fix.
testing
This skill should be used when the user says "check svelte env vars", "check environment variables", "validate env vars", "check env var patterns", "audit environment variables", "audit env vars", "check SvelteKit env", "svelte env check", or any phrase asking to audit or validate SvelteKit environment variable usage patterns.
data-ai
Internal skill used by the session-tracker logger agent to append a session entry to .logs/YYYY-MM-DD-log.md, creating the file and directory if needed. Not user-invocable.
data-ai
Internal skill used by the session-tracker logger agent to query git for committed and uncommitted changes in the past 28 hours. Not user-invocable.