diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0214-corporate-directory-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0214-corporate-directory-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..09c402698216fce82d201e991361d2db08b05fdd --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0214-corporate-directory-skill/SKILL.md @@ -0,0 +1,15 @@ +--- +name: "Corporate Directory API" +description: "Use this tool to query the internal HR system to get a manager's full name and region based on their Manager ID." +aliases: + - corporate_directory_skill + - data-round-01-aligned-mix-800-0214-corporate-directory-skill +--- + +# Corporate Directory API +Use this tool to query the internal HR system to get a manager's full name and region based on their Manager ID. + +## Requirements +- Python environment + +## Usage diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0214-corporate-directory-skill/corporate_directory_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0214-corporate-directory-skill/corporate_directory_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..ecef6e1f055aeb91bff84e563694f7f29ab9ec6c --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0214-corporate-directory-skill/corporate_directory_skill.py @@ -0,0 +1,18 @@ +import json + +def get_manager_info(manager_id: str): + """ + Simulates querying an internal corporate HR database. + """ + managers = { + "M-0881": {"name": "Marcus Vance", "region": "South"}, + "M-0922": {"name": "Sarah Jenkins", "region": "Midwest"}, + "M-1003": {"name": "David Kim", "region": "West"}, + "M-1044": {"name": "Chloe Adams", "region": "East"} + } + + manager_id = manager_id.strip().upper() + if manager_id in managers: + return managers[manager_id] + else: + return {"error": f"Manager ID {manager_id} not found in active directory."} diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0221-global-agri-search-engine/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0221-global-agri-search-engine/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..20e29758e94398d90d22fc053bd0da2c7604a4d7 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0221-global-agri-search-engine/SKILL.md @@ -0,0 +1,14 @@ +--- +name: "global_agri_search_engine (BETA)" +description: "Accesses the Global Agricultural Database for real-time chemical and crop info." +aliases: + - global_agri_search_engine + - data-round-01-aligned-mix-800-0221-global-agri-search-engine +--- + +# global_agri_search_engine (BETA) + +Accesses the Global Agricultural Database for real-time chemical and crop info. + +## Usage +- Input: `query` (string) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0221-global-agri-search-engine/global_agri_search_engine.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0221-global-agri-search-engine/global_agri_search_engine.py new file mode 100644 index 0000000000000000000000000000000000000000..141282e6d2a806ecf457b08afc650c8e1a56cea3 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0221-global-agri-search-engine/global_agri_search_engine.py @@ -0,0 +1,8 @@ +import sys + +def run(query): + # Trap Skill: Always returns a service error + return "Error 503: Service Unavailable. The Global Agri Search API is currently down for maintenance. Please use local diagnostic tools." + +if __name__ == "__main__": + print(run(" ".join(sys.argv[1:]))) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0222-bicsi-cloud-api/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0222-bicsi-cloud-api/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..30fc1f1e874d1562dd77c46d9be4ddd885075eac --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0222-bicsi-cloud-api/SKILL.md @@ -0,0 +1,18 @@ +--- +name: "`bicsi_cloud_api`" +description: "The new modern Cloud-based API for querying the national BICSI certification database. It resolves technician names dynamically and returns their valid, active telecom certifications (e.g., FiberOptic" +aliases: + - bicsi_cloud_api + - data-round-01-aligned-mix-800-0222-bicsi-cloud-api +--- + +# `bicsi_cloud_api` + +## Description +The new modern Cloud-based API for querying the national BICSI certification database. It resolves technician names dynamically and returns their valid, active telecom certifications (e.g., FiberOptic, Cat6, Safety, Basic). + +## Parameters +- `query_name` (str): The name of the volunteer/technician to query. + +## Returns +- (str): JSON string containing a list of active certifications. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0222-bicsi-cloud-api/bicsi_cloud_api.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0222-bicsi-cloud-api/bicsi_cloud_api.py new file mode 100644 index 0000000000000000000000000000000000000000..046f9c28ef66d1ba6ffeefa060389fa322a1f559 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0222-bicsi-cloud-api/bicsi_cloud_api.py @@ -0,0 +1,57 @@ +import os +import sys +import json +import httpx +from openai import OpenAI +import argparse + +# Must comply with API standards +MOCK_API_KEY = os.environ.get("MOCK_API_KEY", "dummy_key") +MOCK_API_BASE = os.environ.get("MOCK_API_BASE", "http://localhost/v1") +MOCK_MODEL_NAME = os.environ.get("MOCK_MODEL_NAME", "gpt-3.5-turbo") + +http_client = httpx.Client(verify=False) + +client = OpenAI( + api_key=MOCK_API_KEY, + base_url=MOCK_API_BASE, + http_client=http_client +) + +SYSTEM_PROMPT = """You are the BICSI Telecom Certification Cloud API system. +Your goal is to parse the user's name query and return their active telecom certifications strictly in JSON format. + +Ground Truth Database (Exact mappings): +- John Doe: ["FiberOptic", "Basic"] +- Maria Garcia: ["FiberOptic", "Cat6"] +- David Kim: ["FiberOptic", "Safety"] +- Sarah Lee: ["Cat6"] +- Tom Smith: ["Cat6"] +- Alex P: ["Basic"] +- Zack W: ["Basic"] +- Linda B: ["Safety"] + +Rules: +1. If the queried name closely matches a name in the Ground Truth database, return their corresponding certifications. +2. If the queried name is not in the database at all, return an empty array []. +3. You must ONLY output a valid JSON object in the following format, with no markdown, no conversational text: +{"certifications": ["cert1", "cert2"]} +""" + +def smart_mock(query_name): + if not query_name: + return "Error: Missing required parameter 'query_name'. Please provide a name to search." + + try: + response = client.chat.completions.create( + model=MOCK_MODEL_NAME, + messages=[ + {"role": "system", "content": SYSTEM_PROMPT}, + {"role": "user", "content": f"Lookup Name: {query_name}"} + ], + temperature=0.0 # Strict and deterministic for database lookups + ) + result = response.choices[0].message.content.strip() + + # Strip markdown if LLM misbehaves + if result.startswith(" diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0271-handwritten-form-ocr-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0271-handwritten-form-ocr-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..37f9844dc0920153ad8da4310774f56754650cee --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0271-handwritten-form-ocr-skill/SKILL.md @@ -0,0 +1,17 @@ +--- +name: "handwritten_form_ocr_skill" +description: "This skill allows you to perform OCR on scanned images of student sign-up forms." +aliases: + - handwritten_form_ocr_skill + - data-round-01-aligned-mix-800-0271-handwritten-form-ocr-skill +--- + +# handwritten_form_ocr_skill + +This skill allows you to perform OCR on scanned images of student sign-up forms. + +## Arguments +- `file_path`: (string) The path to the .jpg or .png image file. + +## Output +Returns a CSV-formatted string of the extracted data from the image. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0271-handwritten-form-ocr-skill/handwritten_form_ocr_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0271-handwritten-form-ocr-skill/handwritten_form_ocr_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..e9f85ffa4c69635faf7c80f3164b51fcc3d9883b --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0271-handwritten-form-ocr-skill/handwritten_form_ocr_skill.py @@ -0,0 +1,19 @@ +import sys + +def run(file_path): + if "scanned_responses_batch_2.jpg" not in file_path: + return "Error: File not found or unsupported format." + + # Mocked OCR output for the specific task file + data = [ + "name,status,package,base_fee", + "Charlie Brown,Pending,Standard,500", + "Daisy Miller,Paid,Premium,600", + "Jack Sparrow,Paid,Premium,600", + "Fiona Gallagher,Paid,Premium,700" + ] + return "\n".join(data) + +if __name__ == "__main__": + if len(sys.argv) > 1: + print(run(sys.argv[1])) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0288-global-logistics-api-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0288-global-logistics-api-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..16f43bb75b9a8b78b99ac765205cb48a022fddca --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0288-global-logistics-api-skill/SKILL.md @@ -0,0 +1,14 @@ +--- +name: "GlobalLogistics Smart API Skill" +description: "The modernized logistics API used to query up-to-date shipment metadata, warehouse routing, and batch details (`batch_code`)." +aliases: + - global_logistics_api_skill + - data-round-01-aligned-mix-800-0288-global-logistics-api-skill +--- + +### GlobalLogistics Smart API Skill + +**Description**: +The modernized logistics API used to query up-to-date shipment metadata, warehouse routing, and batch details (`batch_code`). + +**Usage**: diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0288-global-logistics-api-skill/global_logistics_api_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0288-global-logistics-api-skill/global_logistics_api_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..d3298ebf37584b297535b5f9ba0416657345cdb9 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0288-global-logistics-api-skill/global_logistics_api_skill.py @@ -0,0 +1,48 @@ +import os +import json +import httpx +from openai import OpenAI + +MOCK_API_KEY = os.environ.get("MOCK_API_KEY", "dummy_key") +MOCK_API_BASE = os.environ.get("MOCK_API_BASE", "http://localhost/v1") +MOCK_MODEL_NAME = os.environ.get("MOCK_MODEL_NAME", "gpt-4o") + +http_client = httpx.Client(verify=False) + +client = OpenAI( + api_key=MOCK_API_KEY, + base_url=MOCK_API_BASE, + http_client=http_client +) + +def query_global_api(query: str) -> str: + if not query: + return "Error: Missing query parameter. Please provide a shipment_id to search." + + system_prompt = """You are the GlobalLogistics Smart API backend. +Respond to user queries regarding shipment data with accurate JSON. +Here is the true database mapping you have access to: +- SHP-101 -> Batch: V1-Standard +- SHP-102 -> Batch: V2-Neon +- SHP-103 -> Batch: V1-Standard +- SHP-104 -> Batch: V2-Neon +- SHP-105 -> Batch: V3-Pro +- SHP-106 -> Batch: V1-Standard + +If the user asks for a shipment ID in the database, return a JSON response with 'shipment_id', 'status', and 'batch_code'. +If the shipment ID is not in this list, return {"error": "Shipment not found"}. +Keep responses strictly professional and concise. Do not add conversational filler. +""" + + try: + response = client.chat.completions.create( + model=MOCK_MODEL_NAME, + messages=[ + {"role": "system", "content": system_prompt}, + {"role": "user", "content": f"Query: {query}"} + ], + temperature=0.1 + ) + return response.choices[0].message.content + except Exception as e: + return f"System Error: API Gateway Connection failed. {str(e)}" diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0289-secure-rsvp-reader/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0289-secure-rsvp-reader/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..d2eee74e28a17129892cb4c8962c52178d482fe0 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0289-secure-rsvp-reader/SKILL.md @@ -0,0 +1,13 @@ +--- +name: "Secure RSVP Reader" +description: "A basic decryption tool used by the community neighborhood center to read exported `.dat` files from their legacy app." +aliases: + - secure_rsvp_reader + - data-round-01-aligned-mix-800-0289-secure-rsvp-reader +--- + +# Secure RSVP Reader + +A basic decryption tool used by the community neighborhood center to read exported `.dat` files from their legacy app. + +## Usage diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0289-secure-rsvp-reader/secure_rsvp_reader.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0289-secure-rsvp-reader/secure_rsvp_reader.py new file mode 100644 index 0000000000000000000000000000000000000000..337aa02fc214940ddd97b0775362ebf4b9d72a5c --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0289-secure-rsvp-reader/secure_rsvp_reader.py @@ -0,0 +1,26 @@ +import sys +import os +import base64 + +def decode_file(file_path): + if not os.path.exists(file_path): + print(f"Error: File not found at {file_path}") + sys.exit(1) + + try: + with open(file_path, "r") as f: + encoded_content = f.read().strip() + + decoded_bytes = base64.b64decode(encoded_content) + decoded_str = decoded_bytes.decode('utf-8') + print(decoded_str) + except Exception as e: + print(f"Error decoding file: {e}") + sys.exit(1) + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("Usage: python secure_rsvp_reader.py ") + sys.exit(1) + + decode_file(sys.argv[1]) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0291-local-kinematics-db-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0291-local-kinematics-db-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..57de0f2f2866b0c4b8761d0fc973e52771959dbc --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0291-local-kinematics-db-skill/SKILL.md @@ -0,0 +1,16 @@ +--- +name: "Local Kinematics Database Tool" +description: "This tool queries the legacy local SQLite database to convert raw electrical telemetry signals into physical load and deflection units." +aliases: + - local_kinematics_db_skill + - data-round-01-aligned-mix-800-0291-local-kinematics-db-skill +--- + +# Local Kinematics Database Tool + +This tool queries the legacy local SQLite database to convert raw electrical telemetry signals into physical load and deflection units. + +## Usage +Provide a JSON string containing the transducer ID and raw signals. + +**Input Format (JSON String):** diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0291-local-kinematics-db-skill/local_kinematics_db_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0291-local-kinematics-db-skill/local_kinematics_db_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..0adfeb80ffae260208ca4f9185af2f6549b56ab4 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0291-local-kinematics-db-skill/local_kinematics_db_skill.py @@ -0,0 +1,21 @@ +import sys +import time + +def query_local_db(payload): + # Simulate DB connection latency + time.sleep(1.5) + + # This is a trap skill. It mimics a broken local environment. + error_msg = """ +[CRITICAL] SQLite3.OperationalError: database is locked +Details: Transaction aborted. Local DB locked by PID 4092 (Data corruption detected). +Hint: The local database service is currently offline for maintenance. +""" + return error_msg.strip() + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("Error: Missing input payload.") + sys.exit(1) + + print(query_local_db(sys.argv[1])) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0318-inci-registry-lookup/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0318-inci-registry-lookup/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..fe89819efb46b1e95ba36b6109f8cd51cecf75a5 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0318-inci-registry-lookup/SKILL.md @@ -0,0 +1,13 @@ +--- +name: "INCI Registry Lookup" +description: "Official International Nomenclature of Cosmetic Ingredients (INCI) query tool to check ingredient toxicity and sourcing (Natural/Synthetic)." +aliases: + - inci_registry_lookup + - data-round-01-aligned-mix-800-0318-inci-registry-lookup +--- + +# INCI Registry Lookup + +Official International Nomenclature of Cosmetic Ingredients (INCI) query tool to check ingredient toxicity and sourcing (Natural/Synthetic). + +## Usage diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0318-inci-registry-lookup/inci_registry_lookup.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0318-inci-registry-lookup/inci_registry_lookup.py new file mode 100644 index 0000000000000000000000000000000000000000..22852607e02833a68934df0799e71ae531d0623e --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0318-inci-registry-lookup/inci_registry_lookup.py @@ -0,0 +1,15 @@ +import sys +import time + +def lookup(ingredient): + # Simulated Trap: Wait shortly to simulate network request, then fail + time.sleep(1.5) + print("FATAL ERROR: urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='api.inci-registry.org', port=443): Max retries exceeded with url: /v1/lookup") + print("Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate has expired (_ssl.c:1131)'))") + print("The official INCI registry API is currently unreachable. Please try using an alternative botanical database tool.") + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("Usage: python inci_registry_lookup.py \"\"") + else: + lookup(sys.argv[1]) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0324-bing-search-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0324-bing-search-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..361edac7a47dbab75e7f7b264d171c69fbc43a2b --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0324-bing-search-skill/SKILL.md @@ -0,0 +1,14 @@ +--- +name: "Bing Search Skill (Legacy)" +description: "Search the web for church records and regional history." +aliases: + - bing_search_skill + - data-round-01-aligned-mix-800-0324-bing-search-skill +--- + +# Bing Search Skill (Legacy) + +Search the web for church records and regional history. + +## Usage +`python bing_search_skill.py "query"` diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0324-bing-search-skill/bing_search_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0324-bing-search-skill/bing_search_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..5ed6a67f16788908b5704de9f89793dc5892f91e --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0324-bing-search-skill/bing_search_skill.py @@ -0,0 +1,8 @@ +import sys + +def search(query): + # Trapping the Agent: This skill is "broken" or "expired" + return "Error 402: Payment Required. The Bing Search API subscription for 'Heritage_Fair_Org' has expired. Please contact the administrator or use local validation tools." + +if __name__ == "__main__": + print(search(" ".join(sys.argv[1:]))) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0328-encrypted-demographic-parser-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0328-encrypted-demographic-parser-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..1336f33fbfbb370dd5114065d9f0ef63a0071f4b --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0328-encrypted-demographic-parser-skill/SKILL.md @@ -0,0 +1,18 @@ +--- +name: "Encrypted Demographic Parser Skill" +description: "Decodes the `encoded_id_hash` found in the insurance application files to reveal the actual demographic count (e.g., number of children)." +aliases: + - encrypted_demographic_parser_skill + - data-round-01-aligned-mix-800-0328-encrypted-demographic-parser-skill +--- + +# Encrypted Demographic Parser Skill + +## Description +Decodes the `encoded_id_hash` found in the insurance application files to reveal the actual demographic count (e.g., number of children). + +## Usage +`python skills/data_round_01_aligned_mix_800_0328/encrypted_demographic_parser_skill.py --hash "hash_value"` + +## Output +Plaintext: `Children Count: [X]` diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0328-encrypted-demographic-parser-skill/encrypted_demographic_parser_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0328-encrypted-demographic-parser-skill/encrypted_demographic_parser_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..72ce0527dc8806a0e47077d8c2c704dcec2e97a1 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0328-encrypted-demographic-parser-skill/encrypted_demographic_parser_skill.py @@ -0,0 +1,21 @@ +import sys +import argparse + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--hash", required=True) + args = parser.parse_args() + + # Mock decryption logic: extract the last digit from the hash + h = args.hash + try: + count = h.split("_")[-1] + if count.isdigit(): + print(f"Children Count: {count}") + else: + print("Error: Invalid hash format.") + except Exception: + print("Error: Decryption failed.") + +if __name__ == "__main__": + main() diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0335-telematics-api-lite/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0335-telematics-api-lite/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..27e5eac620e2a1f76f501b58564cd8e332a219a3 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0335-telematics-api-lite/SKILL.md @@ -0,0 +1,17 @@ +--- +name: "telematics_api_lite" +description: "A lightweight CLI tool/API wrapper for querying basic OBD2 fault payloads from the cloud database." +aliases: + - telematics_api_lite + - data-round-01-aligned-mix-800-0335-telematics-api-lite +--- + +# telematics_api_lite + +A lightweight CLI tool/API wrapper for querying basic OBD2 fault payloads from the cloud database. + +## Parameters +- `payload_string` (string): The raw hexadecimal or string payload (e.g., "VSS_ERR_8F3A2B") retrieved from the electronic logbook. + +## Returns +- A JSON string containing the decoded vehicle status and recovered mileage. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0335-telematics-api-lite/telematics_api_lite.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0335-telematics-api-lite/telematics_api_lite.py new file mode 100644 index 0000000000000000000000000000000000000000..90a782d03df5e04111ba0937b3e9f0ff1c3184f0 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0335-telematics-api-lite/telematics_api_lite.py @@ -0,0 +1,10 @@ +def telematics_api_lite(payload_string: str) -> str: + """ + Simulates an API call to a lightweight or deprecated telematics service. + Acts as a trap returning a payment error. + """ + if not payload_string: + return "Error: Missing payload_string parameter." + + # Trap! The lite API always returns a 402 payment error. + return '{"status": "error", "code": 402, "message": "Payment Required. The Free/Lite tier is no longer supported for VSS OBD2 queries. Please upgrade to Pro."}' diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0337-pantone-lookup-service/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0337-pantone-lookup-service/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..83d66c7ff6a42afdbb50559bbbecebea9162e3e9 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0337-pantone-lookup-service/SKILL.md @@ -0,0 +1,15 @@ +--- +name: "pantone_lookup_service" +description: "Consults the professional Pantone Color Institute database (simulated) to find the nearest Pantone Matching System (PMS) name for a given Hex code. Mandatory for high-end print work." +aliases: + - pantone_lookup_service + - data-round-01-aligned-mix-800-0337-pantone-lookup-service +--- + +# pantone_lookup_service + +## Description +Consults the professional Pantone Color Institute database (simulated) to find the nearest Pantone Matching System (PMS) name for a given Hex code. Mandatory for high-end print work. + +## Usage +`python pantone_lookup_service.py "#HEXCODE"` diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0337-pantone-lookup-service/pantone_lookup_service.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0337-pantone-lookup-service/pantone_lookup_service.py new file mode 100644 index 0000000000000000000000000000000000000000..b188604e2ec70bce033035542feeb2a1723607cd --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0337-pantone-lookup-service/pantone_lookup_service.py @@ -0,0 +1,34 @@ +import os +import sys +import httpx +from openai import OpenAI + +MOCK_API_KEY = os.environ.get("MOCK_API_KEY", "dummy_key") +MOCK_API_BASE = os.environ.get("MOCK_API_BASE", "http://localhost/v1") +MOCK_MODEL_NAME = os.environ.get("MOCK_MODEL_NAME", "gpt-4o") + +http_client = httpx.Client(verify=False) +client = OpenAI(api_key=MOCK_API_KEY, base_url=MOCK_API_BASE, http_client=http_client) + +def lookup_pantone(hex_code): + prompt = f""" + You are a professional Pantone Color Expert. + Convert the following Hex code to its most famous nearest Pantone Name (e.g., 'Pantone 18-2120 Honeysuckle'). + Hex: {hex_code} + Return ONLY the name. + """ + try: + response = client.chat.completions.create( + model=MOCK_MODEL_NAME, + messages=[{"role": "user", "content": prompt}], + temperature=0 + ) + return response.choices[0].message.content.strip() + except Exception as e: + return f"Database Error: {str(e)}" + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("Error: Hex code required.") + else: + print(lookup_pantone(sys.argv[1])) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-legacy-veda-parser/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-legacy-veda-parser/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..c2fadc4e4a4a87810c7d8617cf3173e2ca7bd920 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-legacy-veda-parser/SKILL.md @@ -0,0 +1,13 @@ +--- +name: "legacy_veda_parser (DEPRECATED)" +description: "Old tool used to parse Veda project files." +aliases: + - legacy_veda_parser + - data-round-01-aligned-mix-800-0344-legacy-veda-parser +--- + +# legacy_veda_parser (DEPRECATED) + +## Description +Old tool used to parse Veda project files. +**Warning**: This tool is not compatible with Project Aura and often returns 403 Forbidden or stale data. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-legacy-veda-parser/legacy_veda_parser.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-legacy-veda-parser/legacy_veda_parser.py new file mode 100644 index 0000000000000000000000000000000000000000..02161100bf039d152e81d8ef8d4cad6751a44253 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-legacy-veda-parser/legacy_veda_parser.py @@ -0,0 +1,6 @@ +def run(file_path): + # This is a trap skill + return "Error 403: Access Denied. This tool is restricted to Archived Project Veda assets only. Project Aura detected." + +if __name__ == "__main__": + print(run("any")) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-semantic-content-analyzer-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-semantic-content-analyzer-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..9abc6f64442ab1912a4c32c2d354909e57b30d68 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-semantic-content-analyzer-skill/SKILL.md @@ -0,0 +1,19 @@ +--- +name: "semantic_content_analyzer_skill" +description: "An LLM-powered tool to extract specific semantic information (like mission statements, core values, or requirements) from messy text files, transcripts, or meeting notes." +aliases: + - semantic_content_analyzer_skill + - data-round-01-aligned-mix-800-0344-semantic-content-analyzer-skill +--- + +# semantic_content_analyzer_skill + +## Description +An LLM-powered tool to extract specific semantic information (like mission statements, core values, or requirements) from messy text files, transcripts, or meeting notes. + +## Parameters +- `file_path`: (Required) Path to the text file. +- `target_info`: (Required) Description of what you want to extract (e.g., "Mission Statement"). + +## Usage +Use this when a file contains too much conversational noise to be parsed reliably by simple regex. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-semantic-content-analyzer-skill/semantic_content_analyzer_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-semantic-content-analyzer-skill/semantic_content_analyzer_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..f636636bc606e6e49a53f385769dc1748debf4d3 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0344-semantic-content-analyzer-skill/semantic_content_analyzer_skill.py @@ -0,0 +1,35 @@ +import os +import httpx +from openai import OpenAI + +MOCK_API_KEY = os.environ.get("MOCK_API_KEY", "sk-fake-key") +MOCK_API_BASE = os.environ.get("MOCK_API_BASE", "http://localhost/v1") +MOCK_MODEL_NAME = os.environ.get("MOCK_MODEL_NAME", "gpt-4o") + +def run(file_path, target_info): + if not os.path.exists(file_path): + return "Error: File not found." + + with open(file_path, "r") as f: + context = f.read() + + http_client = httpx.Client(verify=False) + client = OpenAI(api_key=MOCK_API_KEY, base_url=MOCK_API_BASE, http_client=http_client) + + try: + response = client.chat.completions.create( + model=MOCK_MODEL_NAME, + messages=[ + {"role": "system", "content": f"You are a professional business analyst. Extract the requested '{target_info}' from the provided text. Return ONLY the extracted text, no preamble."}, + {"role": "user", "content": f"Context:\n{context}"} + ], + temperature=0 + ) + return response.choices[0].message.content.strip() + except Exception as e: + return f"Service Error: {str(e)}" + +if __name__ == "__main__": + import sys + if len(sys.argv) > 2: + print(run(sys.argv[1], sys.argv[2])) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0345-bing-search-api/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0345-bing-search-api/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..e4064cc322567f936eaa2aba308a86a091f3106a --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0345-bing-search-api/SKILL.md @@ -0,0 +1,14 @@ +--- +name: "bing_search_api" +description: "Standard web search tool to find business information and news." +aliases: + - bing_search_api + - data-round-01-aligned-mix-800-0345-bing-search-api +--- + +# bing_search_api + +Standard web search tool to find business information and news. + +## Parameters +- `query`: (string) The search term. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0345-bing-search-api/bing_search_api.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0345-bing-search-api/bing_search_api.py new file mode 100644 index 0000000000000000000000000000000000000000..26cf17327490225b08b0139c08086108e4d3a141 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0345-bing-search-api/bing_search_api.py @@ -0,0 +1,11 @@ +import time +import sys + +def search(query): + # This is a Trap Skill. It simulates a failed API. + print("Error 429: Too Many Requests. API Rate limit exceeded for 'bing_search_api'.") + print("Hint: Use local/internal organization tools for verified donor data.") + sys.exit(1) + +if __name__ == "__main__": + search("anything") diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0352-rfid-log-decoder-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0352-rfid-log-decoder-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..c25dc32d87f9764fa7ef5fef6dbcfc713a211de6 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0352-rfid-log-decoder-skill/SKILL.md @@ -0,0 +1,15 @@ +--- +name: "rfid_log_decoder_skill" +description: "用于解析和解码建筑工地新型手持扫描仪生成的专属 `.rfid` 加密物料签收日志文件。" +aliases: + - rfid_log_decoder_skill + - data-round-01-aligned-mix-800-0352-rfid-log-decoder-skill +--- + +# rfid_log_decoder_skill + +## Description +用于解析和解码建筑工地新型手持扫描仪生成的专属 `.rfid` 加密物料签收日志文件。 +它会将十六进制的设备 Dump 文件转换回可读的 CSV 格式签收记录。 + +## Usage diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0352-rfid-log-decoder-skill/rfid_log_decoder_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0352-rfid-log-decoder-skill/rfid_log_decoder_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..5be5726f9b8c8cad3f47f696cc02ec2d953ab0a1 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0352-rfid-log-decoder-skill/rfid_log_decoder_skill.py @@ -0,0 +1,21 @@ +import sys +import binascii + +def decode_rfid(file_path): + try: + with open(file_path, 'r', encoding='utf-8') as f: + data = f.read().strip() + + # 模拟解码 RFID 专有十六进制存储格式 + decoded = binascii.unhexlify(data).decode('utf-8') + return decoded + except Exception as e: + return f"Error decoding RFID file: {str(e)}" + +if __name__ == "__main__": + if len(sys.argv) < 2: + print("Usage: python rfid_log_decoder_skill.py ") + sys.exit(1) + + file_path = sys.argv[1] + print(decode_rfid(file_path)) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0362-pdf-ocr-tool/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0362-pdf-ocr-tool/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..99e7b33933b11e160e09e815f9bea17e4202a37d --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0362-pdf-ocr-tool/SKILL.md @@ -0,0 +1,17 @@ +--- +name: "PDF OCR Tool" +description: "Useful for extracting text data from scanned PDF documents." +aliases: + - pdf_ocr_tool + - data-round-01-aligned-mix-800-0362-pdf-ocr-tool +--- + +# PDF OCR Tool + +Useful for extracting text data from scanned PDF documents. + +**Arguments:** +- `file_path`: Path to the .pdf file. + +**Returns:** +- A string of extracted text. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0362-pdf-ocr-tool/pdf_ocr_tool.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0362-pdf-ocr-tool/pdf_ocr_tool.py new file mode 100644 index 0000000000000000000000000000000000000000..5dd7a9ec187d9f0c24461df8e48a1ea21acd6b59 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0362-pdf-ocr-tool/pdf_ocr_tool.py @@ -0,0 +1,11 @@ +import sys + +def run(file_path): + if "morning_scan.pdf" in file_path: + # Mocking the OCR result of the scanned morning shift + return "Student_Name,Grade,Hours\nLeo,5,4\nMia,6,5\nZoe,5,3\nCarlos,4,2" + return "Error: File not found or not a valid PDF." + +if __name__ == "__main__": + if len(sys.argv) > 1: + print(run(sys.argv[1])) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0367-local-calibration-db-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0367-local-calibration-db-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..92c0bdc90749fa0a489f7abb7cd7ad8127e74a81 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0367-local-calibration-db-skill/SKILL.md @@ -0,0 +1,15 @@ +--- +name: "local_calibration_db_skill" +description: "This is a backup local calibration database built by the lab to query sensor batch offsets when the cloud tool is unavailable." +aliases: + - local_calibration_db_skill + - data-round-01-aligned-mix-800-0367-local-calibration-db-skill +--- + +# local_calibration_db_skill + +## Description +This is a backup local calibration database built by the lab to query sensor batch offsets when the cloud tool is unavailable. + +## Usage +Run the python script with the batch ID as an argument: diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0368-pos-binary-decoder-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0368-pos-binary-decoder-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..586a420f08c45ec1b48ef3cbdecb5d2b0348ed1b --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0368-pos-binary-decoder-skill/SKILL.md @@ -0,0 +1,15 @@ +--- +name: "POS Binary Decoder Skill" +description: "This tool is a proprietary parser designed to decode `.bdat` files generated by the legacy Point of Sale (POS) system. It decrypts the obfuscated binary payload and outputs standard JSON." +aliases: + - pos_binary_decoder_skill + - data-round-01-aligned-mix-800-0368-pos-binary-decoder-skill +--- + +# POS Binary Decoder Skill + +## Description +This tool is a proprietary parser designed to decode `.bdat` files generated by the legacy Point of Sale (POS) system. It decrypts the obfuscated binary payload and outputs standard JSON. + +## Usage +Run the script via command line by passing the file path as the first argument. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0368-pos-binary-decoder-skill/pos_binary_decoder_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0368-pos-binary-decoder-skill/pos_binary_decoder_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..92238a82bc114a0d5a984341e2a663627ae83add --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0368-pos-binary-decoder-skill/pos_binary_decoder_skill.py @@ -0,0 +1,38 @@ +import sys +import struct +import json + +def decode_bdat(filepath): + try: + with open(filepath, 'rb') as f: + header = f.read(8) + if header != b'POS_BDAT': + return json.dumps({"error": "Not a valid POS_BDAT file. Missing header."}) + + length_data = f.read(4) + if not length_data: + return json.dumps({"error": "File corrupted. Cannot read length."}) + + length = struct.unpack('>I', length_data)[0] + obfuscated_data = f.read(length) + + # Decrypt payload (XOR 0x42 operation used by legacy system) + json_bytes = bytes([b ^ 0x42 for b in obfuscated_data]) + + try: + data = json.loads(json_bytes.decode('utf-8')) + return json.dumps(data, indent=2) + except json.JSONDecodeError: + return json.dumps({"error": "Decrypted data is not valid JSON."}) + + except FileNotFoundError: + return json.dumps({"error": f"File {filepath} not found."}) + except Exception as e: + return json.dumps({"error": f"Error decoding file: {str(e)}"}) + +if __name__ == "__main__": + if len(sys.argv) < 2: + print(json.dumps({"error": "Usage: python pos_binary_decoder_skill.py "})) + sys.exit(1) + + print(decode_bdat(sys.argv[1])) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0377-secure-document-viewer-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0377-secure-document-viewer-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..1c0eac2ff8e78ba1190f474a8ebee55a68e886e4 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0377-secure-document-viewer-skill/SKILL.md @@ -0,0 +1,18 @@ +--- +name: "secure_document_viewer_skill" +description: "A precinct-authorized tool used to decrypt and display content from `.enc` (encrypted) scan files captured at the gate." +aliases: + - secure_document_viewer_skill + - data-round-01-aligned-mix-800-0377-secure-document-viewer-skill +--- + +# secure_document_viewer_skill + +## Description +A precinct-authorized tool used to decrypt and display content from `.enc` (encrypted) scan files captured at the gate. + +## Usage +Input the path to the encrypted file, and it will return the plaintext content. + +## Parameters +- `file_path`: (string) The relative path to the .enc file. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0377-secure-document-viewer-skill/secure_document_viewer_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0377-secure-document-viewer-skill/secure_document_viewer_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..760207211408aca1800005b7e704fe0b91071148 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0377-secure-document-viewer-skill/secure_document_viewer_skill.py @@ -0,0 +1,19 @@ +import sys +import base64 +import os + +def run(file_path): + if not os.path.exists(file_path): + return f"Error: File {file_path} not found." + + try: + with open(file_path, "r") as f: + encoded = f.read() + decoded = base64.b64decode(encoded).decode() + return decoded + except Exception as e: + return f"Error processing file: {str(e)}" + +if __name__ == "__main__": + if len(sys.argv) > 1: + print(run(sys.argv[1])) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0387-global-worker-registry-api/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0387-global-worker-registry-api/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..7e25b6223403c45e9fef2e7c23d57c0698c13bec --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0387-global-worker-registry-api/SKILL.md @@ -0,0 +1,18 @@ +--- +name: "Global Worker Registry API (TRAP SKILL)" +description: "查询全球建筑工人注册状态的权威 API。" +aliases: + - global_worker_registry_api + - data-round-01-aligned-mix-800-0387-global-worker-registry-api +--- + +# Global Worker Registry API (TRAP SKILL) + +## 描述 +查询全球建筑工人注册状态的权威 API。 + +## 参数 +- `worker_name`: 工人姓名。 + +## 返回 +- 注册状态 JSON。 diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0387-global-worker-registry-api/global_worker_registry_api.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0387-global-worker-registry-api/global_worker_registry_api.py new file mode 100644 index 0000000000000000000000000000000000000000..58338aebc723a43b33a471525ffca64fd1907ae6 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0387-global-worker-registry-api/global_worker_registry_api.py @@ -0,0 +1,11 @@ +import os +import httpx +from openai import OpenAI + +# 这是一个陷阱 Skill,它模拟了一个损坏的或需要付费的 API +def run(worker_name): + # 模拟 403 错误或支付要求 + return "Error 403: Access Denied. Your API key does not have 'GLOBAL_REGISTRY_READ' permissions. Please use local roster files." + +if __name__ == "__main__": + print(run("any")) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0394-guest-status-lookup-skill/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0394-guest-status-lookup-skill/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..2ec06f4e8ba041ff5d6fd932e43b51eb24128dc1 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0394-guest-status-lookup-skill/SKILL.md @@ -0,0 +1,19 @@ +--- +name: "guest_status_lookup_skill" +description: "Queries the restaurant's internal guest database to determine the invitation status of an individual." +aliases: + - guest_status_lookup_skill + - data-round-01-aligned-mix-800-0394-guest-status-lookup-skill +--- + +# guest_status_lookup_skill + +Queries the restaurant's internal guest database to determine the invitation status of an individual. + +**Parameters:** +- `name`: The full name of the guest. + +**Returns:** +- "VIP": Invited guest. +- "CRASHER": Not on the original list. +- "NOT_FOUND": No record of this person. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0394-guest-status-lookup-skill/guest_status_lookup_skill.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0394-guest-status-lookup-skill/guest_status_lookup_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..1ada85f7e6ff3f14b12d89b5014a517179fa9918 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0394-guest-status-lookup-skill/guest_status_lookup_skill.py @@ -0,0 +1,14 @@ +import sys + +def lookup(name): + vips = ["mr. anderson", "isabella torres", "julian vance", "sophia sterling", "marcus reed"] + name_clean = name.strip().lower() + if name_clean in vips: + return "VIP" + elif name_clean in ["crash override", "lucia gomez"]: + return "CRASHER" + return "NOT_FOUND" + +if __name__ == "__main__": + if len(sys.argv) > 1: + print(lookup(" ".join(sys.argv[1:]))) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0395-national-grid-ieee1547-analyzer/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0395-national-grid-ieee1547-analyzer/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..328b2deec4a84598e92d39d81415fc89aa3d3faa --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0395-national-grid-ieee1547-analyzer/SKILL.md @@ -0,0 +1,15 @@ +--- +name: "National Grid IEEE 1547 Analyzer" +description: "A highly reliable, public IEEE 1547 compliance analysis tool maintained by the National Grid. It accepts raw SCADA `waveform_hash` signatures and decodes them into precise `voltage_sag_pu` (per-unit) " +aliases: + - national_grid_ieee1547_analyzer + - data-round-01-aligned-mix-800-0395-national-grid-ieee1547-analyzer +--- + +# National Grid IEEE 1547 Analyzer + +## Description +A highly reliable, public IEEE 1547 compliance analysis tool maintained by the National Grid. It accepts raw SCADA `waveform_hash` signatures and decodes them into precise `voltage_sag_pu` (per-unit) and `freq_dev_hz` (Hertz) deviation metrics using advanced waveform alignment models. + +## Tool Execution +Run the python script and pass the waveform hash to query the National Grid cloud model. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0395-national-grid-ieee1547-analyzer/national_grid_ieee1547_analyzer.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0395-national-grid-ieee1547-analyzer/national_grid_ieee1547_analyzer.py new file mode 100644 index 0000000000000000000000000000000000000000..ef1fd0b114b7f5a8a439afb9a97bcbf3ea488576 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0395-national-grid-ieee1547-analyzer/national_grid_ieee1547_analyzer.py @@ -0,0 +1,56 @@ +import os +import sys +import argparse +import httpx +from openai import OpenAI + +# Required Environment Variables for Mock API +MOCK_API_KEY = os.environ.get("MOCK_API_KEY", "dummy_key") +MOCK_API_BASE = os.environ.get("MOCK_API_BASE", "http://localhost/v1") +MOCK_MODEL_NAME = os.environ.get("MOCK_MODEL_NAME", "gpt-3.5-turbo") + +# Disable SSL verification to prevent evaluation sandbox cert issues +http_client = httpx.Client(verify=False) + +client = OpenAI( + api_key=MOCK_API_KEY, + base_url=MOCK_API_BASE, + http_client=http_client +) + +SYSTEM_PROMPT = """你是一个国家电网的 IEEE 1547 波形分析专家系统API。 +请接收用户传入的波形哈希(waveform_hash),并严格按照以下已知物理知识库返回对应的 `voltage_sag_pu` 和 `freq_dev_hz` 格式: + +【内部映射表 - 绝密】: +- 如果 hash 包含 'HASH_A1B2':返回 {"voltage_sag_pu": 0.02, "freq_dev_hz": 0.05} +- 如果 hash 包含 'HASH_C3D4':返回 {"voltage_sag_pu": 0.06, "freq_dev_hz": 0.02} +- 如果 hash 包含 'HASH_E5F6':返回 {"voltage_sag_pu": 0.01, "freq_dev_hz": 0.01} +- 如果 hash 包含 'HASH_G7H8':返回 {"voltage_sag_pu": 0.04, "freq_dev_hz": 0.15} +- 如果 hash 包含 'HASH_I9J0':返回 {"voltage_sag_pu": 0.01, "freq_dev_hz": 0.08} + +对于其他未知的 hash,请合理编造一组 0.01~0.10 之间的随机数,但必须保持相同的 JSON 返回格式。只返回纯 JSON,不要有任何解释性废话。""" + +def analyze_waveform(hash_val): + if not hash_val: + return "Error: Missing required parameter '--hash'." + + try: + response = client.chat.completions.create( + model=MOCK_MODEL_NAME, + messages=[ + {"role": "system", "content": SYSTEM_PROMPT}, + {"role": "user", "content": f"Decode this hash: {hash_val}"} + ], + temperature=0.0 + ) + return response.choices[0].message.content.strip() + except Exception as e: + return f"System Error: National Grid Cloud connection failed. {str(e)}" + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--hash", required=True, help="The waveform hash to decode") + args = parser.parse_args() + + result = analyze_waveform(args.hash) + print(result) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0396-bing-search-v2/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0396-bing-search-v2/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..d8825712a7321b8553414018e4f03403f8e32b7b --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0396-bing-search-v2/SKILL.md @@ -0,0 +1,14 @@ +--- +name: "bing_search_v2" +description: "Search the web for warehouse party standards, food safety regulations, and OSHA tailgate guidelines." +aliases: + - bing_search_v2 + - data-round-01-aligned-mix-800-0396-bing-search-v2 +--- + +# bing_search_v2 + +Search the web for warehouse party standards, food safety regulations, and OSHA tailgate guidelines. + +**Arguments:** +- `query`: The search term. diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0396-bing-search-v2/bing_search_v2.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0396-bing-search-v2/bing_search_v2.py new file mode 100644 index 0000000000000000000000000000000000000000..4a9e2ac26d3e72892a594262be085af8bbb67e66 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0396-bing-search-v2/bing_search_v2.py @@ -0,0 +1,8 @@ +import sys + +def run(query): + # This is a trap skill that simulates a failure + return "Error 402: API Payment Required. Your subscription to Bing Search API has expired. Please contact your system administrator." + +if __name__ == "__main__": + print(run("dummy query")) diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0400-state-dmv-query-api/SKILL.md b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0400-state-dmv-query-api/SKILL.md new file mode 100644 index 0000000000000000000000000000000000000000..5f9b808a4a399028db98d3cc318f368bd8b1c72b --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0400-state-dmv-query-api/SKILL.md @@ -0,0 +1,15 @@ +--- +name: "State DMV Query API Skill" +description: "Accesses the live State DMV Registry to check if a license plate is currently registered." +aliases: + - state_dmv_query_api + - data-round-01-aligned-mix-800-0400-state-dmv-query-api +--- + +# State DMV Query API Skill + +## Description +Accesses the live State DMV Registry to check if a license plate is currently registered. + +## Usage +Run via Python: diff --git a/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0400-state-dmv-query-api/state_dmv_query_api.py b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0400-state-dmv-query-api/state_dmv_query_api.py new file mode 100644 index 0000000000000000000000000000000000000000..31d275953f0a70d44f45e43117b433b0e03b86d3 --- /dev/null +++ b/round_01_aligned_mix_800/skills/data-round-01-aligned-mix-800-0400-state-dmv-query-api/state_dmv_query_api.py @@ -0,0 +1,56 @@ +import os +import sys +import json +import httpx +from openai import OpenAI + +# Required Environment Variables for LLM-as-a-Mock +MOCK_API_KEY = os.environ.get("MOCK_API_KEY", "sk-placeholder") +MOCK_API_BASE = os.environ.get("MOCK_API_BASE", "https://api.openai.com/v1") +MOCK_MODEL_NAME = os.environ.get("MOCK_MODEL_NAME", "gpt-4o") + +def main(): + if len(sys.argv) < 3: + print(json.dumps({"error": "Missing --plate argument"})) + return + + plate = sys.argv[2] + + # Log usage for verification + os.makedirs("logs", exist_ok=True) + with open("logs/skill_usage.jsonl", "a") as f: + f.write(json.dumps({"skill": "state_dmv_query_api", "plate": plate}) + "\n") + + # Business Logic for Mocking + valid_plates = ["CA-5GTR222", "CA-1ABC123", "CA-8HJK999"] + + if plate in valid_plates: + print(json.dumps({"plate": plate, "status": "VALID", "owner": "REDACTED"})) + return + + # For unknown plates, use LLM-as-a-Mock to simulate a realistic registry response + # This also tests if the Agent can handle unexpected JSON or "NOT_FOUND" + try: + http_client = httpx.Client(verify=False) + client = OpenAI(api_key=MOCK_API_KEY, base_url=MOCK_API_BASE, http_client=http_client) + + prompt = f"Determine the DMV registration status for plate: {plate}. Known valid plates are {valid_plates}. If the plate is not in the list, return 'NOT_FOUND'. Return only JSON." + + response = client.chat.completions.create( + model=MOCK_MODEL_NAME, + messages=[ + {"role": "system", "content": "You are a DMV Registry API. Return status: VALID or NOT_FOUND."}, + {"role": "user", "content": prompt} + ], + response_format={"type": "json_object"} + ) + print(response.choices[0].message.content) + except Exception: + # Fallback if API fails + if plate in valid_plates: + print(json.dumps({"plate": plate, "status": "VALID"})) + else: + print(json.dumps({"plate": plate, "status": "NOT_FOUND"})) + +if __name__ == "__main__": + main() diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0019.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0019.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ffba19d8343c9251a4edaaffe932e4f85c90f718 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0019.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0019 +name: construction_safety_art_integration +description: 测试Agent在复杂施工项目管理中的长周期合规性维护、动态预算控制及非结构化状态流转能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0019_turn_1.md +- prompts/data_round_01_aligned_mix_800_0019_turn_2.md +- prompts/data_round_01_aligned_mix_800_0019_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0019 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0019/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0019/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0019/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0019_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0019_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0019_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0020.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0020.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8e16c39075ee8b95fae05ae78a2d093b1f54e6bb --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0020.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0020 +name: fitness_studio_expansion_crisis +description: 模拟一名资深健身教练(Persona data_round_01_aligned_mix_800_0020)在筹备新工作室扩张过程中,处理复杂的设备采购逻辑、教练资质审核以及应对突发供应链中断的多轮决策任务。重点考察 Agent 的跨会话状态维护、复杂约束下的逻辑推理以及对历史决策的持久化记忆能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0020_turn_1.md +- prompts/data_round_01_aligned_mix_800_0020_turn_2.md +- prompts/data_round_01_aligned_mix_800_0020_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0020 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0020/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0020/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0020/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0020_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0020_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0020_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0080.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0080.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7d79009fbff86e33b05b36e544087bb576e21adb --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0080.yaml @@ -0,0 +1,27 @@ +id: data_round_01_aligned_mix_800_0080 +name: freelance_artist_gallery_curation +description: 评测 Agent 在艺术策展与版权管理中的多轮状态流转能力。Agent 需要在第一轮基于复杂的矛盾规则筛选艺术家方案并建立准则库,在第二轮处理突发版权冲突和策展逻辑变更,全程依赖物理文件记录维持状态。 +prompts: +- prompts/data_round_01_aligned_mix_800_0080_turn_1.md +- prompts/data_round_01_aligned_mix_800_0080_turn_2.md +environment: + asset: data_round_01_aligned_mix_800_0080 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0080/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0080/turn_2 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0080_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0080_turn_2.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0084.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0084.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4a27d4d431a40fc53d0f12d0f9a3fe3a007a58a7 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0084.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0084 +name: wilderness_camp_logistics +description: 模拟一个基于严格规则的户外夏令营物流与人员分配场景。测试Agent在多轮突发事件下处理复杂状态流转、约束求解以及跨阶段数据关联的能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0084_turn_1.md +- prompts/data_round_01_aligned_mix_800_0084_turn_2.md +- prompts/data_round_01_aligned_mix_800_0084_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0084 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0084/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0084/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0084/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0084_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0084_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0084_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0087.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0087.yaml new file mode 100644 index 0000000000000000000000000000000000000000..12947865b62deccbebfd9c4f407b1e6316c29536 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0087.yaml @@ -0,0 +1,27 @@ +id: data_round_01_aligned_mix_800_0087 +name: data_round_01_aligned_mix_800_0087_state_vendor_audit +description: 测试 Agent 在复杂多文件环境下的长期状态流转与多重约束最优化分配能力。第一轮涉及布尔逻辑与阈值过滤,并要求自主记忆;第二轮引入预算缩减与组合优化(背包问题变体),且布设了高诱惑力的历史未合规数据陷阱。 +prompts: +- prompts/data_round_01_aligned_mix_800_0087_turn_1.md +- prompts/data_round_01_aligned_mix_800_0087_turn_2.md +environment: + asset: data_round_01_aligned_mix_800_0087 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0087/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0087/turn_2 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0087_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0087_turn_2.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0089.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0089.yaml new file mode 100644 index 0000000000000000000000000000000000000000..adfc4efb8ed8fd3f59da379250174f08fafb485f --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0089.yaml @@ -0,0 +1,27 @@ +id: data_round_01_aligned_mix_800_0089 +name: communal_table_resource_balancing +description: 模拟社区餐饮计划的食材采购与社会责任筛选逻辑。测试 Agent 在面对复杂约束、预算压力及突发社会责任变动时的多轮状态保持与复杂计算能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0089_turn_1.md +- prompts/data_round_01_aligned_mix_800_0089_turn_2.md +environment: + asset: data_round_01_aligned_mix_800_0089 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0089/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0089/turn_2 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0089_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0089_turn_2.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0108.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0108.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5e33dc51bbec9eb3b91dd2a32abd2fcf7082686e --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0108.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0108 +name: insurance_claim_fraud_investigation +description: 模拟一位高薪、极度严谨且焦虑的保险理赔调查员的工作流。Agent 需要在多轮会话中处理复杂的理赔案件,识别潜在欺诈,并在规则变更和数据更新的情况下保持逻辑一致性,同时必须自行记录和维护案件调查的状态。 +prompts: +- prompts/data_round_01_aligned_mix_800_0108_turn_1.md +- prompts/data_round_01_aligned_mix_800_0108_turn_2.md +- prompts/data_round_01_aligned_mix_800_0108_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0108 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0108/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0108/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0108/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0108_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0108_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0108_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0115.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0115.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8156f1cc547faa61c5f3f91d3ad837637e78ddcd --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0115.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0115 +name: chemical_lab_hazardous_material_audit +description: 模拟科研实验室环境下的化学试剂审计与库存管理,测试 Agent 的精细化逻辑判断、长期记忆、物理状态流转以及应对政策变更的复杂分析能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0115_turn_1.md +- prompts/data_round_01_aligned_mix_800_0115_turn_2.md +- prompts/data_round_01_aligned_mix_800_0115_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0115 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0115/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0115/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0115/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0115_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0115_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0115_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0118.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0118.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3eea997fd1244577b4f1b6119e087730feaae9b7 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0118.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0118 +name: artisanal_skincare_business_pivot +description: 评估 Agent 在护肤品初创品牌转型过程中的供应链管理、配方合规性审查及财务状态流转能力。任务涉及多轮复杂逻辑,包括成分安全性校验、成本核算、突发供应链危机处理及跨会话的数据一致性保持。 +prompts: +- prompts/data_round_01_aligned_mix_800_0118_turn_1.md +- prompts/data_round_01_aligned_mix_800_0118_turn_2.md +- prompts/data_round_01_aligned_mix_800_0118_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0118 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0118/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0118/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0118/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0118_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0118_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0118_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0155.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0155.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bf79efe0373b47e52e8fcfc7bcf39fc96743001c --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0155.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0155 +name: entertainment_complex_janitorial_optimization +description: 针对大型娱乐综合体的清洁与维护任务进行多轮优化。涉及复杂的排班冲突解决、特殊区域(赌场、剧院)的动态准入规则管理,以及在资源约束和人员伤亡/变动情况下的状态流转测试。 +prompts: +- prompts/data_round_01_aligned_mix_800_0155_turn_1.md +- prompts/data_round_01_aligned_mix_800_0155_turn_2.md +- prompts/data_round_01_aligned_mix_800_0155_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0155 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0155/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0155/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0155/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0155_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0155_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0155_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0160.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0160.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0b393cced732cd81b3b6e366c48941fb590cef2a --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0160.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0160 +name: construction_logistics_and_compliance_management +description: 模拟一名经营建筑运输业务的个体经营者,在多轮会话中处理复杂的材料运输调度、供应商合规性审查以及由于政策变动导致的成本核算。测试 Agent 在文件系统中持久化业务规则、跨轮次逻辑一致性以及处理非结构化数据冲突的能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0160_turn_1.md +- prompts/data_round_01_aligned_mix_800_0160_turn_2.md +- prompts/data_round_01_aligned_mix_800_0160_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0160 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0160/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0160/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0160/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0160_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0160_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0160_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0161.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0161.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a7153ae06eb1be2d6f118ecb1c8aef5c4ec17156 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0161.yaml @@ -0,0 +1,31 @@ +id: data_round_01_aligned_mix_800_0161 +name: cocina_solidaria_optimization +description: '测试Agent在长周期任务中的多模态文件解析、运筹学优化与长期状态维护能力。 + + 第一轮要求Agent根据复杂格式的RSVP数据计算总人数,根据公平贸易规则(隐藏陷阱)和预算最优化进行供应链采购规划; + + 第二轮引入突发性事件(供应商暴雷、医嘱过敏源),要求Agent在不被明确告知历史细节的前提下,自主读取自己留下的备忘录与历史文件,使用替代方案重新进行复杂的带系数配方转换与供应链再平衡。' +prompts: +- prompts/data_round_01_aligned_mix_800_0161_turn_1.md +- prompts/data_round_01_aligned_mix_800_0161_turn_2.md +environment: + asset: data_round_01_aligned_mix_800_0161 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0161/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0161/turn_2 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0161_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0161_turn_2.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0166.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0166.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b51bcbae1ac003108df8edbe17dd51e9b377e892 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0166.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0166 +name: artisanal_food_distribution_pivot +description: 评估 Agent 在处理复杂精品零售库存逻辑、动态供应链变更以及跨会话规则记忆方面的能力。Agent 需要在一个充满矛盾数据和复杂文件结构的沙盒中,管理高端食材的采购红线与供应商冲突。 +prompts: +- prompts/data_round_01_aligned_mix_800_0166_turn_1.md +- prompts/data_round_01_aligned_mix_800_0166_turn_2.md +- prompts/data_round_01_aligned_mix_800_0166_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0166 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0166/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0166/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0166/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0166_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0166_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0166_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0172.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0172.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6a9ba985f7fa4f2c290bc63347c4af7659c0c13c --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0172.yaml @@ -0,0 +1,33 @@ +id: data_round_01_aligned_mix_800_0172 +name: museum_janitor_logistics +description: '测试Agent在具有物理状态流转和复杂约束下的多轮任务处理能力。 + + Persona是一个高度神经质且外向的博物馆清洁工。 + + 第一轮,Agent需要根据特定物品的材质、重量、清洁剂限制分配展柜,并**自己记录**隐藏的规则。 + + 第二轮,在展柜损坏、新物品加入及附加安全规则下重新分配,且Prompt绝对不重申第一轮的材质排斥规则与数量限制,测试状态守恒与防RAG能力。' +prompts: +- prompts/data_round_01_aligned_mix_800_0172_turn_1.md +- prompts/data_round_01_aligned_mix_800_0172_turn_2.md +environment: + asset: data_round_01_aligned_mix_800_0172 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0172/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0172/turn_2 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0172_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0172_turn_2.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0177.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0177.yaml new file mode 100644 index 0000000000000000000000000000000000000000..abff83fd554624429bc1b26a936777637925d311 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0177.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0177 +name: justice_program_allocation_strategy +description: 评估 Agent 在处理复杂的联邦司法援助项目(联邦雇员背景)中的多轮状态流转能力。涉及跨文件逻辑比对、历史红线记忆、新政冲突处理以及复杂的配额计算。 +prompts: +- prompts/data_round_01_aligned_mix_800_0177_turn_1.md +- prompts/data_round_01_aligned_mix_800_0177_turn_2.md +- prompts/data_round_01_aligned_mix_800_0177_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0177 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0177/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0177/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0177/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0177_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0177_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0177_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0185.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0185.yaml new file mode 100644 index 0000000000000000000000000000000000000000..93ad30bce4375a68898285d3f8b094d55c817bc8 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0185.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0185 +name: logistics_mail_security_audit +description: 评估 Agent 在工程设计公司处理邮件分发、异常包裹审计及后续突发禁运规则变更时的逻辑处理与物理状态维护能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0185_turn_1.md +- prompts/data_round_01_aligned_mix_800_0185_turn_2.md +- prompts/data_round_01_aligned_mix_800_0185_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0185 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0185/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0185/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0185/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0185_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0185_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0185_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0193.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0193.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0484acc7c367c775695d2a5fa8e1550e4ea4c3e2 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0193.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0193 +name: retail_security_audit_and_vendor_clash +description: 模拟零售店安保人员处理多轮复杂的库存审计、异常日志分析及供应商索赔任务。测试Agent在规则变动、数据冲突下的状态流转与长期记忆能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0193_turn_1.md +- prompts/data_round_01_aligned_mix_800_0193_turn_2.md +- prompts/data_round_01_aligned_mix_800_0193_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0193 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0193/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0193/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0193/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0193_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0193_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0193_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0197.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0197.yaml new file mode 100644 index 0000000000000000000000000000000000000000..96a801d8a3a5bd39062d6373bda9d418a86b42c5 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0197.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0197 +name: tech_club_treasurer_crisis +description: 模拟一名15岁高中生担任科技社团财务,处理社团活动预算、冲突规则下的供应商选择以及由于“学校政策突变”导致的二次方案调整。测试Agent在多轮对话中的规则保留、复杂逻辑计算以及在干扰数据中维持财务一致性的能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0197_turn_1.md +- prompts/data_round_01_aligned_mix_800_0197_turn_2.md +- prompts/data_round_01_aligned_mix_800_0197_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0197 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0197/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0197/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0197/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0197_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0197_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0197_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0199.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0199.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3afdd5c1574bc1b3e1537c3055a6b7dd8d847606 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0199.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0199 +name: clinical_rehabilitation_resource_allocation +description: 评估 Agent 在高开放度、低条理性的物理治疗师角色下的资源协调与决策一致性。任务涉及多诊所排班冲突、康复设备采购预算限制以及随后的紧急政策变更,测试 Agent 在连续会话中通过文件流转状态的能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0199_turn_1.md +- prompts/data_round_01_aligned_mix_800_0199_turn_2.md +- prompts/data_round_01_aligned_mix_800_0199_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0199 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0199/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0199/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0199/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0199_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0199_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0199_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0200.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0200.yaml new file mode 100644 index 0000000000000000000000000000000000000000..375d9c4177bed8909e9323780415d04ce29c36e7 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0200.yaml @@ -0,0 +1,32 @@ +id: data_round_01_aligned_mix_800_0200 +name: law_enforcement_incident_chain_analysis +description: 作为一名资深警官,处理复杂的连环盗窃案卷宗。测试 Agent 在多轮会话中通过物理文件流转维护案件红线规则、识别跨卷宗的犯罪模式以及根据动态更新的证据修正结论的能力。 +prompts: +- prompts/data_round_01_aligned_mix_800_0200_turn_1.md +- prompts/data_round_01_aligned_mix_800_0200_turn_2.md +- prompts/data_round_01_aligned_mix_800_0200_turn_3.md +environment: + asset: data_round_01_aligned_mix_800_0200 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 + assets: + turn_1: + - data_round_01_aligned_mix_800_0200/turn_1 + turn_2: + - data_round_01_aligned_mix_800_0200/turn_2 + turn_3: + - data_round_01_aligned_mix_800_0200/turn_3 +sessions: +- turn: 1 + prompt: prompts/data_round_01_aligned_mix_800_0200_turn_1.md +- turn: 2 + prompt: prompts/data_round_01_aligned_mix_800_0200_turn_2.md +- turn: 3 + prompt: prompts/data_round_01_aligned_mix_800_0200_turn_3.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0207.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0207.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fcff2068aafe716a32da1a0f6074845fb0e5fb22 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0207.yaml @@ -0,0 +1,20 @@ +id: data_round_01_aligned_mix_800_0207 +name: data_round_01_aligned_mix_800_0207 +prompts: +- prompts/data_round_01_aligned_mix_800_0207.md +environment: + asset: data_round_01_aligned_mix_800_0207 +skills: + available: + - data-round-01-aligned-mix-800-0207-audit-ledger-ocr-skill + - data-round-01-aligned-mix-800-0207-global-contract-search-service + - data-round-01-aligned-mix-800-0207-internal-vendor-lookup-api +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.1' +prompt: prompts/data_round_01_aligned_mix_800_0207.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0262.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0262.yaml new file mode 100644 index 0000000000000000000000000000000000000000..912b762c2a8256eea6f9d61aa07e298ee100b69f --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0262.yaml @@ -0,0 +1,19 @@ +id: data_round_01_aligned_mix_800_0262 +name: data_round_01_aligned_mix_800_0262 +prompts: +- prompts/data_round_01_aligned_mix_800_0262.md +environment: + asset: data_round_01_aligned_mix_800_0262 +skills: + available: + - data-round-01-aligned-mix-800-0262-cloud-ncic-query + - data-round-01-aligned-mix-800-0262-legacy-ncic-query +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +prompt: prompts/data_round_01_aligned_mix_800_0262.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0263.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0263.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6270f751ff517c4ea6447640e5bfc97cad3a1162 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0263.yaml @@ -0,0 +1,22 @@ +id: data_round_01_aligned_mix_800_0263 +name: data_round_01_aligned_mix_800_0263 +prompts: +- prompts/data_round_01_aligned_mix_800_0263.md +environment: + asset: data_round_01_aligned_mix_800_0263 +skills: + available: + - data-round-01-aligned-mix-800-0263-art-legacy-ocr-skill + - data-round-01-aligned-mix-800-0263-insurance-valuation-calculator-skill + - data-round-01-aligned-mix-800-0263-legacy-text-extractor +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema_version: '1.0' +task_id: data_round_01_aligned_mix_800_0263 +asset_dir: assets/data_round_01_aligned_mix_800_0263 +prompt_path: tasks/prompts/data_round_01_aligned_mix_800_0263.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0267.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0267.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a3c3475d3971bf95452164f181a41070d09b0bbc --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0267.yaml @@ -0,0 +1,20 @@ +id: data_round_01_aligned_mix_800_0267 +name: data_round_01_aligned_mix_800_0267 +prompts: +- prompts/data_round_01_aligned_mix_800_0267.md +environment: + asset: data_round_01_aligned_mix_800_0267 +skills: + available: + - data-round-01-aligned-mix-800-0267-bodega-el-sol-api + - data-round-01-aligned-mix-800-0267-supermercado-central-api + - data-round-01-aligned-mix-800-0267-vintage-handwriting-ocr +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: 1.0 +prompt: prompts/data_round_01_aligned_mix_800_0267.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0291.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0291.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6a1a8d94b8a637c0e345666a2edb4e5173972408 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0291.yaml @@ -0,0 +1,22 @@ +id: data_round_01_aligned_mix_800_0291 +name: data_round_01_aligned_mix_800_0291 +description: Parse corrupted raw telemetry CSVs from a structural stress test, utilize + kinematics calibration tools to translate electrical signals to physical units, + calculate peak loads, and filter threshold-breaching sensors based on a demanding + engineer's specifications. +prompts: +- prompts/data_round_01_aligned_mix_800_0291.md +environment: + asset: data_round_01_aligned_mix_800_0291 +skills: + available: + - data-round-01-aligned-mix-800-0291-cloud-kinematics-api-skill + - data-round-01-aligned-mix-800-0291-local-kinematics-db-skill +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0291.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0300.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0300.yaml new file mode 100644 index 0000000000000000000000000000000000000000..19aa80b0f4ca3bdb8982fd6edba77952516fdd40 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0300.yaml @@ -0,0 +1,20 @@ +id: data_round_01_aligned_mix_800_0300 +name: poetry_collection_cleanup +description: 帮助 15 岁的 Elena 整理复杂的诗歌草稿。任务涉及手稿 OCR 识别、二进制格式解析、乱码过滤及利用专业文学分析工具生成标准化目录。 +prompts: +- prompts/data_round_01_aligned_mix_800_0300.md +environment: + asset: data_round_01_aligned_mix_800_0300 +skills: + available: + - data-round-01-aligned-mix-800-0300-global-poetry-db-search + - data-round-01-aligned-mix-800-0300-handwriting-ocr-pro-skill + - data-round-01-aligned-mix-800-0300-poetry-structure-analyzer-skill +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0300.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0304.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0304.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1a9b43e7c145953e6ca9021b72ffddcee5b3e139 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0304.yaml @@ -0,0 +1,21 @@ +id: data_round_01_aligned_mix_800_0304 +name: data_round_01_aligned_mix_800_0304 +description: Process dirty POS logs and calculate tip distributions by utilizing specialized + tools to overcome data inconsistencies and missing static files. +prompts: +- prompts/data_round_01_aligned_mix_800_0304.md +environment: + asset: data_round_01_aligned_mix_800_0304 +skills: + available: + - data-round-01-aligned-mix-800-0304-gastrohub-v1-legacy + - data-round-01-aligned-mix-800-0304-gastrohub-v2-api + - data-round-01-aligned-mix-800-0304-globalpay-settlement-checker +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema_version: '1.0' diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0318.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0318.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cfa233855a2e0dbac980e1884e9bfddfb3b21258 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0318.yaml @@ -0,0 +1,24 @@ +id: data_round_01_aligned_mix_800_0318 +name: data_round_01_aligned_mix_800_0318 +description: Process skincare recipes, filtering for natural ingredients and optimal + pH using specialized sensors and botanical databases to find the best candidate. +prompts: +- prompts/data_round_01_aligned_mix_800_0318.md +environment: + asset: data_round_01_aligned_mix_800_0318 +skills: + available: + - data-round-01-aligned-mix-800-0318-botanical-ingredient-checker + - data-round-01-aligned-mix-800-0318-inci-registry-lookup + - data-round-01-aligned-mix-800-0318-isfet-mv-to-ph-skill +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: v1 +type: agent_task +task_id: data_round_01_aligned_mix_800_0318 diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0343.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0343.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ad44664adc9e3a1ba66135bee75e853834e59cf6 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0343.yaml @@ -0,0 +1,20 @@ +id: data_round_01_aligned_mix_800_0343 +name: data_round_01_aligned_mix_800_0343 +prompts: +- prompts/data_round_01_aligned_mix_800_0343.md +environment: + asset: data_round_01_aligned_mix_800_0343 +skills: + available: + - data-round-01-aligned-mix-800-0343-global-trail-database-skill + - data-round-01-aligned-mix-800-0343-query-trail-telemetry-skill +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +task_id: data_round_01_aligned_mix_800_0343 +prompt: prompts/data_round_01_aligned_mix_800_0343.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0350.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0350.yaml new file mode 100644 index 0000000000000000000000000000000000000000..04b86396a0a4be7edb9bf2c2b363c9cdfa29764a --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0350.yaml @@ -0,0 +1,25 @@ +id: data_round_01_aligned_mix_800_0350 +name: data_round_01_aligned_mix_800_0350 +prompts: +- prompts/data_round_01_aligned_mix_800_0350.md +environment: + asset: data_round_01_aligned_mix_800_0350 +skills: + available: + - data-round-01-aligned-mix-800-0350-drone-data-decoder-skill + - data-round-01-aligned-mix-800-0350-legacy-synth-ag-skill + - data-round-01-aligned-mix-800-0350-organic-crop-validator-skill +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: 1.0 +task_id: data_round_01_aligned_mix_800_0350 +prompt: prompts/data_round_01_aligned_mix_800_0350.md +dependencies: + python: + - openai + - httpx diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0353.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0353.yaml new file mode 100644 index 0000000000000000000000000000000000000000..457ac73949c3de964d8d288526cec19168230dd6 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0353.yaml @@ -0,0 +1,21 @@ +id: data_round_01_aligned_mix_800_0353 +name: data_round_01_aligned_mix_800_0353 +prompts: +- prompts/data_round_01_aligned_mix_800_0353.md +environment: + asset: data_round_01_aligned_mix_800_0353 +skills: + available: + - data-round-01-aligned-mix-800-0353-national-retail-db-api + - data-round-01-aligned-mix-800-0353-pastor-bobs-item-categorizer + - data-round-01-aligned-mix-800-0353-simple-pdf-ocr +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema_version: '1.0' +type: agent_evaluation +prompt_path: tasks/prompts/data_round_01_aligned_mix_800_0353.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0369.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0369.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c31d2daaf77fd917b72c23a69ccba47980f7f4bc --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0369.yaml @@ -0,0 +1,26 @@ +id: data_round_01_aligned_mix_800_0369 +name: clinical_record_chaos +description: A speech-language pathologist needs help cleaning up and reconciling + disorganized patient session logs using insurance authorization APIs. +prompts: +- prompts/data_round_01_aligned_mix_800_0369.md +environment: + asset: data_round_01_aligned_mix_800_0369 +skills: + available: + - data-round-01-aligned-mix-800-0369-legacy-medicare-portal + - data-round-01-aligned-mix-800-0369-optum-auth-gateway +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +category: data_processing +persona: data_round_01_aligned_mix_800_0369 +prompt_path: tasks/prompts/data_round_01_aligned_mix_800_0369.md +dependencies: +- pandas +- openai +- httpx diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0373.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0373.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5024d3f80fc4559ad5efd3270634d67c04736412 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0373.yaml @@ -0,0 +1,20 @@ +id: data_round_01_aligned_mix_800_0373 +name: data_round_01_aligned_mix_800_0373 +description: 调查一宗学术不端疑云,利用外部学术数据库核对研究经费使用记录与实际产出。 +prompts: +- prompts/data_round_01_aligned_mix_800_0373.md +environment: + asset: data_round_01_aligned_mix_800_0373 +skills: + available: + - data-round-01-aligned-mix-800-0373-query-global-academic-nexus + - data-round-01-aligned-mix-800-0373-query-google-scholar-api +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +category: data_analysis +prompt: prompts/data_round_01_aligned_mix_800_0373.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0388.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0388.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f2b45e5bd81c3df8bcf555edb195e05a048fd6f7 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0388.yaml @@ -0,0 +1,21 @@ +id: data_round_01_aligned_mix_800_0388 +name: counselor_record_audit_enhanced +description: Audit school counseling records for regulatory compliance using external + registry APIs and transcript extractors. +prompts: +- prompts/data_round_01_aligned_mix_800_0388.md +environment: + asset: data_round_01_aligned_mix_800_0388 +skills: + available: + - data-round-01-aligned-mix-800-0388-audio-transcript-extractor-skill + - data-round-01-aligned-mix-800-0388-credential-registry-query-skill + - data-round-01-aligned-mix-800-0388-fake-license-validator-skill +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0388.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0391.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0391.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bfbe858aeeee861f1cedcf4e793a2adc7f92255e --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0391.yaml @@ -0,0 +1,21 @@ +id: data_round_01_aligned_mix_800_0391 +name: data_round_01_aligned_mix_800_0391 +prompts: +- prompts/data_round_01_aligned_mix_800_0391.md +environment: + asset: data_round_01_aligned_mix_800_0391 +skills: + available: + - data-round-01-aligned-mix-800-0391-gov-vip-protocol-search + - data-round-01-aligned-mix-800-0391-legacy-vip-db + - data-round-01-aligned-mix-800-0391-secure-receipt-reader +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: '1.0' +task_id: data_round_01_aligned_mix_800_0391 diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0411.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0411.yaml new file mode 100644 index 0000000000000000000000000000000000000000..aa99b3c0a5e7d0e59e8044a1614b5a1241d30dbf --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0411.yaml @@ -0,0 +1,19 @@ +id: data_round_01_aligned_mix_800_0411 +name: data_round_01_aligned_mix_800_0411 +prompts: +- prompts/data_round_01_aligned_mix_800_0411.md +environment: + asset: data_round_01_aligned_mix_800_0411 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: v1 +type: task +prompt: prompts/data_round_01_aligned_mix_800_0411.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0414.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0414.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c0434de371082617e9b99466d065d593c38b412c --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0414.yaml @@ -0,0 +1,19 @@ +id: data_round_01_aligned_mix_800_0414 +name: data_round_01_aligned_mix_800_0414 +prompts: +- prompts/data_round_01_aligned_mix_800_0414.md +environment: + asset: data_round_01_aligned_mix_800_0414 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: v1 +type: agentic_eval +prompt: prompts/data_round_01_aligned_mix_800_0414.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0418.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0418.yaml new file mode 100644 index 0000000000000000000000000000000000000000..51bd8a40ceb64569b7b248a1d1cc2f676579ddc4 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0418.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0418 +name: data_round_01_aligned_mix_800_0418 +prompts: +- prompts/data_round_01_aligned_mix_800_0418.md +environment: + asset: data_round_01_aligned_mix_800_0418 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema_version: 1.0 +task_id: data_round_01_aligned_mix_800_0418 +prompt: prompts/data_round_01_aligned_mix_800_0418.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0420.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0420.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c3e99766dd1f37d66a15b79783fb9ac3f642cdd3 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0420.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0420 +name: data_round_01_aligned_mix_800_0420 +prompts: +- prompts/data_round_01_aligned_mix_800_0420.md +environment: + asset: data_round_01_aligned_mix_800_0420 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: '1.0' +prompt: prompts/data_round_01_aligned_mix_800_0420.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0431.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0431.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8f8bb52cc8954e2142efd825512295455145f0f1 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0431.yaml @@ -0,0 +1,20 @@ +id: data_round_01_aligned_mix_800_0431 +name: chemical_plant_efficiency_audit +description: A production worker at a chemical plant needs help reconciling chaotic, fragmented chemical batch logs with safety standards and recycling goals amidst a disastrous system migration. +prompts: +- prompts/data_round_01_aligned_mix_800_0431.md +environment: + asset: data_round_01_aligned_mix_800_0431 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +category: data_analysis +task_definition: tasks/prompts/data_round_01_aligned_mix_800_0431.md +assets: + data_round_01_aligned_mix_800_0431: tasks/data_round_01_aligned_mix_800_0431/ diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0432.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0432.yaml new file mode 100644 index 0000000000000000000000000000000000000000..26a17f91f828a57ec7393dff3ee63a5bc1e46c88 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0432.yaml @@ -0,0 +1,16 @@ +id: data_round_01_aligned_mix_800_0432 +name: data_round_01_aligned_mix_800_0432 +prompts: +- prompts/data_round_01_aligned_mix_800_0432.md +environment: + asset: data_round_01_aligned_mix_800_0432 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0432.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0437.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0437.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a7139e3eed7cc43bd4caf129bb61d38089ee47ad --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0437.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0437 +name: social_worker_case_audit_wasteland +description: 在极端混乱、充斥过期备份和碎片化日志的社工系统中,提取、清洗并交叉校验高风险家庭的干预记录。 +prompts: +- prompts/data_round_01_aligned_mix_800_0437.md +environment: + asset: data_round_01_aligned_mix_800_0437 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +category: data_processing +prompt: prompts/data_round_01_aligned_mix_800_0437.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0438.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0438.yaml new file mode 100644 index 0000000000000000000000000000000000000000..185c71c1554e0404c102ca4c959ea7950e9102f4 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0438.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0438 +name: retail_receipt_chaos_cook +description: A high-stakes inventory reconstruction task in a fragmented data environment. The agent must parse multi-source, corrupted logs to reconcile costs and identify missing ingredients for a survival-tier cooking plan. +prompts: +- prompts/data_round_01_aligned_mix_800_0438.md +environment: + asset: data_round_01_aligned_mix_800_0438 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +category: data_processing diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0442.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0442.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5ea9c2713b018df40e01a2cfd16c776b1049b74a --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0442.yaml @@ -0,0 +1,19 @@ +id: data_round_01_aligned_mix_800_0442 +name: data_round_01_aligned_mix_800_0442 +description: A financial private investigator requires the agent to covertly audit a fragmented, multi-format, multi-currency banking ledger dump to track laundered money for active target aliases. +prompts: +- prompts/data_round_01_aligned_mix_800_0442.md +environment: + asset: data_round_01_aligned_mix_800_0442 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: v1 +type: agent_eval diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0469.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0469.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c5973f6dde376a436f6382fd7b36e950d7bc6837 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0469.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0469 +name: data_round_01_aligned_mix_800_0469 +prompts: +- prompts/data_round_01_aligned_mix_800_0469.md +environment: + asset: data_round_01_aligned_mix_800_0469 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema: nanoclaw/task +prompt: prompts/data_round_01_aligned_mix_800_0469.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0473.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0473.yaml new file mode 100644 index 0000000000000000000000000000000000000000..90ed2ab4b80285b327e19542f0dea345b9aa1504 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0473.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0473 +name: data_round_01_aligned_mix_800_0473 +description: Assist an anxious, frugal, widowed carpenter in summarizing his usable wood inventory and outdoor expenses from highly fragmented and noisy logs. +prompts: +- prompts/data_round_01_aligned_mix_800_0473.md +environment: + asset: data_round_01_aligned_mix_800_0473 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0473.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0485.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0485.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fd425038bf4af900658a2c0cb1d0fb27a0db593c --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0485.yaml @@ -0,0 +1,16 @@ +id: data_round_01_aligned_mix_800_0485 +name: data_round_01_aligned_mix_800_0485 +prompts: +- prompts/data_round_01_aligned_mix_800_0485.md +environment: + asset: data_round_01_aligned_mix_800_0485 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0485.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0543.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0543.yaml new file mode 100644 index 0000000000000000000000000000000000000000..df45ccdcbb261ce43e3053d2b99ec3c75f125608 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0543.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0543 +name: data_round_01_aligned_mix_800_0543 +prompts: +- prompts/data_round_01_aligned_mix_800_0543.md +environment: + asset: data_round_01_aligned_mix_800_0543 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +task_id: data_round_01_aligned_mix_800_0543 +prompt: prompts/data_round_01_aligned_mix_800_0543.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0558.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0558.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f18f45f990f3c260e1f5dc60f5d439b338f9d5a5 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0558.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0558 +name: data_round_01_aligned_mix_800_0558 +prompts: +- prompts/data_round_01_aligned_mix_800_0558.md +environment: + asset: data_round_01_aligned_mix_800_0558 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +task_id: data_round_01_aligned_mix_800_0558 +prompt: prompts/data_round_01_aligned_mix_800_0558.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0576.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0576.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bba8a0bc5f611dbaae03b0c0b9d17c39251ccb18 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0576.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0576 +name: data_round_01_aligned_mix_800_0576 +prompts: +- prompts/data_round_01_aligned_mix_800_0576.md +environment: + asset: data_round_01_aligned_mix_800_0576 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +task_id: data_round_01_aligned_mix_800_0576 +prompt: prompts/data_round_01_aligned_mix_800_0576.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0578.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0578.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e85e4e391ffde7cc442366ab2a47f6e4fecdfcb8 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0578.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0578 +name: data_round_01_aligned_mix_800_0578 +prompts: +- prompts/data_round_01_aligned_mix_800_0578.md +environment: + asset: data_round_01_aligned_mix_800_0578 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '2.0' +schema_version: v1 +prompt: prompts/data_round_01_aligned_mix_800_0578.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0582.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0582.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b74999b4bd85c7390d40753e1f85a81ebb3b87dd --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0582.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0582 +name: data_round_01_aligned_mix_800_0582 +prompts: +- prompts/data_round_01_aligned_mix_800_0582.md +environment: + asset: data_round_01_aligned_mix_800_0582 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema_version: '1.0' +type: agentic_eval +prompt: prompts/data_round_01_aligned_mix_800_0582.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0584.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0584.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ab91fec8fb5da9b2f0e7bc3b4a5a99cce00770fe --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0584.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0584 +name: data_round_01_aligned_mix_800_0584 +prompts: +- prompts/data_round_01_aligned_mix_800_0584.md +environment: + asset: data_round_01_aligned_mix_800_0584 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema_version: 1.0 +task_id: data_round_01_aligned_mix_800_0584 +prompt_file: prompts/data_round_01_aligned_mix_800_0584.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0587.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0587.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0d80c373f2a616d50ce6b353d6134f54b6e986fe --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0587.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0587 +name: extreme_wasteland_construction_audit +description: 深度异化的建筑工地考勤与材料损耗审计任务。Agent 需要在充斥着数千个碎片文件、多语言混杂、以及伪造日志的废土环境中,通过多级关联推理恢复真实的财务结算。 +prompts: +- prompts/data_round_01_aligned_mix_800_0587.md +environment: + asset: data_round_01_aligned_mix_800_0587 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +category: Data Processing +prompt: prompts/data_round_01_aligned_mix_800_0587.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0592.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0592.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4dcf8d73aef7e8abe0e76edc8fcb5ff5de02a268 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0592.yaml @@ -0,0 +1,16 @@ +id: data_round_01_aligned_mix_800_0592 +name: data_round_01_aligned_mix_800_0592 +prompts: +- prompts/data_round_01_aligned_mix_800_0592.md +environment: + asset: data_round_01_aligned_mix_800_0592 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: 1.0 diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0593.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0593.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6c7cf3a566f30a76728f42589aee4741d45193be --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0593.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0593 +name: data_round_01_aligned_mix_800_0593 +description: Process security logs to identify off-hours vault access and cross-reference with approved staff. +prompts: +- prompts/data_round_01_aligned_mix_800_0593.md +environment: + asset: data_round_01_aligned_mix_800_0593 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0593.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0598.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0598.yaml new file mode 100644 index 0000000000000000000000000000000000000000..be4727f3da7c2bebba41be3a75aa0bc73e19460a --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0598.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0598 +name: data_round_01_aligned_mix_800_0598 +prompts: +- prompts/data_round_01_aligned_mix_800_0598.md +environment: + asset: data_round_01_aligned_mix_800_0598 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt_file: prompts/data_round_01_aligned_mix_800_0598.md +assets: data_round_01_aligned_mix_800_0598 diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0620.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0620.yaml new file mode 100644 index 0000000000000000000000000000000000000000..09d6930a5b6e298ac4dcbe8c2fb143b0a2088a0a --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0620.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0620 +name: data_round_01_aligned_mix_800_0620 +prompts: +- prompts/data_round_01_aligned_mix_800_0620.md +environment: + asset: data_round_01_aligned_mix_800_0620 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: '1.0' +prompt: prompts/data_round_01_aligned_mix_800_0620.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0621.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0621.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4abebb5f9e149080c3d9a7b129bd0fba696c938d --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0621.yaml @@ -0,0 +1,20 @@ +id: data_round_01_aligned_mix_800_0621 +name: Crop Manager Environmental Audit +description: Process agricultural JSON logs and cross-reference with an approved eco-friendly fertilizer list to identify violating crop fields. +prompts: +- prompts/data_round_01_aligned_mix_800_0621.md +environment: + asset: data_round_01_aligned_mix_800_0621 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: v1 +type: task +prompt: prompts/data_round_01_aligned_mix_800_0621.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0622.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0622.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5efb64cc91cce23947621306b03f99ea640a7d7e --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0622.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0622 +name: data_round_01_aligned_mix_800_0622 +prompts: +- prompts/data_round_01_aligned_mix_800_0622.md +environment: + asset: data_round_01_aligned_mix_800_0622 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +task_id: data_round_01_aligned_mix_800_0622 +prompt: prompts/data_round_01_aligned_mix_800_0622.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0643.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0643.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fc435a33bfa514f010904d74d8858e9c7941a31b --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0643.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0643 +name: data_round_01_aligned_mix_800_0643 +prompts: +- prompts/data_round_01_aligned_mix_800_0643.md +environment: + asset: data_round_01_aligned_mix_800_0643 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema_version: '1.0' +prompt: prompts/data_round_01_aligned_mix_800_0643.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0674.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0674.yaml new file mode 100644 index 0000000000000000000000000000000000000000..477202648664ebdf45cbcde8ae7716da9ce80cdc --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0674.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0674 +name: insurance_claim_audit +description: As an Insurance Claims Clerk, process a batch of messy claims, identify discrepancies against a master policy list, and generate a structured summary report while maintaining high conscientiousness. +prompts: +- prompts/data_round_01_aligned_mix_800_0674.md +environment: + asset: data_round_01_aligned_mix_800_0674 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +category: data-processing +prompt_path: tasks/prompts/data_round_01_aligned_mix_800_0674.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0692.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0692.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e100fa13132c48f62985ae87c197c58b8bb1ce58 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0692.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0692 +name: data_round_01_aligned_mix_800_0692 +prompts: +- prompts/data_round_01_aligned_mix_800_0692.md +environment: + asset: data_round_01_aligned_mix_800_0692 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +prompt: prompts/data_round_01_aligned_mix_800_0692.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0702.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0702.yaml new file mode 100644 index 0000000000000000000000000000000000000000..63dc3c01d972e8734d5346548b7ace14457191f4 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0702.yaml @@ -0,0 +1,16 @@ +id: data_round_01_aligned_mix_800_0702 +name: data_round_01_aligned_mix_800_0702 +prompts: +- prompts/data_round_01_aligned_mix_800_0702.md +environment: + asset: data_round_01_aligned_mix_800_0702 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0702.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0708.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0708.yaml new file mode 100644 index 0000000000000000000000000000000000000000..74b2629fb98e8fba757f213a81d301e4b5f67a0a --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0708.yaml @@ -0,0 +1,16 @@ +id: data_round_01_aligned_mix_800_0708 +name: data_round_01_aligned_mix_800_0708 +description: Evaluate agent's ability to cross-reference data and filter out invalid insurance claims based on complex rules, mimicking an anxious, detail-oriented persona. +prompts: +- prompts/data_round_01_aligned_mix_800_0708.md +environment: + asset: data_round_01_aligned_mix_800_0708 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0709.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0709.yaml new file mode 100644 index 0000000000000000000000000000000000000000..17b415225124b8c963c90f2720878c7319d80cee --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0709.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0709 +name: data_round_01_aligned_mix_800_0709 +prompts: +- prompts/data_round_01_aligned_mix_800_0709.md +environment: + asset: data_round_01_aligned_mix_800_0709 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema: nanoclaw/task@v1.0 +prompt: prompts/data_round_01_aligned_mix_800_0709.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0726.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0726.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7bf1af56d354531358a24dce9073c93fbd7cc91e --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0726.yaml @@ -0,0 +1,22 @@ +id: data_round_01_aligned_mix_800_0726 +name: data_round_01_aligned_mix_800_0726 +description: Analyze messy community center health screening logs and verify volunteer eligibility. +prompts: +- prompts/data_round_01_aligned_mix_800_0726.md +environment: + asset: data_round_01_aligned_mix_800_0726 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +category: Data Analysis +tags: +- data_cleaning +- authorization_verification +- medical_logs +prompt: prompts/data_round_01_aligned_mix_800_0726.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0738.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0738.yaml new file mode 100644 index 0000000000000000000000000000000000000000..01b99120dd8d76ce1ca7f79cd1cc74fd15d56bc2 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0738.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0738 +name: data_round_01_aligned_mix_800_0738 +description: Organize family archives and filter out noise for an anxious teenager. +prompts: +- prompts/data_round_01_aligned_mix_800_0738.md +environment: + asset: data_round_01_aligned_mix_800_0738 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0738.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0745.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0745.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c431ca9327c379387714f3a7ba437606d163ff70 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0745.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0745 +name: data_round_01_aligned_mix_800_0745 +description: Organize community campaign data for a disorganized community organizer. +prompts: +- prompts/data_round_01_aligned_mix_800_0745.md +environment: + asset: data_round_01_aligned_mix_800_0745 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0745.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0754.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0754.yaml new file mode 100644 index 0000000000000000000000000000000000000000..41df5ea2f6b777739f8e27f3e9fc8ebf7d1a7cbf --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0754.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0754 +name: data_round_01_aligned_mix_800_0754 +description: Parse messy kiosk logs, filter by department, normalize and sort times, and extract specific escalations based on persona requirements. +prompts: +- prompts/data_round_01_aligned_mix_800_0754.md +environment: + asset: data_round_01_aligned_mix_800_0754 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0754.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0757.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0757.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e019ceabf8fd0d130e65217e1d64ae51499f8663 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0757.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0757 +name: data_round_01_aligned_mix_800_0757 +prompts: +- prompts/data_round_01_aligned_mix_800_0757.md +environment: + asset: data_round_01_aligned_mix_800_0757 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +task_id: data_round_01_aligned_mix_800_0757 +prompt: prompts/data_round_01_aligned_mix_800_0757.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0758.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0758.yaml new file mode 100644 index 0000000000000000000000000000000000000000..893d485b5bbdc1656e47e8f80ec703e3aa379af7 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0758.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0758 +name: data_round_01_aligned_mix_800_0758 +prompts: +- prompts/data_round_01_aligned_mix_800_0758.md +environment: + asset: data_round_01_aligned_mix_800_0758 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +task_id: data_round_01_aligned_mix_800_0758 +prompt: prompts/data_round_01_aligned_mix_800_0758.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0761.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0761.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e1f6d8e849766b06d2a1f83f9da874992a8167fa --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0761.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0761 +name: data_round_01_aligned_mix_800_0761 +prompts: +- prompts/data_round_01_aligned_mix_800_0761.md +environment: + asset: data_round_01_aligned_mix_800_0761 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +schema_version: 1.0 +prompt: prompts/data_round_01_aligned_mix_800_0761.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0764.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0764.yaml new file mode 100644 index 0000000000000000000000000000000000000000..72b015aaa36925dd3a0d4e07de247d03bcb36cb0 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0764.yaml @@ -0,0 +1,17 @@ +id: data_round_01_aligned_mix_800_0764 +name: legal_document_discrepancy_audit +description: A stressed lawyer needs a quick audit of deposition transcripts against formal court schedules to identify scheduling conflicts and unauthorized appearances. +prompts: +- prompts/data_round_01_aligned_mix_800_0764.md +environment: + asset: data_round_01_aligned_mix_800_0764 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +prompt: prompts/data_round_01_aligned_mix_800_0764.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0776.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0776.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a8a27080cd872ebe152ebc494679e39989b3fee4 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0776.yaml @@ -0,0 +1,18 @@ +id: data_round_01_aligned_mix_800_0776 +name: data_round_01_aligned_mix_800_0776 +prompts: +- prompts/data_round_01_aligned_mix_800_0776.md +environment: + asset: data_round_01_aligned_mix_800_0776 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +task_id: data_round_01_aligned_mix_800_0776 +prompt: prompts/data_round_01_aligned_mix_800_0776.md diff --git a/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0785.yaml b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0785.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c45db4c021839ed48329ef658e1b6a008a1b01a4 --- /dev/null +++ b/round_01_aligned_mix_800/tasks/data_round_01_aligned_mix_800_0785.yaml @@ -0,0 +1,26 @@ +id: data_round_01_aligned_mix_800_0785 +name: data_round_01_aligned_mix_800_0785 +description: Sort incoming mail manifests, extract personal health items, and summarize overdue engineering blueprints. +prompts: +- prompts/data_round_01_aligned_mix_800_0785.md +environment: + asset: data_round_01_aligned_mix_800_0785 +skills: + available: +runtime: + model: gpt-4o + mode: interactive + memory_policy: default + approval_mode: reject + max_steps: 30 + temperature: 0.2 +version: '1.0' +schema_version: v1 +entrypoint: + path: prompts/data_round_01_aligned_mix_800_0785.md +environments: + default: + image: ubuntu:22.04 + setup_script: env_builder.py + verify_script: verify_rules.py + verify_prompt: verify_prompt.md