Create task issue — Phoenix Agentic Website Frontend
Overview
Create task issues using the structured task.yml template so that the
issue-validate.yml CI workflow can parse fields, validate them, add the issue
to the project board, and auto-populate board fields (Status, Priority, Size,
Area, Work mode, Lock Key, Needed Files, Depends On).
Mandatory first step
Check the project board to avoid duplicate work and understand current context:
- Project board: https://github.com/users/rivie13/projects/3
- Check for existing issues covering the same scope before creating a new one:
mcp_github_github_search_issues(owner="rivie13", repo="Phoenix-Agentic-Website-Frontend", query="<keywords>")
Required fields
Every task issue MUST include all of these in the issue body using the exact heading format below (this is what CI parses):
| Field | Heading in body | Required | Example |
|-------|----------------|----------|---------|
| Target repo | ### Target repository | Yes | Phoenix-Agentic-Website-Frontend |
| Parent branch | ### Parent branch (PR target) | Yes | feature/blog-system |
| Working branch | ### Working branch | Yes | subfeature/task/blog-rss-feed |
| Work mode | ### Work mode | Yes | Local IDE / CLI Agent / Cloud Agent |
| Separate worktree | ### Separate worktree? | Yes | No / Yes / N/A (Cloud Agent) |
| Priority | ### Priority | Yes | P2 — Medium |
| Size | ### Size | Yes | S — Small (1-4 hours) |
| Area | ### Area | Yes | app/pages |
| Description | ### Task description | Yes | Free-form, detailed enough for agent |
| Acceptance criteria | ### Acceptance criteria | Yes | Checkboxes |
| Key files | ### Key files | No | File paths |
| Depends on | ### Depends on | No | #42, #57 |
| Lock key | ### Lock key | No | src/app/blog/* |
Valid values
Priority
P0 — Critical / blockerP1 — HighP2 — MediumP3 — Low
Size
XS — Extra small (< 1 hour)S — Small (1-4 hours)M — Medium (half day to full day)L — Large (multi-day)XL — Extra large (multi-week)
Work mode
Local IDE— Human in VS CodeCLI Agent— Codex / Copilot CLI / other in a worktreeCloud Agent— GitHub Copilot cloud coding agent
Area (global — applies across all repos)
module/assistant-ui, module/mcp, module/agent, module/addons,
core, gateway, worker, orchestrator,
sdk/client, sdk/core, contracts, infra,
app/pages, components, content, public,
api, domain, tests, docs, ci
Branch naming convention
- Feature branches:
feature/<description> - Sub-feature / task:
subfeature/<type>/<description>- Types:
task,fix,chore,docs
- Types:
- Direct fixes:
fix/<description>,chore/<description>,docs/<description>
Creating an issue (step by step)
1. Determine execution context
- Which repo will the work happen in?
- What parent branch does the PR merge into? (Usually a
feature/*branch, ormain) - What working branch will be created?
- What work mode — Local IDE, CLI Agent, or Cloud Agent?
2. Determine board fields
- Priority: How urgent? P0 = blocker, P3 = nice-to-have
- Size: How big? XS = trivial, L = multi-day
- Area: What part of the codebase?
3. Write the issue body
Format the body with exactly these markdown headings (CI parses them):
### Target repository
Phoenix-Agentic-Website-Frontend
### Parent branch (PR target)
feature/blog-system
### Working branch
subfeature/task/blog-rss-feed
### Work mode
Cloud Agent
### Separate worktree?
N/A (Cloud Agent)
### Priority
P2 — Medium
### Size
S — Small (1-4 hours)
### Area
app/pages
### Task description
Implement RSS feed generation for the blog...
### Acceptance criteria
- [ ] RSS feed generates valid XML
- [ ] All tests pass
- [ ] No lint errors
### Key files
- src/app/blog/rss/route.ts
- tests/blog/rss.test.ts
### Depends on
_No response_
### Lock key
_No response_
4. Create via MCP tool
mcp_github_github_issue_write(
method="create",
owner="rivie13",
repo="Phoenix-Agentic-Website-Frontend",
title="[Task]: <concise title>",
body="<body from step 3>",
labels=["task"]
)
5. What happens automatically
CI will:
- Parse all fields from the issue body headings.
- Validate required fields are present and well-formed.
- Add the issue to the project board (if not already there).
- Set board fields: Status → Ready, Priority, Size, Area, Work mode.
- Set text fields: Depends On, Lock Key, Needed Files (if provided).
- Add a
base-branch:<branch>label for cloud-agent resolution. - Comment with a success summary or validation errors.
If validation fails, CI adds a needs-triage label and comments with
specific errors. Edit the issue to fix them — CI re-validates on edit.
Breaking down features into tasks
When a feature is too large for a single issue:
- Create the parent feature branch:
feature/<name> - Break into sub-tasks, each as a separate issue
- Each sub-task's parent branch =
feature/<name> - Each sub-task's working branch =
subfeature/task/<name> - Set
Depends onto chain sequential tasks
Related repos
| Repo | GitHub |
|------|--------|
| Engine | rivie13/Phoenix-Agentic-Engine |
| Backend | rivie13/Phoenix-Agentic-Engine-Backend |
| Interface | rivie13/Phoenix-Agentic-Engine-Interface |
| Website Backend | rivie13/Phoenix-Agentic-Website-Backend |
| Supervisor | rivie13/Phoenix-Agentic-Workspace-Supervisor |
| Command Center | rivie13/Phoenix-Agentic-VSCode-CommandCenter |
Use the same task.yml template when creating issues in any repo.
The create-issue skill exists in all repos with identical guidance.
微信扫一扫