[ { "id": "AIDOC_00001", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "concise", "source_code": "int process_metric(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise docstring for the metric utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00002", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly README for the notification utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00003", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM imports_tasks;", "task": "Write a enterprise API reference for the task utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00004", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "tutorial", "source_code": "def process_route(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial inline comment for the route utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00005", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "technical", "source_code": "function processService(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical usage example for the service utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00006", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "concise", "source_code": "function processAdapter(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise release note for the adapter utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00007", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "public int processHandler(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly architecture note for the handler utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00008", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "enterprise", "source_code": "func processController(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise docstring for the controller utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00009", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "tutorial", "source_code": "fn process_repository(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial README for the repository utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00010", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "technical", "source_code": "int process_client(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical API reference for the client utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00011", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise inline comment for the pipeline utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00012", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM notifications_modules;", "task": "Write a developer-friendly usage example for the module utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00013", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "enterprise", "source_code": "def process_invoice(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise release note for the invoice utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00014", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "tutorial", "source_code": "function processSession(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial architecture note for the session utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00015", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "technical", "source_code": "function processToken(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical docstring for the token utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00016", "category": "documentation", "language": "java", "documentation_type": "README", "style": "concise", "source_code": "public int processQueue(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise README for the queue utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00017", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "func processWorker(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly API reference for the worker utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00018", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "enterprise", "source_code": "fn process_parser(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise inline comment for the parser utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00019", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "tutorial", "source_code": "int process_report(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial usage example for the report utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00020", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical release note for the profile utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00021", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "concise", "source_code": "SELECT COUNT(*) FROM recommendations_carts;", "task": "Write a concise architecture note for the cart utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00022", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "def process_order(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly docstring for the order utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00023", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "enterprise", "source_code": "function processCache_Key(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise README for the cache_key utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00024", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "tutorial", "source_code": "function processJob(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial API reference for the job utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00025", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "technical", "source_code": "public int processEvent(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical inline comment for the event utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00026", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "concise", "source_code": "func processPayload(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise usage example for the payload utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00027", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "developer-friendly", "source_code": "fn process_file(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly release note for the file utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00028", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "enterprise", "source_code": "int process_record(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise architecture note for the record utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00029", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial docstring for the metric utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00030", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "technical", "source_code": "SELECT COUNT(*) FROM admin_notifications;", "task": "Write a technical README for the notification utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00031", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "concise", "source_code": "def process_task(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise API reference for the task utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00032", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "function processRoute(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly inline comment for the route utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00033", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "enterprise", "source_code": "function processService(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise usage example for the service utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00034", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "tutorial", "source_code": "public int processAdapter(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial release note for the adapter utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00035", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "technical", "source_code": "func processHandler(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical architecture note for the handler utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00036", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "concise", "source_code": "fn process_controller(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise docstring for the controller utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00037", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "developer-friendly", "source_code": "int process_repository(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly README for the repository utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00038", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise API reference for the client utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00039", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM scheduler_pipelines;", "task": "Write a tutorial inline comment for the pipeline utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00040", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "technical", "source_code": "def process_module(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical usage example for the module utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00041", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "concise", "source_code": "function processInvoice(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise release note for the invoice utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00042", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "function processSession(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly architecture note for the session utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00043", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "enterprise", "source_code": "public int processToken(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise docstring for the token utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00044", "category": "documentation", "language": "go", "documentation_type": "README", "style": "tutorial", "source_code": "func processQueue(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial README for the queue utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00045", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "technical", "source_code": "fn process_worker(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical API reference for the worker utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00046", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "concise", "source_code": "int process_parser(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise inline comment for the parser utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00047", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly usage example for the report utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00048", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM sync_profiles;", "task": "Write a enterprise release note for the profile utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00049", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "tutorial", "source_code": "def process_cart(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial architecture note for the cart utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00050", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "technical", "source_code": "function processOrder(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical docstring for the order utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00051", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "concise", "source_code": "function processCache_Key(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise README for the cache_key utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00052", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "public int processJob(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly API reference for the job utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00053", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "enterprise", "source_code": "func processEvent(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise inline comment for the event utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00054", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "tutorial", "source_code": "fn process_payload(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial usage example for the payload utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00055", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "technical", "source_code": "int process_file(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical release note for the file utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00056", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise architecture note for the record utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00057", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM auth_metrics;", "task": "Write a developer-friendly docstring for the metric utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00058", "category": "documentation", "language": "python", "documentation_type": "README", "style": "enterprise", "source_code": "def process_notification(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise README for the notification utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00059", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "tutorial", "source_code": "function processTask(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial API reference for the task utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00060", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "technical", "source_code": "function processRoute(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical inline comment for the route utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00061", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "concise", "source_code": "public int processService(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise usage example for the service utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00062", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "developer-friendly", "source_code": "func processAdapter(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly release note for the adapter utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00063", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "enterprise", "source_code": "fn process_handler(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise architecture note for the handler utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00064", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "tutorial", "source_code": "int process_controller(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial docstring for the controller utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00065", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical README for the repository utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00066", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "concise", "source_code": "SELECT COUNT(*) FROM profiles_clients;", "task": "Write a concise API reference for the client utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00067", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "def process_pipeline(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly inline comment for the pipeline utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00068", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "enterprise", "source_code": "function processModule(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise usage example for the module utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00069", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "tutorial", "source_code": "function processInvoice(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial release note for the invoice utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00070", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "technical", "source_code": "public int processSession(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical architecture note for the session utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00071", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "concise", "source_code": "func processToken(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise docstring for the token utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00072", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "developer-friendly", "source_code": "fn process_queue(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly README for the queue utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00073", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "enterprise", "source_code": "int process_worker(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise API reference for the worker utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00074", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial inline comment for the parser utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00075", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "technical", "source_code": "SELECT COUNT(*) FROM imports_reports;", "task": "Write a technical usage example for the report utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00076", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "concise", "source_code": "def process_profile(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise release note for the profile utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00077", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "function processCart(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly architecture note for the cart utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00078", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "enterprise", "source_code": "function processOrder(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise docstring for the order utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00079", "category": "documentation", "language": "java", "documentation_type": "README", "style": "tutorial", "source_code": "public int processCache_Key(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial README for the cache_key utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00080", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "technical", "source_code": "func processJob(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical API reference for the job utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00081", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "concise", "source_code": "fn process_event(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise inline comment for the event utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00082", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "int process_payload(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly usage example for the payload utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00083", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise release note for the file utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00084", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM notifications_records;", "task": "Write a tutorial architecture note for the record utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00085", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "technical", "source_code": "def process_metric(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical docstring for the metric utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00086", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "concise", "source_code": "function processNotification(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise README for the notification utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00087", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "function processTask(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly API reference for the task utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00088", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "enterprise", "source_code": "public int processRoute(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise inline comment for the route utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00089", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "tutorial", "source_code": "func processService(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial usage example for the service utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00090", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "technical", "source_code": "fn process_adapter(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical release note for the adapter utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00091", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "concise", "source_code": "int process_handler(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise architecture note for the handler utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00092", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly docstring for the controller utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00093", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM recommendations_repositorys;", "task": "Write a enterprise README for the repository utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00094", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "tutorial", "source_code": "def process_client(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial API reference for the client utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00095", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "technical", "source_code": "function processPipeline(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical inline comment for the pipeline utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00096", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "concise", "source_code": "function processModule(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise usage example for the module utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00097", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "developer-friendly", "source_code": "public int processInvoice(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly release note for the invoice utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00098", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "enterprise", "source_code": "func processSession(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise architecture note for the session utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00099", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "tutorial", "source_code": "fn process_token(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial docstring for the token utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00100", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "technical", "source_code": "int process_queue(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical README for the queue utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00101", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise API reference for the worker utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00102", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM admin_parsers;", "task": "Write a developer-friendly inline comment for the parser utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00103", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "enterprise", "source_code": "def process_report(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise usage example for the report utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00104", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "tutorial", "source_code": "function processProfile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial release note for the profile utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00105", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "technical", "source_code": "function processCart(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical architecture note for the cart utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00106", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "concise", "source_code": "public int processOrder(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise docstring for the order utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00107", "category": "documentation", "language": "go", "documentation_type": "README", "style": "developer-friendly", "source_code": "func processCache_Key(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly README for the cache_key utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00108", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "enterprise", "source_code": "fn process_job(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise API reference for the job utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00109", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "tutorial", "source_code": "int process_event(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial inline comment for the event utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00110", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical usage example for the payload utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00111", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "concise", "source_code": "SELECT COUNT(*) FROM scheduler_files;", "task": "Write a concise release note for the file utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00112", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "def process_record(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly architecture note for the record utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00113", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "enterprise", "source_code": "function processMetric(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise docstring for the metric utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00114", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "tutorial", "source_code": "function processNotification(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial README for the notification utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00115", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "technical", "source_code": "public int processTask(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical API reference for the task utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00116", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "concise", "source_code": "func processRoute(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise inline comment for the route utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00117", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "fn process_service(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly usage example for the service utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00118", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "enterprise", "source_code": "int process_adapter(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise release note for the adapter utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00119", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial architecture note for the handler utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00120", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "technical", "source_code": "SELECT COUNT(*) FROM sync_controllers;", "task": "Write a technical docstring for the controller utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00121", "category": "documentation", "language": "python", "documentation_type": "README", "style": "concise", "source_code": "def process_repository(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise README for the repository utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00122", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "function processClient(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly API reference for the client utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00123", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "enterprise", "source_code": "function processPipeline(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise inline comment for the pipeline utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00124", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "tutorial", "source_code": "public int processModule(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial usage example for the module utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00125", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "technical", "source_code": "func processInvoice(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical release note for the invoice utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00126", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "concise", "source_code": "fn process_session(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise architecture note for the session utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00127", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "int process_token(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly docstring for the token utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00128", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise README for the queue utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00129", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM auth_workers;", "task": "Write a tutorial API reference for the worker utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00130", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "technical", "source_code": "def process_parser(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical inline comment for the parser utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00131", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "concise", "source_code": "function processReport(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise usage example for the report utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00132", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "developer-friendly", "source_code": "function processProfile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly release note for the profile utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00133", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "enterprise", "source_code": "public int processCart(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise architecture note for the cart utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00134", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "tutorial", "source_code": "func processOrder(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial docstring for the order utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00135", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "technical", "source_code": "fn process_cache_key(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical README for the cache_key utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00136", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "concise", "source_code": "int process_job(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise API reference for the job utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00137", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly inline comment for the event utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00138", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM profiles_payloads;", "task": "Write a enterprise usage example for the payload utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00139", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "tutorial", "source_code": "def process_file(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial release note for the file utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00140", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "technical", "source_code": "function processRecord(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical architecture note for the record utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00141", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "concise", "source_code": "function processMetric(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise docstring for the metric utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00142", "category": "documentation", "language": "java", "documentation_type": "README", "style": "developer-friendly", "source_code": "public int processNotification(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly README for the notification utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00143", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "enterprise", "source_code": "func processTask(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise API reference for the task utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00144", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "tutorial", "source_code": "fn process_route(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial inline comment for the route utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00145", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "technical", "source_code": "int process_service(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical usage example for the service utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00146", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise release note for the adapter utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00147", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM imports_handlers;", "task": "Write a developer-friendly architecture note for the handler utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00148", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "enterprise", "source_code": "def process_controller(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise docstring for the controller utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00149", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "tutorial", "source_code": "function processRepository(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial README for the repository utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00150", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "technical", "source_code": "function processClient(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical API reference for the client utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00151", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "concise", "source_code": "public int processPipeline(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise inline comment for the pipeline utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00152", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "func processModule(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly usage example for the module utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00153", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "enterprise", "source_code": "fn process_invoice(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise release note for the invoice utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00154", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "tutorial", "source_code": "int process_session(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial architecture note for the session utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00155", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical docstring for the token utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00156", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "concise", "source_code": "SELECT COUNT(*) FROM notifications_queues;", "task": "Write a concise README for the queue utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00157", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "def process_worker(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly API reference for the worker utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00158", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "enterprise", "source_code": "function processParser(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise inline comment for the parser utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00159", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "tutorial", "source_code": "function processReport(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial usage example for the report utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00160", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "technical", "source_code": "public int processProfile(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical release note for the profile utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00161", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "concise", "source_code": "func processCart(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise architecture note for the cart utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00162", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "fn process_order(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly docstring for the order utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00163", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "enterprise", "source_code": "int process_cache_key(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise README for the cache_key utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00164", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial API reference for the job utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00165", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "technical", "source_code": "SELECT COUNT(*) FROM recommendations_events;", "task": "Write a technical inline comment for the event utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00166", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "concise", "source_code": "def process_payload(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise usage example for the payload utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00167", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "developer-friendly", "source_code": "function processFile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly release note for the file utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00168", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "enterprise", "source_code": "function processRecord(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise architecture note for the record utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00169", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "tutorial", "source_code": "public int processMetric(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial docstring for the metric utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00170", "category": "documentation", "language": "go", "documentation_type": "README", "style": "technical", "source_code": "func processNotification(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical README for the notification utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00171", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "concise", "source_code": "fn process_task(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise API reference for the task utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00172", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "int process_route(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly inline comment for the route utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00173", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise usage example for the service utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00174", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM admin_adapters;", "task": "Write a tutorial release note for the adapter utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00175", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "technical", "source_code": "def process_handler(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical architecture note for the handler utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00176", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "concise", "source_code": "function processController(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise docstring for the controller utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00177", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "developer-friendly", "source_code": "function processRepository(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly README for the repository utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00178", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "enterprise", "source_code": "public int processClient(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise API reference for the client utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00179", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "tutorial", "source_code": "func processPipeline(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial inline comment for the pipeline utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00180", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "technical", "source_code": "fn process_module(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical usage example for the module utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00181", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "concise", "source_code": "int process_invoice(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise release note for the invoice utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00182", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly architecture note for the session utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00183", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM scheduler_tokens;", "task": "Write a enterprise docstring for the token utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00184", "category": "documentation", "language": "python", "documentation_type": "README", "style": "tutorial", "source_code": "def process_queue(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial README for the queue utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00185", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "technical", "source_code": "function processWorker(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical API reference for the worker utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00186", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "concise", "source_code": "function processParser(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise inline comment for the parser utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00187", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "public int processReport(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly usage example for the report utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00188", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "enterprise", "source_code": "func processProfile(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise release note for the profile utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00189", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "tutorial", "source_code": "fn process_cart(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial architecture note for the cart utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00190", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "technical", "source_code": "int process_order(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical docstring for the order utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00191", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise README for the cache_key utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00192", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM sync_jobs;", "task": "Write a developer-friendly API reference for the job utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00193", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "enterprise", "source_code": "def process_event(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise inline comment for the event utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00194", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "tutorial", "source_code": "function processPayload(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial usage example for the payload utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00195", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "technical", "source_code": "function processFile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical release note for the file utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00196", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "concise", "source_code": "public int processRecord(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise architecture note for the record utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00197", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "func processMetric(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly docstring for the metric utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00198", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "enterprise", "source_code": "fn process_notification(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise README for the notification utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00199", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "tutorial", "source_code": "int process_task(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial API reference for the task utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00200", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical inline comment for the route utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00201", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "concise", "source_code": "SELECT COUNT(*) FROM auth_services;", "task": "Write a concise usage example for the service utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00202", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "developer-friendly", "source_code": "def process_adapter(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly release note for the adapter utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00203", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "enterprise", "source_code": "function processHandler(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise architecture note for the handler utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00204", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "tutorial", "source_code": "function processController(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial docstring for the controller utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00205", "category": "documentation", "language": "java", "documentation_type": "README", "style": "technical", "source_code": "public int processRepository(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical README for the repository utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00206", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "concise", "source_code": "func processClient(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise API reference for the client utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00207", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "fn process_pipeline(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly inline comment for the pipeline utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00208", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "enterprise", "source_code": "int process_module(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise usage example for the module utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00209", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial release note for the invoice utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00210", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "technical", "source_code": "SELECT COUNT(*) FROM profiles_sessions;", "task": "Write a technical architecture note for the session utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00211", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "concise", "source_code": "def process_token(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise docstring for the token utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00212", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "developer-friendly", "source_code": "function processQueue(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly README for the queue utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00213", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "enterprise", "source_code": "function processWorker(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise API reference for the worker utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00214", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "tutorial", "source_code": "public int processParser(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial inline comment for the parser utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00215", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "technical", "source_code": "func processReport(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical usage example for the report utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00216", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "concise", "source_code": "fn process_profile(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise release note for the profile utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00217", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "int process_cart(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly architecture note for the cart utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00218", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise docstring for the order utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00219", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM imports_cache_keys;", "task": "Write a tutorial README for the cache_key utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00220", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "technical", "source_code": "def process_job(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical API reference for the job utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00221", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "concise", "source_code": "function processEvent(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise inline comment for the event utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00222", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "function processPayload(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly usage example for the payload utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00223", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "enterprise", "source_code": "public int processFile(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise release note for the file utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00224", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "tutorial", "source_code": "func processRecord(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial architecture note for the record utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00225", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "technical", "source_code": "fn process_metric(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical docstring for the metric utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00226", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "concise", "source_code": "int process_notification(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise README for the notification utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00227", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly API reference for the task utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00228", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM notifications_routes;", "task": "Write a enterprise inline comment for the route utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00229", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "tutorial", "source_code": "def process_service(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial usage example for the service utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00230", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "technical", "source_code": "function processAdapter(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical release note for the adapter utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00231", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "concise", "source_code": "function processHandler(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise architecture note for the handler utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00232", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "public int processController(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly docstring for the controller utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00233", "category": "documentation", "language": "go", "documentation_type": "README", "style": "enterprise", "source_code": "func processRepository(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise README for the repository utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00234", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "tutorial", "source_code": "fn process_client(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial API reference for the client utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00235", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "technical", "source_code": "int process_pipeline(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical inline comment for the pipeline utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00236", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise usage example for the module utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00237", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM recommendations_invoices;", "task": "Write a developer-friendly release note for the invoice utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00238", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "enterprise", "source_code": "def process_session(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise architecture note for the session utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00239", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "tutorial", "source_code": "function processToken(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial docstring for the token utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00240", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "technical", "source_code": "function processQueue(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical README for the queue utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00241", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "concise", "source_code": "public int processWorker(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise API reference for the worker utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00242", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "func processParser(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly inline comment for the parser utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00243", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "enterprise", "source_code": "fn process_report(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise usage example for the report utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00244", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "tutorial", "source_code": "int process_profile(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial release note for the profile utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00245", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical architecture note for the cart utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00246", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "concise", "source_code": "SELECT COUNT(*) FROM admin_orders;", "task": "Write a concise docstring for the order utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00247", "category": "documentation", "language": "python", "documentation_type": "README", "style": "developer-friendly", "source_code": "def process_cache_key(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly README for the cache_key utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00248", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "enterprise", "source_code": "function processJob(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise API reference for the job utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00249", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "tutorial", "source_code": "function processEvent(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial inline comment for the event utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00250", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "technical", "source_code": "public int processPayload(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical usage example for the payload utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00251", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "concise", "source_code": "func processFile(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise release note for the file utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00252", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "fn process_record(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly architecture note for the record utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00253", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "enterprise", "source_code": "int process_metric(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise docstring for the metric utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00254", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial README for the notification utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00255", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "technical", "source_code": "SELECT COUNT(*) FROM scheduler_tasks;", "task": "Write a technical API reference for the task utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00256", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "concise", "source_code": "def process_route(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise inline comment for the route utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00257", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "function processService(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly usage example for the service utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00258", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "enterprise", "source_code": "function processAdapter(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise release note for the adapter utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00259", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "tutorial", "source_code": "public int processHandler(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial architecture note for the handler utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00260", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "technical", "source_code": "func processController(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical docstring for the controller utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00261", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "concise", "source_code": "fn process_repository(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise README for the repository utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00262", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "int process_client(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly API reference for the client utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00263", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise inline comment for the pipeline utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00264", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM sync_modules;", "task": "Write a tutorial usage example for the module utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00265", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "technical", "source_code": "def process_invoice(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical release note for the invoice utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00266", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "concise", "source_code": "function processSession(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise architecture note for the session utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00267", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "function processToken(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly docstring for the token utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00268", "category": "documentation", "language": "java", "documentation_type": "README", "style": "enterprise", "source_code": "public int processQueue(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise README for the queue utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00269", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "tutorial", "source_code": "func processWorker(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial API reference for the worker utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00270", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "technical", "source_code": "fn process_parser(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical inline comment for the parser utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00271", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "concise", "source_code": "int process_report(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise usage example for the report utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00272", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly release note for the profile utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00273", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM auth_carts;", "task": "Write a enterprise architecture note for the cart utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00274", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "tutorial", "source_code": "def process_order(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial docstring for the order utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00275", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "technical", "source_code": "function processCache_Key(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical README for the cache_key utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00276", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "concise", "source_code": "function processJob(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise API reference for the job utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00277", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "public int processEvent(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly inline comment for the event utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00278", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "enterprise", "source_code": "func processPayload(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise usage example for the payload utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00279", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "tutorial", "source_code": "fn process_file(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial release note for the file utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00280", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "technical", "source_code": "int process_record(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical architecture note for the record utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00281", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise docstring for the metric utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00282", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM profiles_notifications;", "task": "Write a developer-friendly README for the notification utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00283", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "enterprise", "source_code": "def process_task(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise API reference for the task utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00284", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "tutorial", "source_code": "function processRoute(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial inline comment for the route utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00285", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "technical", "source_code": "function processService(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical usage example for the service utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00286", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "concise", "source_code": "public int processAdapter(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise release note for the adapter utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00287", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "func processHandler(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly architecture note for the handler utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00288", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "enterprise", "source_code": "fn process_controller(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise docstring for the controller utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00289", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "tutorial", "source_code": "int process_repository(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial README for the repository utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00290", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical API reference for the client utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00291", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "concise", "source_code": "SELECT COUNT(*) FROM imports_pipelines;", "task": "Write a concise inline comment for the pipeline utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00292", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "def process_module(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly usage example for the module utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00293", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "enterprise", "source_code": "function processInvoice(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise release note for the invoice utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00294", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "tutorial", "source_code": "function processSession(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial architecture note for the session utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00295", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "technical", "source_code": "public int processToken(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical docstring for the token utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00296", "category": "documentation", "language": "go", "documentation_type": "README", "style": "concise", "source_code": "func processQueue(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise README for the queue utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00297", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "fn process_worker(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly API reference for the worker utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00298", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "enterprise", "source_code": "int process_parser(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise inline comment for the parser utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00299", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial usage example for the report utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00300", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "technical", "source_code": "SELECT COUNT(*) FROM notifications_profiles;", "task": "Write a technical release note for the profile utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00301", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "concise", "source_code": "def process_cart(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise architecture note for the cart utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00302", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "function processOrder(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly docstring for the order utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00303", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "enterprise", "source_code": "function processCache_Key(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise README for the cache_key utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00304", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "tutorial", "source_code": "public int processJob(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial API reference for the job utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00305", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "technical", "source_code": "func processEvent(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical inline comment for the event utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00306", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "concise", "source_code": "fn process_payload(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise usage example for the payload utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00307", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "developer-friendly", "source_code": "int process_file(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly release note for the file utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00308", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise architecture note for the record utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00309", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM recommendations_metrics;", "task": "Write a tutorial docstring for the metric utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00310", "category": "documentation", "language": "python", "documentation_type": "README", "style": "technical", "source_code": "def process_notification(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical README for the notification utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00311", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "concise", "source_code": "function processTask(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise API reference for the task utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00312", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "function processRoute(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly inline comment for the route utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00313", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "enterprise", "source_code": "public int processService(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise usage example for the service utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00314", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "tutorial", "source_code": "func processAdapter(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial release note for the adapter utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00315", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "technical", "source_code": "fn process_handler(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical architecture note for the handler utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00316", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "concise", "source_code": "int process_controller(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise docstring for the controller utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00317", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly README for the repository utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00318", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM admin_clients;", "task": "Write a enterprise API reference for the client utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00319", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "tutorial", "source_code": "def process_pipeline(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial inline comment for the pipeline utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00320", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "technical", "source_code": "function processModule(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical usage example for the module utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00321", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "concise", "source_code": "function processInvoice(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise release note for the invoice utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00322", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "public int processSession(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly architecture note for the session utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00323", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "enterprise", "source_code": "func processToken(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise docstring for the token utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00324", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "tutorial", "source_code": "fn process_queue(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial README for the queue utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00325", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "technical", "source_code": "int process_worker(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical API reference for the worker utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00326", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise inline comment for the parser utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00327", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM scheduler_reports;", "task": "Write a developer-friendly usage example for the report utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00328", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "enterprise", "source_code": "def process_profile(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise release note for the profile utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00329", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "tutorial", "source_code": "function processCart(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial architecture note for the cart utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00330", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "technical", "source_code": "function processOrder(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical docstring for the order utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00331", "category": "documentation", "language": "java", "documentation_type": "README", "style": "concise", "source_code": "public int processCache_Key(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise README for the cache_key utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00332", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "func processJob(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly API reference for the job utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00333", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "enterprise", "source_code": "fn process_event(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise inline comment for the event utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00334", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "tutorial", "source_code": "int process_payload(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial usage example for the payload utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00335", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical release note for the file utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00336", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "concise", "source_code": "SELECT COUNT(*) FROM sync_records;", "task": "Write a concise architecture note for the record utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00337", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "def process_metric(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly docstring for the metric utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00338", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "enterprise", "source_code": "function processNotification(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise README for the notification utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00339", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "tutorial", "source_code": "function processTask(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial API reference for the task utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00340", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "technical", "source_code": "public int processRoute(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical inline comment for the route utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00341", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "concise", "source_code": "func processService(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise usage example for the service utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00342", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "developer-friendly", "source_code": "fn process_adapter(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly release note for the adapter utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00343", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "enterprise", "source_code": "int process_handler(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise architecture note for the handler utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00344", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial docstring for the controller utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00345", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "technical", "source_code": "SELECT COUNT(*) FROM auth_repositorys;", "task": "Write a technical README for the repository utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00346", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "concise", "source_code": "def process_client(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise API reference for the client utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00347", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "function processPipeline(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly inline comment for the pipeline utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00348", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "enterprise", "source_code": "function processModule(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise usage example for the module utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00349", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "tutorial", "source_code": "public int processInvoice(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial release note for the invoice utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00350", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "technical", "source_code": "func processSession(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical architecture note for the session utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00351", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "concise", "source_code": "fn process_token(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise docstring for the token utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00352", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "developer-friendly", "source_code": "int process_queue(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly README for the queue utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00353", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise API reference for the worker utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00354", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM profiles_parsers;", "task": "Write a tutorial inline comment for the parser utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00355", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "technical", "source_code": "def process_report(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical usage example for the report utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00356", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "concise", "source_code": "function processProfile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise release note for the profile utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00357", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "function processCart(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly architecture note for the cart utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00358", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "enterprise", "source_code": "public int processOrder(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise docstring for the order utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00359", "category": "documentation", "language": "go", "documentation_type": "README", "style": "tutorial", "source_code": "func processCache_Key(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial README for the cache_key utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00360", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "technical", "source_code": "fn process_job(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical API reference for the job utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00361", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "concise", "source_code": "int process_event(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise inline comment for the event utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00362", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly usage example for the payload utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00363", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM imports_files;", "task": "Write a enterprise release note for the file utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00364", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "tutorial", "source_code": "def process_record(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial architecture note for the record utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00365", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "technical", "source_code": "function processMetric(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical docstring for the metric utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00366", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "concise", "source_code": "function processNotification(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise README for the notification utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00367", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "public int processTask(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly API reference for the task utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00368", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "enterprise", "source_code": "func processRoute(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise inline comment for the route utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00369", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "tutorial", "source_code": "fn process_service(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial usage example for the service utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00370", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "technical", "source_code": "int process_adapter(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical release note for the adapter utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00371", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise architecture note for the handler utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00372", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM notifications_controllers;", "task": "Write a developer-friendly docstring for the controller utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00373", "category": "documentation", "language": "python", "documentation_type": "README", "style": "enterprise", "source_code": "def process_repository(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise README for the repository utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00374", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "tutorial", "source_code": "function processClient(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial API reference for the client utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00375", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "technical", "source_code": "function processPipeline(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical inline comment for the pipeline utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00376", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "concise", "source_code": "public int processModule(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise usage example for the module utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00377", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "developer-friendly", "source_code": "func processInvoice(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly release note for the invoice utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00378", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "enterprise", "source_code": "fn process_session(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise architecture note for the session utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00379", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "tutorial", "source_code": "int process_token(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial docstring for the token utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00380", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical README for the queue utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00381", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "concise", "source_code": "SELECT COUNT(*) FROM recommendations_workers;", "task": "Write a concise API reference for the worker utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00382", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "def process_parser(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly inline comment for the parser utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00383", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "enterprise", "source_code": "function processReport(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise usage example for the report utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00384", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "tutorial", "source_code": "function processProfile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial release note for the profile utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00385", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "technical", "source_code": "public int processCart(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical architecture note for the cart utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00386", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "concise", "source_code": "func processOrder(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise docstring for the order utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00387", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "developer-friendly", "source_code": "fn process_cache_key(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly README for the cache_key utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00388", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "enterprise", "source_code": "int process_job(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise API reference for the job utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00389", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial inline comment for the event utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00390", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "technical", "source_code": "SELECT COUNT(*) FROM admin_payloads;", "task": "Write a technical usage example for the payload utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00391", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "concise", "source_code": "def process_file(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise release note for the file utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00392", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "function processRecord(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly architecture note for the record utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00393", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "enterprise", "source_code": "function processMetric(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise docstring for the metric utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00394", "category": "documentation", "language": "java", "documentation_type": "README", "style": "tutorial", "source_code": "public int processNotification(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial README for the notification utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00395", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "technical", "source_code": "func processTask(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical API reference for the task utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00396", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "concise", "source_code": "fn process_route(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise inline comment for the route utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00397", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "int process_service(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly usage example for the service utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00398", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise release note for the adapter utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00399", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM scheduler_handlers;", "task": "Write a tutorial architecture note for the handler utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00400", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "technical", "source_code": "def process_controller(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical docstring for the controller utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00401", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "concise", "source_code": "function processRepository(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise README for the repository utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00402", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "function processClient(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly API reference for the client utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00403", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "enterprise", "source_code": "public int processPipeline(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise inline comment for the pipeline utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00404", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "tutorial", "source_code": "func processModule(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial usage example for the module utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00405", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "technical", "source_code": "fn process_invoice(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical release note for the invoice utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00406", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "concise", "source_code": "int process_session(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise architecture note for the session utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00407", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly docstring for the token utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00408", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM sync_queues;", "task": "Write a enterprise README for the queue utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00409", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "tutorial", "source_code": "def process_worker(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial API reference for the worker utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00410", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "technical", "source_code": "function processParser(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical inline comment for the parser utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00411", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "concise", "source_code": "function processReport(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise usage example for the report utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00412", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "developer-friendly", "source_code": "public int processProfile(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly release note for the profile utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00413", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "enterprise", "source_code": "func processCart(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise architecture note for the cart utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00414", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "tutorial", "source_code": "fn process_order(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial docstring for the order utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00415", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "technical", "source_code": "int process_cache_key(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical README for the cache_key utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00416", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise API reference for the job utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00417", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM auth_events;", "task": "Write a developer-friendly inline comment for the event utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00418", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "enterprise", "source_code": "def process_payload(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise usage example for the payload utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00419", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "tutorial", "source_code": "function processFile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial release note for the file utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00420", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "technical", "source_code": "function processRecord(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical architecture note for the record utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00421", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "concise", "source_code": "public int processMetric(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise docstring for the metric utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00422", "category": "documentation", "language": "go", "documentation_type": "README", "style": "developer-friendly", "source_code": "func processNotification(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly README for the notification utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00423", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "enterprise", "source_code": "fn process_task(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise API reference for the task utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00424", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "tutorial", "source_code": "int process_route(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial inline comment for the route utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00425", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical usage example for the service utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00426", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "concise", "source_code": "SELECT COUNT(*) FROM profiles_adapters;", "task": "Write a concise release note for the adapter utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00427", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "def process_handler(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly architecture note for the handler utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00428", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "enterprise", "source_code": "function processController(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise docstring for the controller utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00429", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "tutorial", "source_code": "function processRepository(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial README for the repository utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00430", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "technical", "source_code": "public int processClient(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical API reference for the client utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00431", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "concise", "source_code": "func processPipeline(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise inline comment for the pipeline utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00432", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "fn process_module(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly usage example for the module utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00433", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "enterprise", "source_code": "int process_invoice(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise release note for the invoice utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00434", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial architecture note for the session utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00435", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "technical", "source_code": "SELECT COUNT(*) FROM imports_tokens;", "task": "Write a technical docstring for the token utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00436", "category": "documentation", "language": "python", "documentation_type": "README", "style": "concise", "source_code": "def process_queue(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise README for the queue utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00437", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "function processWorker(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly API reference for the worker utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00438", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "enterprise", "source_code": "function processParser(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise inline comment for the parser utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00439", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "tutorial", "source_code": "public int processReport(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial usage example for the report utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00440", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "technical", "source_code": "func processProfile(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical release note for the profile utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00441", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "concise", "source_code": "fn process_cart(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise architecture note for the cart utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00442", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "int process_order(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly docstring for the order utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00443", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise README for the cache_key utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00444", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM notifications_jobs;", "task": "Write a tutorial API reference for the job utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00445", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "technical", "source_code": "def process_event(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical inline comment for the event utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00446", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "concise", "source_code": "function processPayload(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise usage example for the payload utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00447", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "developer-friendly", "source_code": "function processFile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly release note for the file utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00448", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "enterprise", "source_code": "public int processRecord(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise architecture note for the record utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00449", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "tutorial", "source_code": "func processMetric(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial docstring for the metric utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00450", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "technical", "source_code": "fn process_notification(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical README for the notification utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00451", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "concise", "source_code": "int process_task(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise API reference for the task utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00452", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly inline comment for the route utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00453", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM recommendations_services;", "task": "Write a enterprise usage example for the service utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00454", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "tutorial", "source_code": "def process_adapter(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial release note for the adapter utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00455", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "technical", "source_code": "function processHandler(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical architecture note for the handler utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00456", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "concise", "source_code": "function processController(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise docstring for the controller utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00457", "category": "documentation", "language": "java", "documentation_type": "README", "style": "developer-friendly", "source_code": "public int processRepository(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly README for the repository utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00458", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "enterprise", "source_code": "func processClient(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise API reference for the client utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00459", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "tutorial", "source_code": "fn process_pipeline(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial inline comment for the pipeline utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00460", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "technical", "source_code": "int process_module(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical usage example for the module utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00461", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise release note for the invoice utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00462", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM admin_sessions;", "task": "Write a developer-friendly architecture note for the session utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00463", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "enterprise", "source_code": "def process_token(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise docstring for the token utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00464", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "tutorial", "source_code": "function processQueue(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial README for the queue utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00465", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "technical", "source_code": "function processWorker(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical API reference for the worker utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00466", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "concise", "source_code": "public int processParser(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise inline comment for the parser utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00467", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "func processReport(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly usage example for the report utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00468", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "enterprise", "source_code": "fn process_profile(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise release note for the profile utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00469", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "tutorial", "source_code": "int process_cart(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial architecture note for the cart utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00470", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical docstring for the order utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00471", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "concise", "source_code": "SELECT COUNT(*) FROM scheduler_cache_keys;", "task": "Write a concise README for the cache_key utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00472", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "def process_job(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly API reference for the job utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00473", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "enterprise", "source_code": "function processEvent(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise inline comment for the event utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00474", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "tutorial", "source_code": "function processPayload(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial usage example for the payload utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00475", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "technical", "source_code": "public int processFile(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical release note for the file utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00476", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "concise", "source_code": "func processRecord(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise architecture note for the record utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00477", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "fn process_metric(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly docstring for the metric utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00478", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "enterprise", "source_code": "int process_notification(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise README for the notification utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00479", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial API reference for the task utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00480", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "technical", "source_code": "SELECT COUNT(*) FROM sync_routes;", "task": "Write a technical inline comment for the route utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00481", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "concise", "source_code": "def process_service(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise usage example for the service utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00482", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "developer-friendly", "source_code": "function processAdapter(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly release note for the adapter utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00483", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "enterprise", "source_code": "function processHandler(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise architecture note for the handler utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00484", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "tutorial", "source_code": "public int processController(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial docstring for the controller utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00485", "category": "documentation", "language": "go", "documentation_type": "README", "style": "technical", "source_code": "func processRepository(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical README for the repository utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00486", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "concise", "source_code": "fn process_client(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise API reference for the client utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00487", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "int process_pipeline(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly inline comment for the pipeline utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00488", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise usage example for the module utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00489", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM auth_invoices;", "task": "Write a tutorial release note for the invoice utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00490", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "technical", "source_code": "def process_session(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical architecture note for the session utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00491", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "concise", "source_code": "function processToken(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise docstring for the token utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00492", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "developer-friendly", "source_code": "function processQueue(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly README for the queue utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00493", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "enterprise", "source_code": "public int processWorker(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise API reference for the worker utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00494", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "tutorial", "source_code": "func processParser(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial inline comment for the parser utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00495", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "technical", "source_code": "fn process_report(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical usage example for the report utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00496", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "concise", "source_code": "int process_profile(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise release note for the profile utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00497", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly architecture note for the cart utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00498", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM profiles_orders;", "task": "Write a enterprise docstring for the order utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00499", "category": "documentation", "language": "python", "documentation_type": "README", "style": "tutorial", "source_code": "def process_cache_key(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial README for the cache_key utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00500", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "technical", "source_code": "function processJob(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical API reference for the job utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00501", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "concise", "source_code": "function processEvent(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise inline comment for the event utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00502", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "public int processPayload(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly usage example for the payload utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00503", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "enterprise", "source_code": "func processFile(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise release note for the file utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00504", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "tutorial", "source_code": "fn process_record(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial architecture note for the record utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00505", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "technical", "source_code": "int process_metric(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical docstring for the metric utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00506", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise README for the notification utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00507", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM imports_tasks;", "task": "Write a developer-friendly API reference for the task utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00508", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "enterprise", "source_code": "def process_route(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise inline comment for the route utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00509", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "tutorial", "source_code": "function processService(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial usage example for the service utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00510", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "technical", "source_code": "function processAdapter(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical release note for the adapter utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00511", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "concise", "source_code": "public int processHandler(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise architecture note for the handler utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00512", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "func processController(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly docstring for the controller utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00513", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "enterprise", "source_code": "fn process_repository(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise README for the repository utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00514", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "tutorial", "source_code": "int process_client(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial API reference for the client utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00515", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical inline comment for the pipeline utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00516", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "concise", "source_code": "SELECT COUNT(*) FROM notifications_modules;", "task": "Write a concise usage example for the module utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00517", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "developer-friendly", "source_code": "def process_invoice(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly release note for the invoice utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00518", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "enterprise", "source_code": "function processSession(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise architecture note for the session utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00519", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "tutorial", "source_code": "function processToken(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial docstring for the token utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00520", "category": "documentation", "language": "java", "documentation_type": "README", "style": "technical", "source_code": "public int processQueue(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical README for the queue utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00521", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "concise", "source_code": "func processWorker(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise API reference for the worker utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00522", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "fn process_parser(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly inline comment for the parser utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00523", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "enterprise", "source_code": "int process_report(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise usage example for the report utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00524", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial release note for the profile utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00525", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "technical", "source_code": "SELECT COUNT(*) FROM recommendations_carts;", "task": "Write a technical architecture note for the cart utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00526", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "concise", "source_code": "def process_order(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise docstring for the order utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00527", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "developer-friendly", "source_code": "function processCache_Key(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly README for the cache_key utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00528", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "enterprise", "source_code": "function processJob(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise API reference for the job utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00529", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "tutorial", "source_code": "public int processEvent(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial inline comment for the event utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00530", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "technical", "source_code": "func processPayload(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical usage example for the payload utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00531", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "concise", "source_code": "fn process_file(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise release note for the file utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00532", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "int process_record(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly architecture note for the record utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00533", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise docstring for the metric utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00534", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM admin_notifications;", "task": "Write a tutorial README for the notification utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00535", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "technical", "source_code": "def process_task(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical API reference for the task utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00536", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "concise", "source_code": "function processRoute(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise inline comment for the route utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00537", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "function processService(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly usage example for the service utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00538", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "enterprise", "source_code": "public int processAdapter(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise release note for the adapter utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00539", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "tutorial", "source_code": "func processHandler(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial architecture note for the handler utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00540", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "technical", "source_code": "fn process_controller(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical docstring for the controller utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00541", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "concise", "source_code": "int process_repository(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise README for the repository utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00542", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly API reference for the client utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00543", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM scheduler_pipelines;", "task": "Write a enterprise inline comment for the pipeline utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00544", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "tutorial", "source_code": "def process_module(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial usage example for the module utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00545", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "technical", "source_code": "function processInvoice(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical release note for the invoice utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00546", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "concise", "source_code": "function processSession(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise architecture note for the session utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00547", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "public int processToken(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly docstring for the token utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00548", "category": "documentation", "language": "go", "documentation_type": "README", "style": "enterprise", "source_code": "func processQueue(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise README for the queue utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00549", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "tutorial", "source_code": "fn process_worker(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial API reference for the worker utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00550", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "technical", "source_code": "int process_parser(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical inline comment for the parser utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00551", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise usage example for the report utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00552", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM sync_profiles;", "task": "Write a developer-friendly release note for the profile utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00553", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "enterprise", "source_code": "def process_cart(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise architecture note for the cart utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00554", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "tutorial", "source_code": "function processOrder(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial docstring for the order utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00555", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "technical", "source_code": "function processCache_Key(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical README for the cache_key utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00556", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "concise", "source_code": "public int processJob(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise API reference for the job utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00557", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "func processEvent(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly inline comment for the event utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00558", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "enterprise", "source_code": "fn process_payload(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise usage example for the payload utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00559", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "tutorial", "source_code": "int process_file(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial release note for the file utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00560", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical architecture note for the record utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00561", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "concise", "source_code": "SELECT COUNT(*) FROM auth_metrics;", "task": "Write a concise docstring for the metric utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00562", "category": "documentation", "language": "python", "documentation_type": "README", "style": "developer-friendly", "source_code": "def process_notification(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly README for the notification utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00563", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "enterprise", "source_code": "function processTask(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise API reference for the task utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00564", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "tutorial", "source_code": "function processRoute(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial inline comment for the route utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00565", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "technical", "source_code": "public int processService(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical usage example for the service utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00566", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "concise", "source_code": "func processAdapter(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise release note for the adapter utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00567", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "fn process_handler(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly architecture note for the handler utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00568", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "enterprise", "source_code": "int process_controller(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise docstring for the controller utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00569", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial README for the repository utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00570", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "technical", "source_code": "SELECT COUNT(*) FROM profiles_clients;", "task": "Write a technical API reference for the client utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00571", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "concise", "source_code": "def process_pipeline(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise inline comment for the pipeline utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00572", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "function processModule(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly usage example for the module utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00573", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "enterprise", "source_code": "function processInvoice(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise release note for the invoice utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00574", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "tutorial", "source_code": "public int processSession(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial architecture note for the session utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00575", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "technical", "source_code": "func processToken(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical docstring for the token utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00576", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "concise", "source_code": "fn process_queue(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise README for the queue utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00577", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "int process_worker(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly API reference for the worker utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00578", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise inline comment for the parser utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00579", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM imports_reports;", "task": "Write a tutorial usage example for the report utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00580", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "technical", "source_code": "def process_profile(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical release note for the profile utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00581", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "concise", "source_code": "function processCart(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise architecture note for the cart utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00582", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "function processOrder(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly docstring for the order utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00583", "category": "documentation", "language": "java", "documentation_type": "README", "style": "enterprise", "source_code": "public int processCache_Key(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise README for the cache_key utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00584", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "tutorial", "source_code": "func processJob(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial API reference for the job utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00585", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "technical", "source_code": "fn process_event(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical inline comment for the event utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00586", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "concise", "source_code": "int process_payload(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise usage example for the payload utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00587", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly release note for the file utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00588", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM notifications_records;", "task": "Write a enterprise architecture note for the record utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00589", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "tutorial", "source_code": "def process_metric(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial docstring for the metric utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00590", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "technical", "source_code": "function processNotification(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical README for the notification utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00591", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "concise", "source_code": "function processTask(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise API reference for the task utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00592", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "public int processRoute(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly inline comment for the route utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00593", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "enterprise", "source_code": "func processService(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise usage example for the service utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00594", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "tutorial", "source_code": "fn process_adapter(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial release note for the adapter utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00595", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "technical", "source_code": "int process_handler(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical architecture note for the handler utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00596", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise docstring for the controller utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00597", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM recommendations_repositorys;", "task": "Write a developer-friendly README for the repository utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00598", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "enterprise", "source_code": "def process_client(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise API reference for the client utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00599", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "tutorial", "source_code": "function processPipeline(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial inline comment for the pipeline utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00600", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "technical", "source_code": "function processModule(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical usage example for the module utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00601", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "concise", "source_code": "public int processInvoice(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise release note for the invoice utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00602", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "func processSession(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly architecture note for the session utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00603", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "enterprise", "source_code": "fn process_token(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise docstring for the token utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00604", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "tutorial", "source_code": "int process_queue(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial README for the queue utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00605", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical API reference for the worker utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00606", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "concise", "source_code": "SELECT COUNT(*) FROM admin_parsers;", "task": "Write a concise inline comment for the parser utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00607", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "def process_report(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly usage example for the report utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00608", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "enterprise", "source_code": "function processProfile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise release note for the profile utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00609", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "tutorial", "source_code": "function processCart(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial architecture note for the cart utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00610", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "technical", "source_code": "public int processOrder(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical docstring for the order utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00611", "category": "documentation", "language": "go", "documentation_type": "README", "style": "concise", "source_code": "func processCache_Key(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise README for the cache_key utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00612", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "fn process_job(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly API reference for the job utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00613", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "enterprise", "source_code": "int process_event(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise inline comment for the event utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00614", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial usage example for the payload utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00615", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "technical", "source_code": "SELECT COUNT(*) FROM scheduler_files;", "task": "Write a technical release note for the file utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00616", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "concise", "source_code": "def process_record(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise architecture note for the record utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00617", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "function processMetric(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly docstring for the metric utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00618", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "enterprise", "source_code": "function processNotification(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise README for the notification utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00619", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "tutorial", "source_code": "public int processTask(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial API reference for the task utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00620", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "technical", "source_code": "func processRoute(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical inline comment for the route utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00621", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "concise", "source_code": "fn process_service(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise usage example for the service utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00622", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "developer-friendly", "source_code": "int process_adapter(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly release note for the adapter utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00623", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise architecture note for the handler utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00624", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM sync_controllers;", "task": "Write a tutorial docstring for the controller utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00625", "category": "documentation", "language": "python", "documentation_type": "README", "style": "technical", "source_code": "def process_repository(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical README for the repository utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00626", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "concise", "source_code": "function processClient(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise API reference for the client utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00627", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "function processPipeline(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly inline comment for the pipeline utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00628", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "enterprise", "source_code": "public int processModule(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise usage example for the module utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00629", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "tutorial", "source_code": "func processInvoice(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial release note for the invoice utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00630", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "technical", "source_code": "fn process_session(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical architecture note for the session utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00631", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "concise", "source_code": "int process_token(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise docstring for the token utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00632", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly README for the queue utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00633", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM auth_workers;", "task": "Write a enterprise API reference for the worker utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00634", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "tutorial", "source_code": "def process_parser(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial inline comment for the parser utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00635", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "technical", "source_code": "function processReport(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical usage example for the report utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00636", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "concise", "source_code": "function processProfile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise release note for the profile utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00637", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "public int processCart(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly architecture note for the cart utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00638", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "enterprise", "source_code": "func processOrder(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise docstring for the order utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00639", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "tutorial", "source_code": "fn process_cache_key(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial README for the cache_key utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00640", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "technical", "source_code": "int process_job(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical API reference for the job utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00641", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise inline comment for the event utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00642", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM profiles_payloads;", "task": "Write a developer-friendly usage example for the payload utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00643", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "enterprise", "source_code": "def process_file(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise release note for the file utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00644", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "tutorial", "source_code": "function processRecord(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial architecture note for the record utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00645", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "technical", "source_code": "function processMetric(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical docstring for the metric utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00646", "category": "documentation", "language": "java", "documentation_type": "README", "style": "concise", "source_code": "public int processNotification(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise README for the notification utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00647", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "func processTask(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly API reference for the task utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00648", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "enterprise", "source_code": "fn process_route(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise inline comment for the route utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00649", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "tutorial", "source_code": "int process_service(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial usage example for the service utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00650", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical release note for the adapter utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00651", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "concise", "source_code": "SELECT COUNT(*) FROM imports_handlers;", "task": "Write a concise architecture note for the handler utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00652", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "def process_controller(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly docstring for the controller utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00653", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "enterprise", "source_code": "function processRepository(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise README for the repository utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00654", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "tutorial", "source_code": "function processClient(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial API reference for the client utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00655", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "technical", "source_code": "public int processPipeline(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical inline comment for the pipeline utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00656", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "concise", "source_code": "func processModule(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise usage example for the module utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00657", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "developer-friendly", "source_code": "fn process_invoice(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly release note for the invoice utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00658", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "enterprise", "source_code": "int process_session(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise architecture note for the session utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00659", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial docstring for the token utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00660", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "technical", "source_code": "SELECT COUNT(*) FROM notifications_queues;", "task": "Write a technical README for the queue utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00661", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "concise", "source_code": "def process_worker(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise API reference for the worker utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00662", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "function processParser(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly inline comment for the parser utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00663", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "enterprise", "source_code": "function processReport(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise usage example for the report utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00664", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "tutorial", "source_code": "public int processProfile(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial release note for the profile utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00665", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "technical", "source_code": "func processCart(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical architecture note for the cart utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00666", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "concise", "source_code": "fn process_order(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise docstring for the order utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00667", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "developer-friendly", "source_code": "int process_cache_key(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly README for the cache_key utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00668", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise API reference for the job utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00669", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM recommendations_events;", "task": "Write a tutorial inline comment for the event utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00670", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "technical", "source_code": "def process_payload(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical usage example for the payload utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00671", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "concise", "source_code": "function processFile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise release note for the file utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00672", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "function processRecord(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly architecture note for the record utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00673", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "enterprise", "source_code": "public int processMetric(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise docstring for the metric utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00674", "category": "documentation", "language": "go", "documentation_type": "README", "style": "tutorial", "source_code": "func processNotification(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial README for the notification utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00675", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "technical", "source_code": "fn process_task(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical API reference for the task utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00676", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "concise", "source_code": "int process_route(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise inline comment for the route utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00677", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly usage example for the service utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00678", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM admin_adapters;", "task": "Write a enterprise release note for the adapter utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00679", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "tutorial", "source_code": "def process_handler(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial architecture note for the handler utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00680", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "technical", "source_code": "function processController(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical docstring for the controller utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00681", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "concise", "source_code": "function processRepository(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise README for the repository utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00682", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "public int processClient(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly API reference for the client utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00683", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "enterprise", "source_code": "func processPipeline(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise inline comment for the pipeline utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00684", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "tutorial", "source_code": "fn process_module(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial usage example for the module utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00685", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "technical", "source_code": "int process_invoice(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical release note for the invoice utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00686", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise architecture note for the session utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00687", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM scheduler_tokens;", "task": "Write a developer-friendly docstring for the token utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00688", "category": "documentation", "language": "python", "documentation_type": "README", "style": "enterprise", "source_code": "def process_queue(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise README for the queue utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00689", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "tutorial", "source_code": "function processWorker(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial API reference for the worker utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00690", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "technical", "source_code": "function processParser(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical inline comment for the parser utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00691", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "concise", "source_code": "public int processReport(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise usage example for the report utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00692", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "developer-friendly", "source_code": "func processProfile(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly release note for the profile utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00693", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "enterprise", "source_code": "fn process_cart(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise architecture note for the cart utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00694", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "tutorial", "source_code": "int process_order(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial docstring for the order utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00695", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical README for the cache_key utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00696", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "concise", "source_code": "SELECT COUNT(*) FROM sync_jobs;", "task": "Write a concise API reference for the job utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00697", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "def process_event(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly inline comment for the event utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00698", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "enterprise", "source_code": "function processPayload(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise usage example for the payload utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00699", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "tutorial", "source_code": "function processFile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial release note for the file utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00700", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "technical", "source_code": "public int processRecord(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical architecture note for the record utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00701", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "concise", "source_code": "func processMetric(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise docstring for the metric utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00702", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "developer-friendly", "source_code": "fn process_notification(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly README for the notification utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00703", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "enterprise", "source_code": "int process_task(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise API reference for the task utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00704", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial inline comment for the route utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00705", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "technical", "source_code": "SELECT COUNT(*) FROM auth_services;", "task": "Write a technical usage example for the service utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00706", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "concise", "source_code": "def process_adapter(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise release note for the adapter utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00707", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "function processHandler(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly architecture note for the handler utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00708", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "enterprise", "source_code": "function processController(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise docstring for the controller utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00709", "category": "documentation", "language": "java", "documentation_type": "README", "style": "tutorial", "source_code": "public int processRepository(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial README for the repository utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00710", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "technical", "source_code": "func processClient(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical API reference for the client utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00711", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "concise", "source_code": "fn process_pipeline(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise inline comment for the pipeline utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00712", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "int process_module(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly usage example for the module utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00713", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise release note for the invoice utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00714", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM profiles_sessions;", "task": "Write a tutorial architecture note for the session utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00715", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "technical", "source_code": "def process_token(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical docstring for the token utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00716", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "concise", "source_code": "function processQueue(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise README for the queue utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00717", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "function processWorker(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly API reference for the worker utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00718", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "enterprise", "source_code": "public int processParser(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise inline comment for the parser utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00719", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "tutorial", "source_code": "func processReport(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial usage example for the report utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00720", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "technical", "source_code": "fn process_profile(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical release note for the profile utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00721", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "concise", "source_code": "int process_cart(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise architecture note for the cart utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00722", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly docstring for the order utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00723", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM imports_cache_keys;", "task": "Write a enterprise README for the cache_key utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00724", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "tutorial", "source_code": "def process_job(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial API reference for the job utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00725", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "technical", "source_code": "function processEvent(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical inline comment for the event utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00726", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "concise", "source_code": "function processPayload(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise usage example for the payload utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00727", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "developer-friendly", "source_code": "public int processFile(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly release note for the file utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00728", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "enterprise", "source_code": "func processRecord(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise architecture note for the record utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00729", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "tutorial", "source_code": "fn process_metric(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial docstring for the metric utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00730", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "technical", "source_code": "int process_notification(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical README for the notification utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00731", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise API reference for the task utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00732", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM notifications_routes;", "task": "Write a developer-friendly inline comment for the route utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00733", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "enterprise", "source_code": "def process_service(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise usage example for the service utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00734", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "tutorial", "source_code": "function processAdapter(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial release note for the adapter utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00735", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "technical", "source_code": "function processHandler(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical architecture note for the handler utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00736", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "concise", "source_code": "public int processController(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise docstring for the controller utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00737", "category": "documentation", "language": "go", "documentation_type": "README", "style": "developer-friendly", "source_code": "func processRepository(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly README for the repository utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00738", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "enterprise", "source_code": "fn process_client(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise API reference for the client utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00739", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "tutorial", "source_code": "int process_pipeline(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial inline comment for the pipeline utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00740", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical usage example for the module utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00741", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "concise", "source_code": "SELECT COUNT(*) FROM recommendations_invoices;", "task": "Write a concise release note for the invoice utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00742", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "def process_session(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly architecture note for the session utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00743", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "enterprise", "source_code": "function processToken(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise docstring for the token utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00744", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "tutorial", "source_code": "function processQueue(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial README for the queue utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00745", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "technical", "source_code": "public int processWorker(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical API reference for the worker utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00746", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "concise", "source_code": "func processParser(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise inline comment for the parser utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00747", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "fn process_report(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly usage example for the report utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00748", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "enterprise", "source_code": "int process_profile(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise release note for the profile utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00749", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial architecture note for the cart utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00750", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "technical", "source_code": "SELECT COUNT(*) FROM admin_orders;", "task": "Write a technical docstring for the order utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00751", "category": "documentation", "language": "python", "documentation_type": "README", "style": "concise", "source_code": "def process_cache_key(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise README for the cache_key utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00752", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "function processJob(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly API reference for the job utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00753", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "enterprise", "source_code": "function processEvent(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise inline comment for the event utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00754", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "tutorial", "source_code": "public int processPayload(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial usage example for the payload utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00755", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "technical", "source_code": "func processFile(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical release note for the file utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00756", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "concise", "source_code": "fn process_record(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise architecture note for the record utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00757", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "int process_metric(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly docstring for the metric utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00758", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise README for the notification utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00759", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM scheduler_tasks;", "task": "Write a tutorial API reference for the task utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00760", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "technical", "source_code": "def process_route(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical inline comment for the route utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00761", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "concise", "source_code": "function processService(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise usage example for the service utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00762", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "developer-friendly", "source_code": "function processAdapter(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly release note for the adapter utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00763", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "enterprise", "source_code": "public int processHandler(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise architecture note for the handler utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00764", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "tutorial", "source_code": "func processController(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial docstring for the controller utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00765", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "technical", "source_code": "fn process_repository(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical README for the repository utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00766", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "concise", "source_code": "int process_client(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise API reference for the client utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00767", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly inline comment for the pipeline utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00768", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM sync_modules;", "task": "Write a enterprise usage example for the module utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00769", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "tutorial", "source_code": "def process_invoice(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial release note for the invoice utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00770", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "technical", "source_code": "function processSession(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical architecture note for the session utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00771", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "concise", "source_code": "function processToken(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise docstring for the token utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00772", "category": "documentation", "language": "java", "documentation_type": "README", "style": "developer-friendly", "source_code": "public int processQueue(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly README for the queue utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00773", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "enterprise", "source_code": "func processWorker(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise API reference for the worker utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00774", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "tutorial", "source_code": "fn process_parser(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial inline comment for the parser utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00775", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "technical", "source_code": "int process_report(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical usage example for the report utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00776", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise release note for the profile utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00777", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM auth_carts;", "task": "Write a developer-friendly architecture note for the cart utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00778", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "enterprise", "source_code": "def process_order(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise docstring for the order utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00779", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "tutorial", "source_code": "function processCache_Key(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial README for the cache_key utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00780", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "technical", "source_code": "function processJob(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical API reference for the job utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00781", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "concise", "source_code": "public int processEvent(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise inline comment for the event utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00782", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "func processPayload(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly usage example for the payload utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00783", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "enterprise", "source_code": "fn process_file(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise release note for the file utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00784", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "tutorial", "source_code": "int process_record(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial architecture note for the record utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00785", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical docstring for the metric utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00786", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "concise", "source_code": "SELECT COUNT(*) FROM profiles_notifications;", "task": "Write a concise README for the notification utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00787", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "def process_task(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly API reference for the task utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00788", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "enterprise", "source_code": "function processRoute(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise inline comment for the route utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00789", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "tutorial", "source_code": "function processService(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial usage example for the service utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00790", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "technical", "source_code": "public int processAdapter(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical release note for the adapter utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00791", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "concise", "source_code": "func processHandler(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise architecture note for the handler utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00792", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "fn process_controller(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly docstring for the controller utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00793", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "enterprise", "source_code": "int process_repository(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise README for the repository utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00794", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial API reference for the client utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00795", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "technical", "source_code": "SELECT COUNT(*) FROM imports_pipelines;", "task": "Write a technical inline comment for the pipeline utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00796", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "concise", "source_code": "def process_module(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise usage example for the module utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00797", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "developer-friendly", "source_code": "function processInvoice(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly release note for the invoice utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00798", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "enterprise", "source_code": "function processSession(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise architecture note for the session utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00799", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "tutorial", "source_code": "public int processToken(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial docstring for the token utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00800", "category": "documentation", "language": "go", "documentation_type": "README", "style": "technical", "source_code": "func processQueue(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical README for the queue utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00801", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "concise", "source_code": "fn process_worker(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise API reference for the worker utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00802", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "int process_parser(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly inline comment for the parser utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00803", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise usage example for the report utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00804", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM notifications_profiles;", "task": "Write a tutorial release note for the profile utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00805", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "technical", "source_code": "def process_cart(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical architecture note for the cart utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00806", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "concise", "source_code": "function processOrder(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise docstring for the order utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00807", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "developer-friendly", "source_code": "function processCache_Key(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly README for the cache_key utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00808", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "enterprise", "source_code": "public int processJob(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise API reference for the job utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00809", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "tutorial", "source_code": "func processEvent(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial inline comment for the event utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00810", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "technical", "source_code": "fn process_payload(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical usage example for the payload utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00811", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "concise", "source_code": "int process_file(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise release note for the file utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00812", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly architecture note for the record utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00813", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM recommendations_metrics;", "task": "Write a enterprise docstring for the metric utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00814", "category": "documentation", "language": "python", "documentation_type": "README", "style": "tutorial", "source_code": "def process_notification(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial README for the notification utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00815", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "technical", "source_code": "function processTask(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical API reference for the task utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00816", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "concise", "source_code": "function processRoute(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise inline comment for the route utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00817", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "public int processService(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly usage example for the service utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00818", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "enterprise", "source_code": "func processAdapter(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise release note for the adapter utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00819", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "tutorial", "source_code": "fn process_handler(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial architecture note for the handler utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00820", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "technical", "source_code": "int process_controller(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical docstring for the controller utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00821", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise README for the repository utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00822", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM admin_clients;", "task": "Write a developer-friendly API reference for the client utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00823", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "enterprise", "source_code": "def process_pipeline(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise inline comment for the pipeline utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00824", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "tutorial", "source_code": "function processModule(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial usage example for the module utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00825", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "technical", "source_code": "function processInvoice(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical release note for the invoice utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00826", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "concise", "source_code": "public int processSession(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise architecture note for the session utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00827", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "func processToken(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly docstring for the token utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00828", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "enterprise", "source_code": "fn process_queue(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise README for the queue utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00829", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "tutorial", "source_code": "int process_worker(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial API reference for the worker utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00830", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical inline comment for the parser utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00831", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "concise", "source_code": "SELECT COUNT(*) FROM scheduler_reports;", "task": "Write a concise usage example for the report utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00832", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "developer-friendly", "source_code": "def process_profile(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly release note for the profile utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00833", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "enterprise", "source_code": "function processCart(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise architecture note for the cart utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00834", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "tutorial", "source_code": "function processOrder(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial docstring for the order utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00835", "category": "documentation", "language": "java", "documentation_type": "README", "style": "technical", "source_code": "public int processCache_Key(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical README for the cache_key utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00836", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "concise", "source_code": "func processJob(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise API reference for the job utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00837", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "fn process_event(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly inline comment for the event utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00838", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "enterprise", "source_code": "int process_payload(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise usage example for the payload utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00839", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial release note for the file utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00840", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "technical", "source_code": "SELECT COUNT(*) FROM sync_records;", "task": "Write a technical architecture note for the record utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00841", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "concise", "source_code": "def process_metric(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise docstring for the metric utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00842", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "developer-friendly", "source_code": "function processNotification(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly README for the notification utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00843", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "enterprise", "source_code": "function processTask(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise API reference for the task utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00844", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "tutorial", "source_code": "public int processRoute(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial inline comment for the route utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00845", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "technical", "source_code": "func processService(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical usage example for the service utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00846", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "concise", "source_code": "fn process_adapter(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise release note for the adapter utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00847", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "int process_handler(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly architecture note for the handler utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00848", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise docstring for the controller utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00849", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM auth_repositorys;", "task": "Write a tutorial README for the repository utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00850", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "technical", "source_code": "def process_client(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical API reference for the client utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00851", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "concise", "source_code": "function processPipeline(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise inline comment for the pipeline utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00852", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "function processModule(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly usage example for the module utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00853", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "enterprise", "source_code": "public int processInvoice(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise release note for the invoice utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00854", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "tutorial", "source_code": "func processSession(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial architecture note for the session utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00855", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "technical", "source_code": "fn process_token(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical docstring for the token utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00856", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "concise", "source_code": "int process_queue(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise README for the queue utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00857", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly API reference for the worker utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00858", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM profiles_parsers;", "task": "Write a enterprise inline comment for the parser utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00859", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "tutorial", "source_code": "def process_report(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial usage example for the report utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00860", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "technical", "source_code": "function processProfile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical release note for the profile utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00861", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "concise", "source_code": "function processCart(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise architecture note for the cart utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00862", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "public int processOrder(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly docstring for the order utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00863", "category": "documentation", "language": "go", "documentation_type": "README", "style": "enterprise", "source_code": "func processCache_Key(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise README for the cache_key utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00864", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "tutorial", "source_code": "fn process_job(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial API reference for the job utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00865", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "technical", "source_code": "int process_event(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical inline comment for the event utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00866", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise usage example for the payload utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00867", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM imports_files;", "task": "Write a developer-friendly release note for the file utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00868", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "enterprise", "source_code": "def process_record(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise architecture note for the record utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00869", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "tutorial", "source_code": "function processMetric(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial docstring for the metric utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00870", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "technical", "source_code": "function processNotification(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical README for the notification utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00871", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "concise", "source_code": "public int processTask(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise API reference for the task utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00872", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "func processRoute(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly inline comment for the route utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00873", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "enterprise", "source_code": "fn process_service(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise usage example for the service utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00874", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "tutorial", "source_code": "int process_adapter(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial release note for the adapter utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00875", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical architecture note for the handler utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00876", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "concise", "source_code": "SELECT COUNT(*) FROM notifications_controllers;", "task": "Write a concise docstring for the controller utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00877", "category": "documentation", "language": "python", "documentation_type": "README", "style": "developer-friendly", "source_code": "def process_repository(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly README for the repository utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00878", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "enterprise", "source_code": "function processClient(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise API reference for the client utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00879", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "tutorial", "source_code": "function processPipeline(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial inline comment for the pipeline utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00880", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "technical", "source_code": "public int processModule(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical usage example for the module utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00881", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "concise", "source_code": "func processInvoice(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise release note for the invoice utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00882", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "fn process_session(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly architecture note for the session utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00883", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "enterprise", "source_code": "int process_token(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise docstring for the token utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00884", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial README for the queue utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00885", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "technical", "source_code": "SELECT COUNT(*) FROM recommendations_workers;", "task": "Write a technical API reference for the worker utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00886", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "concise", "source_code": "def process_parser(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise inline comment for the parser utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00887", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "function processReport(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly usage example for the report utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00888", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "enterprise", "source_code": "function processProfile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise release note for the profile utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00889", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "tutorial", "source_code": "public int processCart(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial architecture note for the cart utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00890", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "technical", "source_code": "func processOrder(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical docstring for the order utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00891", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "concise", "source_code": "fn process_cache_key(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise README for the cache_key utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00892", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "int process_job(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly API reference for the job utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00893", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise inline comment for the event utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00894", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM admin_payloads;", "task": "Write a tutorial usage example for the payload utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00895", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "technical", "source_code": "def process_file(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical release note for the file utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00896", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "concise", "source_code": "function processRecord(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise architecture note for the record utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00897", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "function processMetric(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly docstring for the metric utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00898", "category": "documentation", "language": "java", "documentation_type": "README", "style": "enterprise", "source_code": "public int processNotification(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise README for the notification utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00899", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "tutorial", "source_code": "func processTask(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial API reference for the task utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00900", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "technical", "source_code": "fn process_route(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical inline comment for the route utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00901", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "concise", "source_code": "int process_service(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise usage example for the service utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00902", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly release note for the adapter utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00903", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM scheduler_handlers;", "task": "Write a enterprise architecture note for the handler utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00904", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "tutorial", "source_code": "def process_controller(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial docstring for the controller utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00905", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "technical", "source_code": "function processRepository(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical README for the repository utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00906", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "concise", "source_code": "function processClient(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise API reference for the client utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00907", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "public int processPipeline(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly inline comment for the pipeline utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00908", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "enterprise", "source_code": "func processModule(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise usage example for the module utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00909", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "tutorial", "source_code": "fn process_invoice(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial release note for the invoice utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00910", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "technical", "source_code": "int process_session(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical architecture note for the session utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00911", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise docstring for the token utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00912", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM sync_queues;", "task": "Write a developer-friendly README for the queue utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00913", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "enterprise", "source_code": "def process_worker(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise API reference for the worker utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00914", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "tutorial", "source_code": "function processParser(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial inline comment for the parser utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00915", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "technical", "source_code": "function processReport(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical usage example for the report utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00916", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "concise", "source_code": "public int processProfile(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise release note for the profile utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00917", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "func processCart(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly architecture note for the cart utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00918", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "enterprise", "source_code": "fn process_order(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise docstring for the order utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00919", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "tutorial", "source_code": "int process_cache_key(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial README for the cache_key utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00920", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical API reference for the job utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00921", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "concise", "source_code": "SELECT COUNT(*) FROM auth_events;", "task": "Write a concise inline comment for the event utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00922", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "def process_payload(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly usage example for the payload utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00923", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "enterprise", "source_code": "function processFile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise release note for the file utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00924", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "tutorial", "source_code": "function processRecord(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial architecture note for the record utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00925", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "technical", "source_code": "public int processMetric(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical docstring for the metric utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00926", "category": "documentation", "language": "go", "documentation_type": "README", "style": "concise", "source_code": "func processNotification(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise README for the notification utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00927", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "fn process_task(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly API reference for the task utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00928", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "enterprise", "source_code": "int process_route(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise inline comment for the route utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00929", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial usage example for the service utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00930", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "technical", "source_code": "SELECT COUNT(*) FROM profiles_adapters;", "task": "Write a technical release note for the adapter utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00931", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "concise", "source_code": "def process_handler(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise architecture note for the handler utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00932", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "function processController(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly docstring for the controller utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00933", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "enterprise", "source_code": "function processRepository(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise README for the repository utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00934", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "tutorial", "source_code": "public int processClient(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial API reference for the client utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00935", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "technical", "source_code": "func processPipeline(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical inline comment for the pipeline utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00936", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "concise", "source_code": "fn process_module(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise usage example for the module utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00937", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "developer-friendly", "source_code": "int process_invoice(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly release note for the invoice utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00938", "category": "documentation", "language": "bash", "documentation_type": "architecture note", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise architecture note for the session utility in Bash.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00939", "category": "documentation", "language": "sql", "documentation_type": "docstring", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM imports_tokens;", "task": "Write a tutorial docstring for the token utility in SQL.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00940", "category": "documentation", "language": "python", "documentation_type": "README", "style": "technical", "source_code": "def process_queue(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical README for the queue utility in Python.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00941", "category": "documentation", "language": "javascript", "documentation_type": "API reference", "style": "concise", "source_code": "function processWorker(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise API reference for the worker utility in JavaScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00942", "category": "documentation", "language": "typescript", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "function processParser(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly inline comment for the parser utility in TypeScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00943", "category": "documentation", "language": "java", "documentation_type": "usage example", "style": "enterprise", "source_code": "public int processReport(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise usage example for the report utility in Java.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00944", "category": "documentation", "language": "go", "documentation_type": "release note", "style": "tutorial", "source_code": "func processProfile(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial release note for the profile utility in Go.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00945", "category": "documentation", "language": "rust", "documentation_type": "architecture note", "style": "technical", "source_code": "fn process_cart(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical architecture note for the cart utility in Rust.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00946", "category": "documentation", "language": "cpp", "documentation_type": "docstring", "style": "concise", "source_code": "int process_order(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise docstring for the order utility in C++.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00947", "category": "documentation", "language": "bash", "documentation_type": "README", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly README for the cache_key utility in Bash.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00948", "category": "documentation", "language": "sql", "documentation_type": "API reference", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM notifications_jobs;", "task": "Write a enterprise API reference for the job utility in SQL.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00949", "category": "documentation", "language": "python", "documentation_type": "inline comment", "style": "tutorial", "source_code": "def process_event(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial inline comment for the event utility in Python.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00950", "category": "documentation", "language": "javascript", "documentation_type": "usage example", "style": "technical", "source_code": "function processPayload(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical usage example for the payload utility in JavaScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00951", "category": "documentation", "language": "typescript", "documentation_type": "release note", "style": "concise", "source_code": "function processFile(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise release note for the file utility in TypeScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00952", "category": "documentation", "language": "java", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "public int processRecord(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly architecture note for the record utility in Java.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00953", "category": "documentation", "language": "go", "documentation_type": "docstring", "style": "enterprise", "source_code": "func processMetric(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise docstring for the metric utility in Go.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00954", "category": "documentation", "language": "rust", "documentation_type": "README", "style": "tutorial", "source_code": "fn process_notification(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial README for the notification utility in Rust.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00955", "category": "documentation", "language": "cpp", "documentation_type": "API reference", "style": "technical", "source_code": "int process_task(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical API reference for the task utility in C++.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00956", "category": "documentation", "language": "bash", "documentation_type": "inline comment", "style": "concise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a concise inline comment for the route utility in Bash.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00957", "category": "documentation", "language": "sql", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "SELECT COUNT(*) FROM recommendations_services;", "task": "Write a developer-friendly usage example for the service utility in SQL.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00958", "category": "documentation", "language": "python", "documentation_type": "release note", "style": "enterprise", "source_code": "def process_adapter(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a enterprise release note for the adapter utility in Python.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00959", "category": "documentation", "language": "javascript", "documentation_type": "architecture note", "style": "tutorial", "source_code": "function processHandler(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial architecture note for the handler utility in JavaScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00960", "category": "documentation", "language": "typescript", "documentation_type": "docstring", "style": "technical", "source_code": "function processController(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical docstring for the controller utility in TypeScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00961", "category": "documentation", "language": "java", "documentation_type": "README", "style": "concise", "source_code": "public int processRepository(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a concise README for the repository utility in Java.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00962", "category": "documentation", "language": "go", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "func processClient(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a developer-friendly API reference for the client utility in Go.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00963", "category": "documentation", "language": "rust", "documentation_type": "inline comment", "style": "enterprise", "source_code": "fn process_pipeline(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a enterprise inline comment for the pipeline utility in Rust.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00964", "category": "documentation", "language": "cpp", "documentation_type": "usage example", "style": "tutorial", "source_code": "int process_module(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a tutorial usage example for the module utility in C++.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00965", "category": "documentation", "language": "bash", "documentation_type": "release note", "style": "technical", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a technical release note for the invoice utility in Bash.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00966", "category": "documentation", "language": "sql", "documentation_type": "architecture note", "style": "concise", "source_code": "SELECT COUNT(*) FROM admin_sessions;", "task": "Write a concise architecture note for the session utility in SQL.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00967", "category": "documentation", "language": "python", "documentation_type": "docstring", "style": "developer-friendly", "source_code": "def process_token(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a developer-friendly docstring for the token utility in Python.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00968", "category": "documentation", "language": "javascript", "documentation_type": "README", "style": "enterprise", "source_code": "function processQueue(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise README for the queue utility in JavaScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00969", "category": "documentation", "language": "typescript", "documentation_type": "API reference", "style": "tutorial", "source_code": "function processWorker(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a tutorial API reference for the worker utility in TypeScript.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00970", "category": "documentation", "language": "java", "documentation_type": "inline comment", "style": "technical", "source_code": "public int processParser(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a technical inline comment for the parser utility in Java.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00971", "category": "documentation", "language": "go", "documentation_type": "usage example", "style": "concise", "source_code": "func processReport(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a concise usage example for the report utility in Go.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00972", "category": "documentation", "language": "rust", "documentation_type": "release note", "style": "developer-friendly", "source_code": "fn process_profile(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a developer-friendly release note for the profile utility in Rust.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00973", "category": "documentation", "language": "cpp", "documentation_type": "architecture note", "style": "enterprise", "source_code": "int process_cart(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a enterprise architecture note for the cart utility in C++.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00974", "category": "documentation", "language": "bash", "documentation_type": "docstring", "style": "tutorial", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a tutorial docstring for the order utility in Bash.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00975", "category": "documentation", "language": "sql", "documentation_type": "README", "style": "technical", "source_code": "SELECT COUNT(*) FROM scheduler_cache_keys;", "task": "Write a technical README for the cache_key utility in SQL.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00976", "category": "documentation", "language": "python", "documentation_type": "API reference", "style": "concise", "source_code": "def process_job(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a concise API reference for the job utility in Python.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00977", "category": "documentation", "language": "javascript", "documentation_type": "inline comment", "style": "developer-friendly", "source_code": "function processEvent(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly inline comment for the event utility in JavaScript.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00978", "category": "documentation", "language": "typescript", "documentation_type": "usage example", "style": "enterprise", "source_code": "function processPayload(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a enterprise usage example for the payload utility in TypeScript.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00979", "category": "documentation", "language": "java", "documentation_type": "release note", "style": "tutorial", "source_code": "public int processFile(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a tutorial release note for the file utility in Java.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00980", "category": "documentation", "language": "go", "documentation_type": "architecture note", "style": "technical", "source_code": "func processRecord(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a technical architecture note for the record utility in Go.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00981", "category": "documentation", "language": "rust", "documentation_type": "docstring", "style": "concise", "source_code": "fn process_metric(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a concise docstring for the metric utility in Rust.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00982", "category": "documentation", "language": "cpp", "documentation_type": "README", "style": "developer-friendly", "source_code": "int process_notification(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a developer-friendly README for the notification utility in C++.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00983", "category": "documentation", "language": "bash", "documentation_type": "API reference", "style": "enterprise", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a enterprise API reference for the task utility in Bash.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00984", "category": "documentation", "language": "sql", "documentation_type": "inline comment", "style": "tutorial", "source_code": "SELECT COUNT(*) FROM sync_routes;", "task": "Write a tutorial inline comment for the route utility in SQL.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00985", "category": "documentation", "language": "python", "documentation_type": "usage example", "style": "technical", "source_code": "def process_service(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a technical usage example for the service utility in Python.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00986", "category": "documentation", "language": "javascript", "documentation_type": "release note", "style": "concise", "source_code": "function processAdapter(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise release note for the adapter utility in JavaScript.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00987", "category": "documentation", "language": "typescript", "documentation_type": "architecture note", "style": "developer-friendly", "source_code": "function processHandler(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a developer-friendly architecture note for the handler utility in TypeScript.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00988", "category": "documentation", "language": "java", "documentation_type": "docstring", "style": "enterprise", "source_code": "public int processController(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a enterprise docstring for the controller utility in Java.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00989", "category": "documentation", "language": "go", "documentation_type": "README", "style": "tutorial", "source_code": "func processRepository(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a tutorial README for the repository utility in Go.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00990", "category": "documentation", "language": "rust", "documentation_type": "API reference", "style": "technical", "source_code": "fn process_client(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a technical API reference for the client utility in Rust.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00991", "category": "documentation", "language": "cpp", "documentation_type": "inline comment", "style": "concise", "source_code": "int process_pipeline(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a concise inline comment for the pipeline utility in C++.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00992", "category": "documentation", "language": "bash", "documentation_type": "usage example", "style": "developer-friendly", "source_code": "#!/usr/bin/env bash\nprintf '%s\\n' \"$1\" | tr -d ' ' | wc -c", "task": "Write a developer-friendly usage example for the module utility in Bash.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00993", "category": "documentation", "language": "sql", "documentation_type": "release note", "style": "enterprise", "source_code": "SELECT COUNT(*) FROM auth_invoices;", "task": "Write a enterprise release note for the invoice utility in SQL.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00994", "category": "documentation", "language": "python", "documentation_type": "architecture note", "style": "tutorial", "source_code": "def process_session(items):\n total = 0\n for item in items:\n total += len(str(item))\n return total", "task": "Write a tutorial architecture note for the session utility in Python.", "documentation": "This architecture note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_00995", "category": "documentation", "language": "javascript", "documentation_type": "docstring", "style": "technical", "source_code": "function processToken(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a technical docstring for the token utility in JavaScript.", "documentation": "This docstring should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 }, { "id": "AIDOC_00996", "category": "documentation", "language": "typescript", "documentation_type": "README", "style": "concise", "source_code": "function processQueue(items) {\n return items.map(item => String(item).trim()).filter(Boolean);\n}", "task": "Write a concise README for the queue utility in TypeScript.", "documentation": "This README should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 1 }, { "id": "AIDOC_00997", "category": "documentation", "language": "java", "documentation_type": "API reference", "style": "developer-friendly", "source_code": "public int processWorker(List items) {\n int total = 0;\n for (String item : items) total += item.length();\n return total;\n}", "task": "Write a developer-friendly API reference for the worker utility in Java.", "documentation": "This API reference should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 2 }, { "id": "AIDOC_00998", "category": "documentation", "language": "go", "documentation_type": "inline comment", "style": "enterprise", "source_code": "func processParser(items []string) int {\n total := 0\n for _, item := range items { total += len(item) }\n return total\n}", "task": "Write a enterprise inline comment for the parser utility in Go.", "documentation": "This inline comment should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 3 }, { "id": "AIDOC_00999", "category": "documentation", "language": "rust", "documentation_type": "usage example", "style": "tutorial", "source_code": "fn process_report(items: &[String]) -> usize {\n items.iter().map(|item| item.len()).sum()\n}", "task": "Write a tutorial usage example for the report utility in Rust.", "documentation": "This usage example should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 4 }, { "id": "AIDOC_01000", "category": "documentation", "language": "cpp", "documentation_type": "release note", "style": "technical", "source_code": "int process_profile(const vector& items) {\n int total = 0;\n for (const auto& item : items) total += item.size();\n return total;\n}", "task": "Write a technical release note for the profile utility in C++.", "documentation": "This release note should explain purpose, inputs, outputs, edge cases, and a short usage example.", "output_format": "Markdown", "quality_goal": "Clear, reusable, and easy to maintain by another engineer.", "difficulty": 5 } ]