Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/aw/campaign-project-update-contract-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This checklist is designed to validate LLM outputs before executing project writ

## B) Field Validity Checks

- [ ] `fields.status` ∈ {`Todo`, `In Progress`, `Done`}
- [ ] `fields.status` ∈ {`Todo`, `In Progress`, `Review required`, `Blocked`, `Done`}
- [ ] `fields.campaign_id` is present on first-add/backfill and equals `{{.CampaignID}}`
- [ ] `fields.worker_workflow` is present on first-add/backfill and is either a known workflow ID or `"unknown"`
- [ ] `fields.repository` matches `owner/repo`
Expand Down
2 changes: 1 addition & 1 deletion .github/aw/campaign-project-update-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ All campaign tracking MUST key off `campaign_id: "{{.CampaignID}}"`.

| Field | Type | Allowed / Notes |
|---|---|---|
| `status` | single-select | `Todo` / `In Progress` / `Done` |
| `status` | single-select | `Todo` / `In Progress` / `Review required` / `Blocked` / `Done` |
| `campaign_id` | text | Must equal `{{.CampaignID}}` |
| `worker_workflow` | text | workflow ID or `"unknown"` |
| `repository` | text | `owner/repo` |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/campaign-generator.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/campaign-generator.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ update_project({
{
name: "Status",
data_type: "SINGLE_SELECT",
options: ["Todo", "In Progress", "Blocked", "Done", "Closed"]
options: ["Todo", "In Progress", "Review required", "Blocked", "Done", "Closed"]
},
{
name: "Start Date",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/discussion-task-mining.campaign.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Scans AI-generated discussions from the last 7 days to extract actionable code q
4. **Effort** (Single select): Small (1 day), Medium (2-3 days), Large (1 week)
- Estimated effort for completion

5. **Status** (Single select): Todo, In Progress, Blocked, Done
5. **Status** (Single select): Todo, In Progress, Review required, Blocked, Done
- Current work state

6. **Impact Area** (Single select): Maintainability, Reliability, Performance, Security, Developer Experience
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The following custom fields are created and configured:
|-------|------|--------|---------|
| **Worker/Workflow** | Single select | Workflow names (e.g., "migration-worker") | Track which agentic workflow owns each item; enables swimlane grouping |
| **Priority** | Single select | High, Medium, Low | Filter and sort items by urgency |
| **Status** | Single select | Todo, In Progress, Blocked, Done, Closed | Track work state (default in templates) |
| **Status** | Single select | Todo, In Progress, Review required, Blocked, Done, Closed | Track work state (default in templates) |
| **Start Date** | Date | Auto-populated from `createdAt` | Timeline visualization (required for Roadmap) |
| **End Date** | Date | Auto-populated from `closedAt` | Timeline visualization (required for Roadmap) |
| **Effort** | Single select | Small (1-3 days), Medium (1 week), Large (2+ weeks) | Capacity planning |
Expand Down
2 changes: 1 addition & 1 deletion pkg/campaign/prompts/project_update_contract_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This checklist is designed to validate LLM outputs before executing project writ

## B) Field Validity Checks

- [ ] `fields.status` ∈ {`Todo`, `In Progress`, `Done`}
- [ ] `fields.status` ∈ {`Todo`, `In Progress`, `Review required`, `Blocked`, `Done`}
- [ ] `fields.campaign_id` is present on first-add/backfill and equals `{{.CampaignID}}`
- [ ] `fields.worker_workflow` is present on first-add/backfill and is either a known workflow ID or `"unknown"`
- [ ] `fields.repository` matches `owner/repo`
Expand Down
2 changes: 1 addition & 1 deletion pkg/campaign/prompts/project_update_instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ All campaign tracking MUST key off `campaign_id: "{{.CampaignID}}"`.

| Field | Type | Allowed / Notes |
|---|---|---|
| `status` | single-select | `Todo` / `In Progress` / `Done` |
| `status` | single-select | `Todo` / `In Progress` / `Review required` / `Blocked` / `Done` |
| `campaign_id` | text | Must equal `{{.CampaignID}}` |
| `worker_workflow` | text | workflow ID or `"unknown"` |
| `repository` | text | `owner/repo` |
Expand Down
2 changes: 1 addition & 1 deletion pkg/campaign/schemas/project_update_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"$defs": {
"status": {
"type": "string",
"enum": ["Todo", "In Progress", "Done"]
"enum": ["Todo", "In Progress", "Review required", "Blocked", "Done"]
},
"isoDate": {
"type": "string",
Expand Down
Loading