Upload taskdroid raw and gold dataset files
#1
by akki49912141 - opened
- configs/task_plan_schema.json +143 -0
- gold/README.md +24 -0
- gold/android_gold_annotation_template_v1.csv +201 -0
- gold/android_gold_seed_v1.jsonl +0 -0
- gold/android_gold_v1_approved.jsonl +0 -0
- raw/prompt_labels.csv +0 -0
- raw/prompt_plans.jsonl +0 -0
- raw/test.jsonl +0 -0
- raw/train.jsonl +0 -0
- raw/val.jsonl +0 -0
configs/task_plan_schema.json
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"title": "TaskPlan",
|
| 4 |
+
"type": "object",
|
| 5 |
+
"required": [
|
| 6 |
+
"is_android_related",
|
| 7 |
+
"confidence",
|
| 8 |
+
"feature_summary",
|
| 9 |
+
"files_or_modules",
|
| 10 |
+
"implementation_tasks",
|
| 11 |
+
"acceptance_checks",
|
| 12 |
+
"risks",
|
| 13 |
+
"questions_for_user"
|
| 14 |
+
],
|
| 15 |
+
"properties": {
|
| 16 |
+
"is_android_related": {
|
| 17 |
+
"type": "boolean"
|
| 18 |
+
},
|
| 19 |
+
"confidence": {
|
| 20 |
+
"type": "number",
|
| 21 |
+
"minimum": 0,
|
| 22 |
+
"maximum": 1
|
| 23 |
+
},
|
| 24 |
+
"plan_quality_score": {
|
| 25 |
+
"type": "number",
|
| 26 |
+
"minimum": 0,
|
| 27 |
+
"maximum": 1
|
| 28 |
+
},
|
| 29 |
+
"confidence_reasons": {
|
| 30 |
+
"type": "array",
|
| 31 |
+
"items": {
|
| 32 |
+
"type": "string"
|
| 33 |
+
}
|
| 34 |
+
},
|
| 35 |
+
"plan_category": {
|
| 36 |
+
"type": "string",
|
| 37 |
+
"enum": ["implementation", "discovery", "unsafe_refusal", "non_android_refusal"]
|
| 38 |
+
},
|
| 39 |
+
"refusal_category": {
|
| 40 |
+
"type": "string",
|
| 41 |
+
"enum": ["none", "unsafe_android_request", "non_android_request"]
|
| 42 |
+
},
|
| 43 |
+
"detected_intents": {
|
| 44 |
+
"type": "array",
|
| 45 |
+
"items": {
|
| 46 |
+
"type": "string",
|
| 47 |
+
"enum": [
|
| 48 |
+
"crash_triage",
|
| 49 |
+
"gradle_build",
|
| 50 |
+
"security_privacy",
|
| 51 |
+
"permissions_privacy",
|
| 52 |
+
"performance",
|
| 53 |
+
"accessibility",
|
| 54 |
+
"database",
|
| 55 |
+
"dependency_injection",
|
| 56 |
+
"modularization",
|
| 57 |
+
"release_deployment",
|
| 58 |
+
"background_work",
|
| 59 |
+
"notifications",
|
| 60 |
+
"location_maps",
|
| 61 |
+
"media_camera",
|
| 62 |
+
"billing_payments",
|
| 63 |
+
"analytics",
|
| 64 |
+
"localization",
|
| 65 |
+
"deep_links",
|
| 66 |
+
"authentication",
|
| 67 |
+
"networking",
|
| 68 |
+
"ui_compose",
|
| 69 |
+
"testing_quality"
|
| 70 |
+
]
|
| 71 |
+
}
|
| 72 |
+
},
|
| 73 |
+
"requires_user_clarification": {
|
| 74 |
+
"type": "boolean"
|
| 75 |
+
},
|
| 76 |
+
"feature_summary": {
|
| 77 |
+
"type": "string"
|
| 78 |
+
},
|
| 79 |
+
"files_or_modules": {
|
| 80 |
+
"type": "array",
|
| 81 |
+
"items": {
|
| 82 |
+
"type": "string"
|
| 83 |
+
}
|
| 84 |
+
},
|
| 85 |
+
"implementation_tasks": {
|
| 86 |
+
"type": "array",
|
| 87 |
+
"items": {
|
| 88 |
+
"type": "object",
|
| 89 |
+
"required": [
|
| 90 |
+
"id",
|
| 91 |
+
"title",
|
| 92 |
+
"description",
|
| 93 |
+
"layer",
|
| 94 |
+
"estimated_effort",
|
| 95 |
+
"dependencies"
|
| 96 |
+
],
|
| 97 |
+
"properties": {
|
| 98 |
+
"id": {
|
| 99 |
+
"type": "string"
|
| 100 |
+
},
|
| 101 |
+
"title": {
|
| 102 |
+
"type": "string"
|
| 103 |
+
},
|
| 104 |
+
"description": {
|
| 105 |
+
"type": "string"
|
| 106 |
+
},
|
| 107 |
+
"layer": {
|
| 108 |
+
"type": "string",
|
| 109 |
+
"enum": ["ui", "data", "domain", "testing", "build", "cross-cutting"]
|
| 110 |
+
},
|
| 111 |
+
"estimated_effort": {
|
| 112 |
+
"type": "string",
|
| 113 |
+
"enum": ["S", "M", "L"]
|
| 114 |
+
},
|
| 115 |
+
"dependencies": {
|
| 116 |
+
"type": "array",
|
| 117 |
+
"items": {
|
| 118 |
+
"type": "string"
|
| 119 |
+
}
|
| 120 |
+
}
|
| 121 |
+
}
|
| 122 |
+
}
|
| 123 |
+
},
|
| 124 |
+
"acceptance_checks": {
|
| 125 |
+
"type": "array",
|
| 126 |
+
"items": {
|
| 127 |
+
"type": "string"
|
| 128 |
+
}
|
| 129 |
+
},
|
| 130 |
+
"risks": {
|
| 131 |
+
"type": "array",
|
| 132 |
+
"items": {
|
| 133 |
+
"type": "string"
|
| 134 |
+
}
|
| 135 |
+
},
|
| 136 |
+
"questions_for_user": {
|
| 137 |
+
"type": "array",
|
| 138 |
+
"items": {
|
| 139 |
+
"type": "string"
|
| 140 |
+
}
|
| 141 |
+
}
|
| 142 |
+
}
|
| 143 |
+
}
|
gold/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Gold Dataset (Android Planner)
|
| 2 |
+
|
| 3 |
+
This folder contains curated seed data for Android prompt-to-task-plan training.
|
| 4 |
+
|
| 5 |
+
## Files
|
| 6 |
+
|
| 7 |
+
- `android_gold_seed_v1.jsonl`: 200 seeded examples (`prompt -> task_plan`).
|
| 8 |
+
- `android_gold_annotation_template_v1.csv`: reviewer template for human quality pass.
|
| 9 |
+
|
| 10 |
+
## Review Workflow
|
| 11 |
+
|
| 12 |
+
1. Open `android_gold_annotation_template_v1.csv`.
|
| 13 |
+
2. For each row:
|
| 14 |
+
- set `approved=yes` only if prompt and plan are both high-quality.
|
| 15 |
+
- add `review_notes` for required corrections.
|
| 16 |
+
3. Update corresponding `task_plan` entries in `android_gold_seed_v1.jsonl`.
|
| 17 |
+
4. When finished, copy approved rows into `android_gold_v1_approved.jsonl`.
|
| 18 |
+
|
| 19 |
+
## Quality Standard
|
| 20 |
+
|
| 21 |
+
- Prompt is Android-specific and unambiguous.
|
| 22 |
+
- Plan contains implementation-ready tasks across appropriate layers.
|
| 23 |
+
- Acceptance checks are runnable Android checks (`lint`, tests, assemble).
|
| 24 |
+
- Risk and clarification sections are useful and concise.
|
gold/android_gold_annotation_template_v1.csv
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,category,prompt,difficulty,priority,review_status,review_notes,approved
|
| 2 |
+
G-0001,authentication,Implement login and signup flow with clean architecture boundaries; include test coverage for ViewModel and repository.,low,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 3 |
+
G-0002,networking,Build background refresh flow with WorkManager for an Android app using Retrofit and coroutines; include unit and integration testing strategy.,medium,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 4 |
+
G-0003,database,Create Room schema for task and project entities using Kotlin and Room; include conflict resolution strategy.,high,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 5 |
+
G-0004,ui_compose,Implement multi-step checkout UI flow with Navigation Compose and ViewModel; include performance considerations for recomposition.,medium,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 6 |
+
G-0005,testing_quality,Stabilize release readiness checks for core user journeys for a Compose-heavy codebase; include coverage thresholds and enforcement.,low,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 7 |
+
G-0006,authentication,Stabilize session refresh and logout flow with clean architecture boundaries; include test coverage for ViewModel and repository.,low,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 8 |
+
G-0007,networking,Build network layer for feed pagination with Hilt dependency injection; handle HTTP timeout and 429 backoff scenarios.,medium,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 9 |
+
G-0008,database,Implement offline-first synchronization pipeline for Android app data layer; include performance checks for heavy queries.,high,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 10 |
+
G-0009,ui_compose,Polish Compose dashboard screen with filtering in a modular Android app; add screenshot or golden test coverage.,high,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 11 |
+
G-0010,testing_quality,Improve release readiness checks for core user journeys in a multi-module Android project; include coverage thresholds and enforcement.,low,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 12 |
+
G-0011,authentication,Refactor session refresh and logout flow in a Kotlin Android app using MVVM and Compose; include test coverage for ViewModel and repository.,low,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 13 |
+
G-0012,networking,Improve error mapping strategy for API failures using Kotlin serialization; include optimistic UI updates.,medium,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 14 |
+
G-0013,database,Refine offline-first synchronization pipeline for Android app data layer; document rollback behavior for failed sync.,high,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 15 |
+
G-0014,ui_compose,Launch settings module with nested navigation with Navigation Compose and ViewModel; ensure back stack behavior is deterministic.,medium,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 16 |
+
G-0015,testing_quality,Automate lint and static analysis quality gates for a Compose-heavy codebase; include coverage thresholds and enforcement.,low,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 17 |
+
G-0016,authentication,Harden password reset and OTP verification journey with clean architecture boundaries; include edge-case handling for expired tokens.,low,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 18 |
+
G-0017,networking,Improve resilient API client with retry policy with Hilt dependency injection; ensure logs are safe and redact sensitive fields.,high,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 19 |
+
G-0018,database,Refine offline-first synchronization pipeline using Kotlin and Room; include conflict resolution strategy.,high,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 20 |
+
G-0019,ui_compose,Launch profile and account management screens in a modular Android app; ensure back stack behavior is deterministic.,high,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 21 |
+
G-0020,testing_quality,Improve lint and static analysis quality gates in a multi-module Android project; include rollout safety checks.,medium,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 22 |
+
G-0021,authentication,Implement login and signup flow using Retrofit and token-based auth; include test coverage for ViewModel and repository.,high,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 23 |
+
G-0022,networking,Optimize network layer for feed pagination with Hilt dependency injection; ensure logs are safe and redact sensitive fields.,high,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 24 |
+
G-0023,database,Implement offline-first synchronization pipeline in an app with large dataset pagination; define migration tests for schema changes.,high,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 25 |
+
G-0024,ui_compose,Implement multi-step checkout UI flow for tablet and phone form factors; add screenshot or golden test coverage.,low,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 26 |
+
G-0025,testing_quality,Stabilize lint and static analysis quality gates for a legacy module under refactor; include coverage thresholds and enforcement.,high,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 27 |
+
G-0026,authentication,Harden multi-step onboarding with account creation using Retrofit and token-based auth; include accessibility requirements for forms.,low,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 28 |
+
G-0027,networking,Improve background refresh flow with WorkManager for a Jetpack Compose app; include optimistic UI updates.,low,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 29 |
+
G-0028,database,Refine database migration plan for version upgrades in an app with large dataset pagination; define migration tests for schema changes.,high,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 30 |
+
G-0029,ui_compose,Polish Compose dashboard screen with filtering using Jetpack Compose and Material 3; add screenshot or golden test coverage.,medium,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 31 |
+
G-0030,testing_quality,Increase lint and static analysis quality gates with Gradle-based CI pipelines; include coverage thresholds and enforcement.,low,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 32 |
+
G-0031,authentication,Stabilize login and signup flow targeting Android 12+ and Material 3; include test coverage for ViewModel and repository.,low,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 33 |
+
G-0032,networking,"Migrate background refresh flow with WorkManager in a modularized Android project; include loading, empty, and failure UI states.",high,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 34 |
+
G-0033,database,Rework local cache invalidation and refresh policy in an app with large dataset pagination; include conflict resolution strategy.,high,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 35 |
+
G-0034,ui_compose,Polish profile and account management screens with dark/light theme support; include performance considerations for recomposition.,medium,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 36 |
+
G-0035,testing_quality,Enforce lint and static analysis quality gates for a Kotlin Android app; include deterministic test data setup.,low,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 37 |
+
G-0036,authentication,Ship biometric authentication flow targeting Android 12+ and Material 3; include test coverage for ViewModel and repository.,low,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 38 |
+
G-0037,networking,Build resilient API client with retry policy for an Android app using Retrofit and coroutines; handle HTTP timeout and 429 backoff scenarios.,medium,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 39 |
+
G-0038,database,Implement local cache invalidation and refresh policy with repository mediation between API and local DB; include performance checks for heavy queries.,low,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 40 |
+
G-0039,ui_compose,Redesign multi-step checkout UI flow in a modular Android app; ensure back stack behavior is deterministic.,low,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 41 |
+
G-0040,testing_quality,Stabilize lint and static analysis quality gates for a Kotlin Android app; include coverage thresholds and enforcement.,high,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 42 |
+
G-0041,authentication,Harden password reset and OTP verification journey with offline-aware state handling; include analytics events for success and failure states.,high,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 43 |
+
G-0042,networking,"Build network layer for feed pagination with Hilt dependency injection; include loading, empty, and failure UI states.",low,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 44 |
+
G-0043,database,Refine local cache invalidation and refresh policy in an app with large dataset pagination; include performance checks for heavy queries.,low,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 45 |
+
G-0044,ui_compose,Redesign profile and account management screens with dark/light theme support; define UI state model for loading/empty/error.,low,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 46 |
+
G-0045,testing_quality,Automate unit and instrumentation coverage for critical flows for a Kotlin Android app; include rollout safety checks.,low,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 47 |
+
G-0046,authentication,Refactor biometric authentication flow with offline-aware state handling; include analytics events for success and failure states.,medium,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 48 |
+
G-0047,networking,Migrate network layer for feed pagination in a modularized Android project; ensure logs are safe and redact sensitive fields.,low,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 49 |
+
G-0048,database,Migrate DAO query strategy for dashboard metrics with repository mediation between API and local DB; include performance checks for heavy queries.,high,p0,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 50 |
+
G-0049,ui_compose,Launch search experience with debounced queries with Navigation Compose and ViewModel; define UI state model for loading/empty/error.,medium,p2,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 51 |
+
G-0050,testing_quality,Increase release readiness checks for core user journeys with Gradle-based CI pipelines; include coverage thresholds and enforcement.,high,p1,human_reviewed_approved,Approved for production-ready baseline set.,yes
|
| 52 |
+
G-0051,authentication,Implement login and signup flow targeting Android 12+ and Material 3; include analytics events for success and failure states.,high,p0,seeded_needs_human_review,,no
|
| 53 |
+
G-0052,networking,Design network layer for feed pagination for a Jetpack Compose app; handle HTTP timeout and 429 backoff scenarios.,low,p2,seeded_needs_human_review,,no
|
| 54 |
+
G-0053,database,Implement Room schema for task and project entities using Kotlin and Room; include performance checks for heavy queries.,low,p0,seeded_needs_human_review,,no
|
| 55 |
+
G-0054,ui_compose,Redesign multi-step checkout UI flow in a modular Android app; include accessibility and talkback support.,high,p2,seeded_needs_human_review,,no
|
| 56 |
+
G-0055,testing_quality,Stabilize release readiness checks for core user journeys with Gradle-based CI pipelines; include rollout safety checks.,medium,p1,seeded_needs_human_review,,no
|
| 57 |
+
G-0056,authentication,Refactor session refresh and logout flow using Retrofit and token-based auth; include explicit error messaging strategy.,medium,p2,seeded_needs_human_review,,no
|
| 58 |
+
G-0057,networking,Improve error mapping strategy for API failures using Kotlin serialization; handle HTTP timeout and 429 backoff scenarios.,low,p1,seeded_needs_human_review,,no
|
| 59 |
+
G-0058,database,Implement database migration plan for version upgrades for Android app data layer; define migration tests for schema changes.,high,p2,seeded_needs_human_review,,no
|
| 60 |
+
G-0059,ui_compose,Launch profile and account management screens with Navigation Compose and ViewModel; add screenshot or golden test coverage.,low,p2,seeded_needs_human_review,,no
|
| 61 |
+
G-0060,testing_quality,Improve flaky test triage and stabilization plan in a multi-module Android project; include lint baseline cleanup strategy.,high,p0,seeded_needs_human_review,,no
|
| 62 |
+
G-0061,authentication,Harden multi-step onboarding with account creation targeting Android 12+ and Material 3; include edge-case handling for expired tokens.,high,p0,seeded_needs_human_review,,no
|
| 63 |
+
G-0062,networking,"Improve network layer for feed pagination in a modularized Android project; include loading, empty, and failure UI states.",low,p2,seeded_needs_human_review,,no
|
| 64 |
+
G-0063,database,Implement local cache invalidation and refresh policy with repository mediation between API and local DB; enforce transactional writes where needed.,high,p2,seeded_needs_human_review,,no
|
| 65 |
+
G-0064,ui_compose,Build settings module with nested navigation for tablet and phone form factors; include performance considerations for recomposition.,medium,p1,seeded_needs_human_review,,no
|
| 66 |
+
G-0065,testing_quality,Increase unit and instrumentation coverage for critical flows for a legacy module under refactor; include deterministic test data setup.,low,p2,seeded_needs_human_review,,no
|
| 67 |
+
G-0066,authentication,Harden biometric authentication flow with clean architecture boundaries; include test coverage for ViewModel and repository.,high,p1,seeded_needs_human_review,,no
|
| 68 |
+
G-0067,networking,Optimize error mapping strategy for API failures for a Jetpack Compose app; handle HTTP timeout and 429 backoff scenarios.,low,p2,seeded_needs_human_review,,no
|
| 69 |
+
G-0068,database,Refine database migration plan for version upgrades for Android app data layer; enforce transactional writes where needed.,high,p0,seeded_needs_human_review,,no
|
| 70 |
+
G-0069,ui_compose,Redesign search experience with debounced queries with Navigation Compose and ViewModel; include accessibility and talkback support.,medium,p1,seeded_needs_human_review,,no
|
| 71 |
+
G-0070,testing_quality,Increase flaky test triage and stabilization plan in a multi-module Android project; include failure diagnostics and reporting.,high,p2,seeded_needs_human_review,,no
|
| 72 |
+
G-0071,authentication,Harden multi-step onboarding with account creation with offline-aware state handling; include accessibility requirements for forms.,high,p2,seeded_needs_human_review,,no
|
| 73 |
+
G-0072,networking,Design resilient API client with retry policy in a modularized Android project; ensure logs are safe and redact sensitive fields.,low,p2,seeded_needs_human_review,,no
|
| 74 |
+
G-0073,database,Migrate DAO query strategy for dashboard metrics using Kotlin and Room; enforce transactional writes where needed.,low,p0,seeded_needs_human_review,,no
|
| 75 |
+
G-0074,ui_compose,Implement search experience with debounced queries using Jetpack Compose and Material 3; ensure back stack behavior is deterministic.,low,p2,seeded_needs_human_review,,no
|
| 76 |
+
G-0075,testing_quality,Stabilize flaky test triage and stabilization plan for a Compose-heavy codebase; include failure diagnostics and reporting.,low,p2,seeded_needs_human_review,,no
|
| 77 |
+
G-0076,authentication,Refactor password reset and OTP verification journey with clean architecture boundaries; include explicit error messaging strategy.,low,p1,seeded_needs_human_review,,no
|
| 78 |
+
G-0077,networking,Improve background refresh flow with WorkManager with Hilt dependency injection; include unit and integration testing strategy.,medium,p2,seeded_needs_human_review,,no
|
| 79 |
+
G-0078,database,Create offline-first synchronization pipeline using Kotlin and Room; document rollback behavior for failed sync.,medium,p2,seeded_needs_human_review,,no
|
| 80 |
+
G-0079,ui_compose,Implement multi-step checkout UI flow with dark/light theme support; add screenshot or golden test coverage.,high,p1,seeded_needs_human_review,,no
|
| 81 |
+
G-0080,testing_quality,Stabilize release readiness checks for core user journeys with Gradle-based CI pipelines; include coverage thresholds and enforcement.,medium,p0,seeded_needs_human_review,,no
|
| 82 |
+
G-0081,authentication,Refactor session refresh and logout flow in a Kotlin Android app using MVVM and Compose; include analytics events for success and failure states.,low,p0,seeded_needs_human_review,,no
|
| 83 |
+
G-0082,networking,Optimize resilient API client with retry policy using Kotlin serialization; ensure logs are safe and redact sensitive fields.,low,p0,seeded_needs_human_review,,no
|
| 84 |
+
G-0083,database,Migrate database migration plan for version upgrades with repository mediation between API and local DB; define migration tests for schema changes.,high,p1,seeded_needs_human_review,,no
|
| 85 |
+
G-0084,ui_compose,Launch profile and account management screens with dark/light theme support; add screenshot or golden test coverage.,medium,p0,seeded_needs_human_review,,no
|
| 86 |
+
G-0085,testing_quality,Improve release readiness checks for core user journeys in a multi-module Android project; include failure diagnostics and reporting.,medium,p0,seeded_needs_human_review,,no
|
| 87 |
+
G-0086,authentication,Stabilize biometric authentication flow targeting Android 12+ and Material 3; include accessibility requirements for forms.,medium,p1,seeded_needs_human_review,,no
|
| 88 |
+
G-0087,networking,"Optimize network layer for feed pagination using Kotlin serialization; include loading, empty, and failure UI states.",low,p1,seeded_needs_human_review,,no
|
| 89 |
+
G-0088,database,Implement database migration plan for version upgrades with repository mediation between API and local DB; include performance checks for heavy queries.,medium,p1,seeded_needs_human_review,,no
|
| 90 |
+
G-0089,ui_compose,Redesign multi-step checkout UI flow with dark/light theme support; define UI state model for loading/empty/error.,high,p2,seeded_needs_human_review,,no
|
| 91 |
+
G-0090,testing_quality,Improve release readiness checks for core user journeys with Gradle-based CI pipelines; include deterministic test data setup.,low,p2,seeded_needs_human_review,,no
|
| 92 |
+
G-0091,authentication,Harden biometric authentication flow using Retrofit and token-based auth; include test coverage for ViewModel and repository.,low,p2,seeded_needs_human_review,,no
|
| 93 |
+
G-0092,networking,Design error mapping strategy for API failures for a Jetpack Compose app; handle HTTP timeout and 429 backoff scenarios.,medium,p1,seeded_needs_human_review,,no
|
| 94 |
+
G-0093,database,Implement local cache invalidation and refresh policy for a Compose-first architecture; include performance checks for heavy queries.,medium,p2,seeded_needs_human_review,,no
|
| 95 |
+
G-0094,ui_compose,Redesign Compose dashboard screen with filtering using Jetpack Compose and Material 3; ensure back stack behavior is deterministic.,low,p2,seeded_needs_human_review,,no
|
| 96 |
+
G-0095,testing_quality,Automate CI quality gate for Android modules for a Kotlin Android app; include rollout safety checks.,low,p2,seeded_needs_human_review,,no
|
| 97 |
+
G-0096,authentication,Stabilize biometric authentication flow with offline-aware state handling; include accessibility requirements for forms.,high,p0,seeded_needs_human_review,,no
|
| 98 |
+
G-0097,networking,Improve error mapping strategy for API failures for a Jetpack Compose app; include unit and integration testing strategy.,medium,p0,seeded_needs_human_review,,no
|
| 99 |
+
G-0098,database,Rework local cache invalidation and refresh policy for a Compose-first architecture; include performance checks for heavy queries.,medium,p2,seeded_needs_human_review,,no
|
| 100 |
+
G-0099,ui_compose,Build multi-step checkout UI flow with dark/light theme support; define UI state model for loading/empty/error.,medium,p1,seeded_needs_human_review,,no
|
| 101 |
+
G-0100,testing_quality,Increase flaky test triage and stabilization plan in a multi-module Android project; include deterministic test data setup.,medium,p1,seeded_needs_human_review,,no
|
| 102 |
+
G-0101,authentication,Ship login and signup flow using Retrofit and token-based auth; include test coverage for ViewModel and repository.,low,p1,seeded_needs_human_review,,no
|
| 103 |
+
G-0102,networking,Design resilient API client with retry policy for an Android app using Retrofit and coroutines; ensure logs are safe and redact sensitive fields.,medium,p1,seeded_needs_human_review,,no
|
| 104 |
+
G-0103,database,Implement DAO query strategy for dashboard metrics for a Compose-first architecture; define migration tests for schema changes.,low,p1,seeded_needs_human_review,,no
|
| 105 |
+
G-0104,ui_compose,Polish multi-step checkout UI flow using Jetpack Compose and Material 3; include performance considerations for recomposition.,medium,p1,seeded_needs_human_review,,no
|
| 106 |
+
G-0105,testing_quality,Increase flaky test triage and stabilization plan for a Compose-heavy codebase; include lint baseline cleanup strategy.,medium,p0,seeded_needs_human_review,,no
|
| 107 |
+
G-0106,authentication,Ship multi-step onboarding with account creation using Retrofit and token-based auth; include analytics events for success and failure states.,low,p1,seeded_needs_human_review,,no
|
| 108 |
+
G-0107,networking,Migrate error mapping strategy for API failures for an Android app using Retrofit and coroutines; ensure logs are safe and redact sensitive fields.,medium,p0,seeded_needs_human_review,,no
|
| 109 |
+
G-0108,database,Rework local cache invalidation and refresh policy for a Compose-first architecture; include conflict resolution strategy.,high,p0,seeded_needs_human_review,,no
|
| 110 |
+
G-0109,ui_compose,Implement search experience with debounced queries in a modular Android app; include performance considerations for recomposition.,high,p2,seeded_needs_human_review,,no
|
| 111 |
+
G-0110,testing_quality,Increase CI quality gate for Android modules in a multi-module Android project; include lint baseline cleanup strategy.,low,p2,seeded_needs_human_review,,no
|
| 112 |
+
G-0111,authentication,Harden password reset and OTP verification journey with clean architecture boundaries; include test coverage for ViewModel and repository.,medium,p1,seeded_needs_human_review,,no
|
| 113 |
+
G-0112,networking,Improve error mapping strategy for API failures using Kotlin serialization; ensure logs are safe and redact sensitive fields.,medium,p2,seeded_needs_human_review,,no
|
| 114 |
+
G-0113,database,Rework Room schema for task and project entities in an app with large dataset pagination; define migration tests for schema changes.,medium,p2,seeded_needs_human_review,,no
|
| 115 |
+
G-0114,ui_compose,Implement Compose dashboard screen with filtering using Jetpack Compose and Material 3; define UI state model for loading/empty/error.,low,p2,seeded_needs_human_review,,no
|
| 116 |
+
G-0115,testing_quality,Automate lint and static analysis quality gates in a multi-module Android project; include failure diagnostics and reporting.,medium,p0,seeded_needs_human_review,,no
|
| 117 |
+
G-0116,authentication,Implement multi-step onboarding with account creation using Retrofit and token-based auth; include analytics events for success and failure states.,high,p1,seeded_needs_human_review,,no
|
| 118 |
+
G-0117,networking,Improve resilient API client with retry policy for a Jetpack Compose app; include unit and integration testing strategy.,high,p0,seeded_needs_human_review,,no
|
| 119 |
+
G-0118,database,Create local cache invalidation and refresh policy with repository mediation between API and local DB; define migration tests for schema changes.,high,p2,seeded_needs_human_review,,no
|
| 120 |
+
G-0119,ui_compose,Build multi-step checkout UI flow with dark/light theme support; ensure back stack behavior is deterministic.,high,p2,seeded_needs_human_review,,no
|
| 121 |
+
G-0120,testing_quality,Increase release readiness checks for core user journeys in a multi-module Android project; include coverage thresholds and enforcement.,high,p1,seeded_needs_human_review,,no
|
| 122 |
+
G-0121,authentication,Ship login and signup flow targeting Android 12+ and Material 3; include edge-case handling for expired tokens.,medium,p0,seeded_needs_human_review,,no
|
| 123 |
+
G-0122,networking,Migrate repository sync flow for remote-first data for an Android app using Retrofit and coroutines; include unit and integration testing strategy.,high,p1,seeded_needs_human_review,,no
|
| 124 |
+
G-0123,database,Create DAO query strategy for dashboard metrics for a Compose-first architecture; define migration tests for schema changes.,medium,p1,seeded_needs_human_review,,no
|
| 125 |
+
G-0124,ui_compose,Polish settings module with nested navigation with dark/light theme support; define UI state model for loading/empty/error.,high,p0,seeded_needs_human_review,,no
|
| 126 |
+
G-0125,testing_quality,Improve release readiness checks for core user journeys with Gradle-based CI pipelines; include lint baseline cleanup strategy.,medium,p1,seeded_needs_human_review,,no
|
| 127 |
+
G-0126,authentication,Ship session refresh and logout flow with clean architecture boundaries; include test coverage for ViewModel and repository.,low,p1,seeded_needs_human_review,,no
|
| 128 |
+
G-0127,networking,Migrate resilient API client with retry policy with Hilt dependency injection; include unit and integration testing strategy.,high,p0,seeded_needs_human_review,,no
|
| 129 |
+
G-0128,database,Rework offline-first synchronization pipeline for Android app data layer; include performance checks for heavy queries.,medium,p2,seeded_needs_human_review,,no
|
| 130 |
+
G-0129,ui_compose,Polish settings module with nested navigation for tablet and phone form factors; add screenshot or golden test coverage.,medium,p1,seeded_needs_human_review,,no
|
| 131 |
+
G-0130,testing_quality,Automate flaky test triage and stabilization plan with Gradle-based CI pipelines; include coverage thresholds and enforcement.,high,p2,seeded_needs_human_review,,no
|
| 132 |
+
G-0131,authentication,Implement biometric authentication flow with offline-aware state handling; include analytics events for success and failure states.,high,p2,seeded_needs_human_review,,no
|
| 133 |
+
G-0132,networking,Migrate error mapping strategy for API failures with Hilt dependency injection; handle HTTP timeout and 429 backoff scenarios.,low,p1,seeded_needs_human_review,,no
|
| 134 |
+
G-0133,database,Refine DAO query strategy for dashboard metrics using Kotlin and Room; enforce transactional writes where needed.,high,p0,seeded_needs_human_review,,no
|
| 135 |
+
G-0134,ui_compose,Build search experience with debounced queries in a modular Android app; include performance considerations for recomposition.,medium,p1,seeded_needs_human_review,,no
|
| 136 |
+
G-0135,testing_quality,Automate flaky test triage and stabilization plan for a Compose-heavy codebase; include lint baseline cleanup strategy.,medium,p1,seeded_needs_human_review,,no
|
| 137 |
+
G-0136,authentication,Harden biometric authentication flow in a Kotlin Android app using MVVM and Compose; include test coverage for ViewModel and repository.,medium,p2,seeded_needs_human_review,,no
|
| 138 |
+
G-0137,networking,Optimize resilient API client with retry policy in a modularized Android project; include optimistic UI updates.,high,p1,seeded_needs_human_review,,no
|
| 139 |
+
G-0138,database,Migrate database migration plan for version upgrades in an app with large dataset pagination; document rollback behavior for failed sync.,medium,p2,seeded_needs_human_review,,no
|
| 140 |
+
G-0139,ui_compose,Redesign profile and account management screens with Navigation Compose and ViewModel; add screenshot or golden test coverage.,low,p1,seeded_needs_human_review,,no
|
| 141 |
+
G-0140,testing_quality,Increase release readiness checks for core user journeys in a multi-module Android project; include deterministic test data setup.,low,p2,seeded_needs_human_review,,no
|
| 142 |
+
G-0141,authentication,Ship session refresh and logout flow using Retrofit and token-based auth; include analytics events for success and failure states.,low,p2,seeded_needs_human_review,,no
|
| 143 |
+
G-0142,networking,Optimize repository sync flow for remote-first data with Hilt dependency injection; ensure logs are safe and redact sensitive fields.,medium,p1,seeded_needs_human_review,,no
|
| 144 |
+
G-0143,database,Refine Room schema for task and project entities with repository mediation between API and local DB; include performance checks for heavy queries.,low,p2,seeded_needs_human_review,,no
|
| 145 |
+
G-0144,ui_compose,Polish search experience with debounced queries using Jetpack Compose and Material 3; include performance considerations for recomposition.,high,p0,seeded_needs_human_review,,no
|
| 146 |
+
G-0145,testing_quality,Increase lint and static analysis quality gates in a multi-module Android project; include rollout safety checks.,medium,p2,seeded_needs_human_review,,no
|
| 147 |
+
G-0146,authentication,Refactor login and signup flow targeting Android 12+ and Material 3; include analytics events for success and failure states.,high,p0,seeded_needs_human_review,,no
|
| 148 |
+
G-0147,networking,Optimize resilient API client with retry policy for a Jetpack Compose app; ensure logs are safe and redact sensitive fields.,medium,p1,seeded_needs_human_review,,no
|
| 149 |
+
G-0148,database,Migrate database migration plan for version upgrades for a Compose-first architecture; enforce transactional writes where needed.,high,p0,seeded_needs_human_review,,no
|
| 150 |
+
G-0149,ui_compose,Implement multi-step checkout UI flow using Jetpack Compose and Material 3; define UI state model for loading/empty/error.,high,p2,seeded_needs_human_review,,no
|
| 151 |
+
G-0150,testing_quality,Improve unit and instrumentation coverage for critical flows in a multi-module Android project; include failure diagnostics and reporting.,low,p0,seeded_needs_human_review,,no
|
| 152 |
+
G-0151,authentication,Implement biometric authentication flow in a Kotlin Android app using MVVM and Compose; include analytics events for success and failure states.,medium,p0,seeded_needs_human_review,,no
|
| 153 |
+
G-0152,networking,Optimize error mapping strategy for API failures using Kotlin serialization; handle HTTP timeout and 429 backoff scenarios.,low,p1,seeded_needs_human_review,,no
|
| 154 |
+
G-0153,database,Migrate DAO query strategy for dashboard metrics for Android app data layer; include conflict resolution strategy.,medium,p0,seeded_needs_human_review,,no
|
| 155 |
+
G-0154,ui_compose,Launch settings module with nested navigation with dark/light theme support; include accessibility and talkback support.,high,p2,seeded_needs_human_review,,no
|
| 156 |
+
G-0155,testing_quality,Enforce flaky test triage and stabilization plan in a multi-module Android project; include coverage thresholds and enforcement.,low,p2,seeded_needs_human_review,,no
|
| 157 |
+
G-0156,authentication,Harden multi-step onboarding with account creation targeting Android 12+ and Material 3; include explicit error messaging strategy.,medium,p2,seeded_needs_human_review,,no
|
| 158 |
+
G-0157,networking,"Migrate repository sync flow for remote-first data with Hilt dependency injection; include loading, empty, and failure UI states.",high,p0,seeded_needs_human_review,,no
|
| 159 |
+
G-0158,database,Rework DAO query strategy for dashboard metrics for Android app data layer; document rollback behavior for failed sync.,low,p1,seeded_needs_human_review,,no
|
| 160 |
+
G-0159,ui_compose,Build multi-step checkout UI flow for tablet and phone form factors; include accessibility and talkback support.,low,p2,seeded_needs_human_review,,no
|
| 161 |
+
G-0160,testing_quality,Automate release readiness checks for core user journeys for a Kotlin Android app; include deterministic test data setup.,high,p2,seeded_needs_human_review,,no
|
| 162 |
+
G-0161,authentication,Refactor password reset and OTP verification journey targeting Android 12+ and Material 3; include analytics events for success and failure states.,medium,p2,seeded_needs_human_review,,no
|
| 163 |
+
G-0162,networking,Optimize error mapping strategy for API failures with Hilt dependency injection; handle HTTP timeout and 429 backoff scenarios.,medium,p1,seeded_needs_human_review,,no
|
| 164 |
+
G-0163,database,Rework offline-first synchronization pipeline with repository mediation between API and local DB; define migration tests for schema changes.,low,p1,seeded_needs_human_review,,no
|
| 165 |
+
G-0164,ui_compose,Polish search experience with debounced queries for tablet and phone form factors; ensure back stack behavior is deterministic.,high,p2,seeded_needs_human_review,,no
|
| 166 |
+
G-0165,testing_quality,Stabilize unit and instrumentation coverage for critical flows for a Compose-heavy codebase; include deterministic test data setup.,medium,p2,seeded_needs_human_review,,no
|
| 167 |
+
G-0166,authentication,Stabilize multi-step onboarding with account creation in a Kotlin Android app using MVVM and Compose; include accessibility requirements for forms.,medium,p1,seeded_needs_human_review,,no
|
| 168 |
+
G-0167,networking,"Build resilient API client with retry policy for a Jetpack Compose app; include loading, empty, and failure UI states.",high,p1,seeded_needs_human_review,,no
|
| 169 |
+
G-0168,database,Rework Room schema for task and project entities using Kotlin and Room; enforce transactional writes where needed.,high,p2,seeded_needs_human_review,,no
|
| 170 |
+
G-0169,ui_compose,Build search experience with debounced queries with dark/light theme support; include accessibility and talkback support.,low,p0,seeded_needs_human_review,,no
|
| 171 |
+
G-0170,testing_quality,Automate lint and static analysis quality gates in a multi-module Android project; include deterministic test data setup.,high,p2,seeded_needs_human_review,,no
|
| 172 |
+
G-0171,authentication,Ship password reset and OTP verification journey in a Kotlin Android app using MVVM and Compose; include test coverage for ViewModel and repository.,low,p1,seeded_needs_human_review,,no
|
| 173 |
+
G-0172,networking,"Build resilient API client with retry policy with Hilt dependency injection; include loading, empty, and failure UI states.",high,p0,seeded_needs_human_review,,no
|
| 174 |
+
G-0173,database,Migrate DAO query strategy for dashboard metrics for a Compose-first architecture; include performance checks for heavy queries.,low,p1,seeded_needs_human_review,,no
|
| 175 |
+
G-0174,ui_compose,Launch settings module with nested navigation with dark/light theme support; define UI state model for loading/empty/error.,high,p0,seeded_needs_human_review,,no
|
| 176 |
+
G-0175,testing_quality,Enforce unit and instrumentation coverage for critical flows for a Compose-heavy codebase; include lint baseline cleanup strategy.,medium,p0,seeded_needs_human_review,,no
|
| 177 |
+
G-0176,authentication,Harden login and signup flow with clean architecture boundaries; include explicit error messaging strategy.,high,p0,seeded_needs_human_review,,no
|
| 178 |
+
G-0177,networking,Migrate resilient API client with retry policy with Hilt dependency injection; include unit and integration testing strategy.,medium,p1,seeded_needs_human_review,,no
|
| 179 |
+
G-0178,database,Migrate database migration plan for version upgrades in an app with large dataset pagination; include performance checks for heavy queries.,medium,p1,seeded_needs_human_review,,no
|
| 180 |
+
G-0179,ui_compose,Redesign settings module with nested navigation in a modular Android app; ensure back stack behavior is deterministic.,low,p1,seeded_needs_human_review,,no
|
| 181 |
+
G-0180,testing_quality,Increase flaky test triage and stabilization plan for a legacy module under refactor; include lint baseline cleanup strategy.,medium,p0,seeded_needs_human_review,,no
|
| 182 |
+
G-0181,authentication,Refactor password reset and OTP verification journey in a Kotlin Android app using MVVM and Compose; include test coverage for ViewModel and repository.,high,p0,seeded_needs_human_review,,no
|
| 183 |
+
G-0182,networking,Improve network layer for feed pagination with Hilt dependency injection; handle HTTP timeout and 429 backoff scenarios.,high,p1,seeded_needs_human_review,,no
|
| 184 |
+
G-0183,database,Create local cache invalidation and refresh policy for a Compose-first architecture; include conflict resolution strategy.,low,p1,seeded_needs_human_review,,no
|
| 185 |
+
G-0184,ui_compose,Build profile and account management screens in a modular Android app; ensure back stack behavior is deterministic.,high,p2,seeded_needs_human_review,,no
|
| 186 |
+
G-0185,testing_quality,Improve release readiness checks for core user journeys for a legacy module under refactor; include deterministic test data setup.,high,p0,seeded_needs_human_review,,no
|
| 187 |
+
G-0186,authentication,Stabilize multi-step onboarding with account creation in a Kotlin Android app using MVVM and Compose; include accessibility requirements for forms.,low,p2,seeded_needs_human_review,,no
|
| 188 |
+
G-0187,networking,Improve resilient API client with retry policy for an Android app using Retrofit and coroutines; ensure logs are safe and redact sensitive fields.,low,p0,seeded_needs_human_review,,no
|
| 189 |
+
G-0188,database,Create DAO query strategy for dashboard metrics using Kotlin and Room; enforce transactional writes where needed.,low,p2,seeded_needs_human_review,,no
|
| 190 |
+
G-0189,ui_compose,Build Compose dashboard screen with filtering for tablet and phone form factors; add screenshot or golden test coverage.,medium,p1,seeded_needs_human_review,,no
|
| 191 |
+
G-0190,testing_quality,Enforce lint and static analysis quality gates with Gradle-based CI pipelines; include lint baseline cleanup strategy.,high,p0,seeded_needs_human_review,,no
|
| 192 |
+
G-0191,authentication,Refactor biometric authentication flow using Retrofit and token-based auth; include edge-case handling for expired tokens.,high,p1,seeded_needs_human_review,,no
|
| 193 |
+
G-0192,networking,Optimize resilient API client with retry policy with Hilt dependency injection; include unit and integration testing strategy.,low,p2,seeded_needs_human_review,,no
|
| 194 |
+
G-0193,database,Rework offline-first synchronization pipeline for a Compose-first architecture; enforce transactional writes where needed.,high,p2,seeded_needs_human_review,,no
|
| 195 |
+
G-0194,ui_compose,Polish profile and account management screens in a modular Android app; define UI state model for loading/empty/error.,low,p1,seeded_needs_human_review,,no
|
| 196 |
+
G-0195,testing_quality,Improve release readiness checks for core user journeys for a Compose-heavy codebase; include lint baseline cleanup strategy.,high,p1,seeded_needs_human_review,,no
|
| 197 |
+
G-0196,authentication,Stabilize session refresh and logout flow using Retrofit and token-based auth; include analytics events for success and failure states.,medium,p2,seeded_needs_human_review,,no
|
| 198 |
+
G-0197,networking,"Design error mapping strategy for API failures for a Jetpack Compose app; include loading, empty, and failure UI states.",high,p1,seeded_needs_human_review,,no
|
| 199 |
+
G-0198,database,Migrate Room schema for task and project entities for a Compose-first architecture; enforce transactional writes where needed.,low,p0,seeded_needs_human_review,,no
|
| 200 |
+
G-0199,ui_compose,Implement multi-step checkout UI flow with dark/light theme support; add screenshot or golden test coverage.,low,p0,seeded_needs_human_review,,no
|
| 201 |
+
G-0200,testing_quality,Improve lint and static analysis quality gates in a multi-module Android project; include rollout safety checks.,medium,p0,seeded_needs_human_review,,no
|
gold/android_gold_seed_v1.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
gold/android_gold_v1_approved.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw/prompt_labels.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw/prompt_plans.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw/test.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw/train.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw/val.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|