{ "reply_rate": 1.0, "empty_think_rate": 0.0, "syntax_pass_rate": 0.7553191489361702, "tool_leak_rate": 0.0, "url_contam_rate": 0.0, "total": 104, "with_code": 94, "results": [ { "idx": 1, "cat": "repl_oneliner", "prompt": "Write a single ARO line that logs the message 'Hello, World!' to the console.", "reply": "```aro\nLog 'Hello, World!' to the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 2, "cat": "repl_oneliner", "prompt": "Write one ARO statement that retrieves the current time from the clock.", "reply": "```aro\nRetrieve the from the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 3, "cat": "repl_oneliner", "prompt": "Write a single line that computes the length of the string 'banana'.", "reply": "```aro\nCompute the from the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 4, "cat": "repl_oneliner", "prompt": "Write one ARO statement that converts the string 'hello' to uppercase.", "reply": "```aro\nCompute the from the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 5, "cat": "repl_oneliner", "prompt": "Write one line that hashes the password 'secret'.", "reply": "```aro\nHash the from the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 6, "cat": "repl_oneliner", "prompt": "Write a single ARO line that adds 7 and 5 and stores the result as .", "reply": "```aro\nAdd the from 7 + 5.\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 7, "cat": "repl_oneliner", "prompt": "Write one line that retrieves the git status.", "reply": "```aro\nRetrieve the from the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 8, "cat": "repl_oneliner", "prompt": "Write a single ARO line that logs the value of to the console.", "reply": "```aro\nLog to the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 9, "cat": "repl_oneliner", "prompt": "Write one ARO statement that reads the file 'config.yaml' from the filesystem.", "reply": "```aro\nRead the from the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 10, "cat": "repl_oneliner", "prompt": "Write a single line that emits a UserCreated event with .", "reply": "```aro\nEmit a with .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 11, "cat": "repl_block", "prompt": "Write a 3-statement ARO snippet that reads a file, uppercases it, and logs the result.", "reply": "```aro\nRead the from the .\nCompute the from the .\nLog to the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 12, "cat": "repl_block", "prompt": "Write a 4-statement snippet that fetches users from a repository, computes the count, and logs it.", "reply": "```aro\n(Fetch Users: User API) {\n Retrieve the from the .\n Compute the from the .\n Log to the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 13, "cat": "repl_block", "prompt": "Write an ARO snippet that stages all changes, commits with message 'wip', and pushes.", "reply": "```aro\n(Application-Start: Git Ops) {\n Stage the to the .\n Commit the to the with \"wip\".\n Push the to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 14, "cat": "repl_block", "prompt": "Write a 3-statement snippet that creates a list, computes its length, and logs the length.", "reply": "```aro\n(CreateUsers: User API) {\n Create the with [\n { name: \"Alice\", email: \"alice@example.com\" },\n { name: \"Bob\", email: \"bob@example.com\" },\n { name: \"Carol\", email: \"carol@example.com\" }\n ].\n Compute the from the .\n Log to the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 15, "cat": "repl_block", "prompt": "Write a snippet that extracts a name from an event, uppercases it, and stores it back in a variable.", "reply": "```aro\n(ExtractName: Example) {\n Extract the from the .\n Compute the from .\n Store the into the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 16, "cat": "repl_block", "prompt": "Write a 3-statement snippet that computes 3 + 4, multiplies by 2, and logs the result.", "reply": "```aro\n(Compute Total: Example) {\n Extract the from the .\n Compute the from .\n Log to the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 17, "cat": "repl_block", "prompt": "Write a snippet that reads two numbers and returns their sum.", "reply": "```aro\n(Application-Start: Sum Numbers) {\n Read the from the .\n Read the from the .\n Compute the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 18, "cat": "repl_block", "prompt": "Write a snippet that filters a list of users where age > 18 and counts them.", "reply": "```aro\n(Filter Users: User API) {\n Extract the from the .\n Filter the from the .\n Compute the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 19, "cat": "repl_block", "prompt": "Write a snippet that joins two lists and stores the result as .", "reply": "```aro\n(Join Lists: Example) {\n Create the with [1, 2, 3].\n Create the with [4, 5, 6].\n Combine the from with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 20, "cat": "repl_block", "prompt": "Write a snippet that parses a JSON string and extracts the 'name' field.", "reply": "```aro\n(ParseUser: Example) {\n Extract the from the .\n Extract the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 21, "cat": "user_action", "prompt": "Write an ARO user-defined action called DoubleValue that takes a number and returns it doubled.", "reply": "```aro\n(DoubleValue: Action takes ) {\n Extract the from the .\n Compute the from * 2.\n Return an with { doubled: }.\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 22, "cat": "user_action", "prompt": "Write a user-defined action 'Greet' that takes a name and returns a greeting string.", "reply": "```aro\n(Greet: Action) {\n Extract the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 23, "cat": "user_action", "prompt": "Write a user-defined action 'AddTwoNumbers' that takes two numbers and returns their sum.", "reply": "```aro\n(AddTwoNumbers: Action) {\n Extract the from the .\n Extract the from the .\n Compute the from + .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 24, "cat": "user_action", "prompt": "Write a user-defined action 'ValidateEmail' that takes an email string and returns OK or Error.", "reply": "```aro\n(ValidateEmail: Action) {\n Extract the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 25, "cat": "user_action", "prompt": "Write a user-defined action 'Square' that takes a number and returns its square.", "reply": "```aro\n(Square: Action) {\n Extract the from the .\n Compute the from * .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 26, "cat": "user_action", "prompt": "Write a user-defined action 'FormatDate' that takes a date and a format string.", "reply": "```aro\n(FormatDate: Action) {\n Extract the from the .\n Extract the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 27, "cat": "user_action", "prompt": "Write a user-defined action 'CountWords' that takes a string and returns the word count.", "reply": "```aro\n(CountWords: Action) {\n Extract the from the .\n Split the from the .\n Compute the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 28, "cat": "user_action", "prompt": "Write a user-defined action 'PickRandom' that takes a list and returns a random element.", "reply": "```aro\n(PickRandom: Action) {\n Extract the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 29, "cat": "user_action", "prompt": "Write a user-defined action 'Capitalize' that takes a string and uppercases its first letter.", "reply": "```aro\n(Capitalize: Action) {\n Extract the from the .\n Compute the from .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 30, "cat": "user_action", "prompt": "Write a user-defined action 'ComputeTax' that takes a price and a rate and returns the tax.", "reply": "```aro\n(ComputeTax: Action) {\n Extract the from the .\n Extract the from the .\n Compute the from * .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 31, "cat": "event_handler", "prompt": "Write an event handler for the UserCreated event that sends a welcome email.", "reply": "```aro\n(Send Email: UserCreated Handler) {\n Extract the from the .\n Send the to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 32, "cat": "event_handler", "prompt": "Write an event handler for OrderPlaced that decrements inventory.", "reply": "```aro\n(Send Email: OrderPlaced Handler) {\n Extract the from the .\n Retrieve the from the .\n For each in {\n Retrieve the from the .\n Update the for the .\n }\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 33, "cat": "event_handler", "prompt": "Write an event handler for PaymentFailed that logs the error and notifies the user.", "reply": "```aro\n(Send Email: PaymentFailed Handler) {\n Extract the from the .\n Log to the .\n Send the to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 34, "cat": "event_handler", "prompt": "Write an event handler for FileChanged that re-reads the configuration.", "reply": "```aro\n(Application-Start: Config Loader) {\n Log \"Starting Config Loader...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n\n(Application-End: Success) {\n Log \"Shutting down Config Loader...\" to the .\n Stop the with .\n Return an for the .\n}\n\n(Application-End: Error) {\n Extract the from the from the .\n Log to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 36, "cat": "event_handler", "prompt": "Write an event handler for GitPush that triggers a CI build.", "reply": "```aro\n(Application-Start: CI) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n\n(Application-End: Success) {\n Log \"Shutting down...\" to the .\n Stop the with .\n Return an for the .\n}\n\n(Application-End: Error) {\n Extract the from the .\n Log to the .", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 37, "cat": "event_handler", "prompt": "Write an event handler for SubscriptionExpired that downgrades the account.", "reply": "```aro\n(Notify Subscribers: SubscriptionExpired Handler) {\n Extract the from the .\n Send the to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 38, "cat": "event_handler", "prompt": "Write an event handler for ServerStarted that warms up the cache.", "reply": "```aro\n(Application-Start: Server) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 39, "cat": "event_handler", "prompt": "Write an event handler for MessageReceived that echoes the message back.", "reply": "```aro\n(Echo Message: MessageReceived Handler) {\n Extract the from the .\n Log to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 40, "cat": "event_handler", "prompt": "Write an event handler for ImageUploaded that generates a thumbnail.", "reply": "```aro\n(Send Thumbnail: ImageUploaded Handler) {\n Extract the from the .\n Create the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 41, "cat": "application", "prompt": "Write a complete ARO Application-Start that prints Hello and exits.", "reply": "```aro\n(Application-Start: Example) {\n Log \"Hello\" to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 42, "cat": "application", "prompt": "Write a complete Application-Start that starts an HTTP server on port 8080.", "reply": "```aro\n(Application-Start: Server) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 43, "cat": "application", "prompt": "Write a complete Application-Start that watches a directory for changes.", "reply": "```aro\n(Application-Start: Watcher) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 44, "cat": "application", "prompt": "Write a complete Application-Start and Application-End:Success that logs startup and shutdown.", "reply": "```aro\n(Application-Start: My App) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n\n(Application-End: Success) {\n Log \"Shutting down...\" to the .\n Stop the with .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 45, "cat": "application", "prompt": "Write a complete Application-Start that opens a TCP echo server on port 9000.", "reply": "```aro\n(Application-Start: Echo Server) {\n Log \"Starting Echo Server...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 46, "cat": "application", "prompt": "Write a complete Application-Start that starts a WebSocket server and keeps it alive.", "reply": "```aro\n(Application-Start: WebSocket Server) {\n Log \"Starting WebSocket server...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 47, "cat": "application", "prompt": "Write a complete Application-Start that connects to a database and runs a single query.", "reply": "```aro\n(Application-Start: Database App) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 48, "cat": "application", "prompt": "Write a complete Application-Start that reads command-line parameters and prints them.", "reply": "```aro\n(Application-Start: CLI App) {\n Extract the from the .\n Log to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 49, "cat": "application", "prompt": "Write a complete Application-Start that loads a configuration file and logs it.", "reply": "```aro\n(Application-Start: Config Loader) {\n Read the from the .\n Log to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 50, "cat": "application", "prompt": "Write a complete Application-Start that prints the current git branch.", "reply": "```aro\n(Application-Start: Example) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 51, "cat": "http_api", "prompt": "Write an ARO feature set for a listUsers operationId that returns all users from a repository.", "reply": "```aro\n(listUsers: User API) {\n Retrieve the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 52, "cat": "http_api", "prompt": "Write the openapi.yaml plus feature set for a POST /products endpoint.", "reply": "```aro\n(Application-Start: Product Service) {\n Log \"Starting Product Service...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n\n(createProduct: Product API) {\n Extract the from the .\n Create the with .\n Emit a with .\n Return a with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 53, "cat": "http_api", "prompt": "Write a feature set for getUserById that extracts the id from pathParameters.", "reply": "```aro\n(getUserById: User API) {\n Extract the from the .\n Retrieve the from the where =.\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 54, "cat": "http_api", "prompt": "Write a feature set for createOrder that validates the request body and emits OrderCreated.", "reply": "```aro\n(createOrder: Order API) {\n Extract the from the .\n Validate the for the .\n Emit a with .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 55, "cat": "http_api", "prompt": "Write a feature set for deleteSession that removes a session from the sessions-repository.", "reply": "```aro\n(deleteSession: Session API) {\n Extract the from the .\n Delete the from the where = .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 56, "cat": "http_api", "prompt": "Write a feature set for searchProducts that takes a query parameter and filters results.", "reply": "```aro\n(searchProducts: Product API) {\n Extract the from the .\n Retrieve the from the .\n Filter the from the where contains .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 57, "cat": "http_api", "prompt": "Write a feature set for updateProfile that patches a user record.", "reply": "```aro\n(updateProfile: User API) {\n Extract the from the .\n Extract the from the .\n Retrieve the from the where = .\n Patch the with .\n Store the into the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 58, "cat": "http_api", "prompt": "Write a feature set for healthCheck that returns OK.", "reply": "```aro\n(healthCheck: Health API) {\n Retrieve the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 59, "cat": "http_api", "prompt": "Write a feature set for uploadAvatar that accepts a file in the request body.", "reply": "```aro\n(uploadAvatar: Avatar API) {\n Extract the from the .\n Store the into the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 60, "cat": "http_api", "prompt": "Write a feature set for login that compares a hash and returns a session token.", "reply": "```aro\n(LoginUser: User API) {\n Extract the from the .\n Extract the from the .\n Extract the from the .\n Retrieve the from the where = .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 61, "cat": "repository", "prompt": "Write a repository observer for the users-repository that logs every change.", "reply": "```aro\n(Application-Start: User Observer) {\n Log \"Starting User Observer...\" to the .\n Start the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 62, "cat": "repository", "prompt": "Write a repository observer for orders-repository that emits OrderUpdated when records change.", "reply": "```aro\n(Application-Start: Order Observer) {\n Log \"Starting Order Observer...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 63, "cat": "repository", "prompt": "Write a feature set that stores a new product into the products-repository.", "reply": "```aro\n(StoreProduct: Product API) {\n Extract the from the .\n Store the into the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 64, "cat": "repository", "prompt": "Write a feature set that retrieves all sessions from the sessions-repository where active = true.", "reply": "```aro\n(GetSessions: Session API) {\n Retrieve the from the .\n Filter the from the where = true.\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 65, "cat": "repository", "prompt": "Write an observer that triggers when a user is deleted from the user-repository.", "reply": "```aro\n(Application-Start: User Observer) {\n Extract the from the .\n Extract the from the .\n For each in {\n Log to the .\n }\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 66, "cat": "repository", "prompt": "Write a feature set that updates a record in the inventory-repository.", "reply": "```aro\n(UpdateInventory: Inventory API) {\n Extract the from the .\n Retrieve the from the .\n Update the with .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 67, "cat": "repository", "prompt": "Write a state-guarded handler that triggers only on UserUpdated where role = admin.", "reply": "```aro\n(Application-End: Success) {\n Extract the from the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 68, "cat": "repository", "prompt": "Write a feature set that bulk-imports a list of users into the user-repository.", "reply": "```aro\n(Bulk Import Users: User API) {\n Extract the from the .\n Store the into the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 69, "cat": "repository", "prompt": "Write a feature set that publishes the count of orders as a global variable.", "reply": "```aro\n(Application-Start: Order API) {\n Retrieve the from the .\n Publish as .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 70, "cat": "repository", "prompt": "Write a repository observer that retries on failure.", "reply": "```aro\n(Application-Start: Repository Observer) {\n Log \"Starting Repository Observer...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 71, "cat": "refactor", "prompt": "Refactor this snippet to use the qualifier-as-name syntax: `Compute the from . Compute the from .`", "reply": "```aro\n(ComputeLength: Example) {\n Compute the from .\n Compute the from .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 72, "cat": "refactor", "prompt": "Fix this snippet so it parses: `Log Hello to console.`", "reply": "```aro\nLog the to the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 73, "cat": "refactor", "prompt": "Convert this English description to ARO: 'When a user signs up, send them a welcome email and store them in the users repository.'", "reply": "```aro\n(Application-Start: User Signup) {\n Extract the from the .\n Store the into the .\n Send the to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 74, "cat": "refactor", "prompt": "Convert this Python function to an ARO user-defined action: `def double(x): return x * 2`.", "reply": "```aro\n(DoubleValue: Action takes ) {\n Extract the from the .\n Compute the from * 2.\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 75, "cat": "refactor", "prompt": "Rewrite this ARO snippet to use lazy evaluation idioms: `Compute the from 1+1. Compute the from +1. Log to the .`", "reply": "```aro\n(Example: Lazy Evaluation) {\n Compute the from 1+1.\n Compute the from +1.\n Log to the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 76, "cat": "refactor", "prompt": "Split this monolithic feature set into one Application-Start and one event handler: `(Foo: My App) { Log \"start\" to . Emit a . Log \"after\" to . }`", "reply": "```aro\n(Application-Start: Foo) {\n Log \"start\" to the .\n Emit a .\n Log \"after\" to the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 77, "cat": "refactor", "prompt": "Add a When guard to this handler so it only runs for admin users: `(OnUserUpdated: UserUpdated Handler) { Log to the . Return an for . }`", "reply": "```aro\n(OnUserUpdated: UserUpdated Handler) {\n Extract the from the .\n Log to the .\n Return an for .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 78, "cat": "refactor", "prompt": "Replace direct repository writes with an emitted event in this feature set: `(saveUser: User API) { Store the in the . Return an . }`", "reply": "```aro\n(saveUser: User API) {\n Extract the from the .\n Create the with .\n Emit a with .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 79, "cat": "refactor", "prompt": "Convert this REPL one-liner into a proper feature set: `Log \"Hi\" to the .`", "reply": "```aro\n(Application-Start: Example) {\n Log \"Hi\" to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 80, "cat": "refactor", "prompt": "Refactor a duplicated three-line greeting flow into a single user-defined action called Greet.", "reply": "```aro\n(Application-Start: Greeting App) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 81, "cat": "explain", "prompt": "What does the Keepalive action do in ARO?", "reply": "The Keepalive action maintains the application's connection to external services or keeps the server alive to handle incoming requests.", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 82, "cat": "explain", "prompt": "Explain the difference between Application-Start and an event handler.", "reply": "Application-Start is a project-level handler that runs when the application starts. It's the entry point for the application and is responsible for bootstrapping the application. Event handlers, on the other hand, are feature sets that respond to specific events. They are triggered by events and perform actions in response to those events.", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 83, "cat": "explain", "prompt": "What is the difference between OWN and EXPORT action roles?", "reply": "OWN actions process data or perform operations on it. EXPORT actions send data or results out of the application.", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 84, "cat": "explain", "prompt": "How does ARO's error philosophy work? What is 'code is the error message'?", "reply": "```aro\n(Application-Start: Error Demo) {\n Log \"Starting...\" to the .\n Return an for the .\n}\n\n(Application-End: Error) {\n Extract the from the .\n Log to the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 85, "cat": "explain", "prompt": "Explain what the openapi.yaml file does in an ARO application.", "reply": "The openapi.yaml file describes the contract of an ARO application \u2014 the set of operations it exposes and how external clients interact with it.", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 86, "cat": "explain", "prompt": "What does Publish as do?", "reply": "The section says: \"Publish as .\" The Publish action makes the variable visible under the new name.", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 87, "cat": "explain", "prompt": "How are events routed to feature sets in ARO?", "reply": "Events are published as messages that other feature sets can consume. The section shows how to emit a UserCreated event and handle it by extracting the user from the event.", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 88, "cat": "explain", "prompt": "What is the role of the EventBus?", "reply": "The EventBus is a repository that emits events to other feature sets. It is the canonical way to publish events to other feature sets.", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 89, "cat": "explain", "prompt": "Explain repository observers and how they differ from event handlers.", "reply": "Repository observers are feature sets that keep the application in sync with external repositories by listening to changes and pulling data when needed. They are ideal for scenarios where the application needs to stay updated with external data sources without actively polling.", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 90, "cat": "explain", "prompt": "What does lazy execution mean in ARO and when is a future forced?", "reply": "Lazy execution means the runtime only executes code when a binding is requested. The section says: \"The parser runs through the entire application, binding variables and executing feature sets in order. Variables are immutable \u2014 use a new name for each transformation.\"", "empty_think": false, "has_code": false, "tool_leak": false, "url_contam": false }, { "idx": 91, "cat": "edge", "prompt": "Write an ARO snippet that intentionally fails so the runtime produces a 'Can not ...' message \u2014 explain what triggers that message.", "reply": "```aro\n(Application-Start: Example) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 92, "cat": "edge", "prompt": "Show me an example of using qualifier-as-name with two different `length` results in the same feature set.", "reply": "```aro\n(Feature Name: Business Activity) {\n Extract the from the .\n Compute the for the .\n Return an for a .\n Publish as .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 93, "cat": "edge", "prompt": "Write a feature set with both When guards and a Publish statement.", "reply": "```aro\n(Application-Start: Example) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 94, "cat": "edge", "prompt": "Write a Compute statement that uses a plugin qualifier called Collections.pick-random on a list.", "reply": "```aro\nCompute the from the .\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 95, "cat": "edge", "prompt": "Write a Git action that clones a repository from a URL into ./local-clone.", "reply": "```aro\n(Clone Repo: Git) {\n Clone the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 96, "cat": "edge", "prompt": "Write a feature set that uses a state-guard `where status = pending` on a custom event.", "reply": "```aro\n(Application-Start: Example) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 97, "cat": "edge", "prompt": "Show a Render action invocation that fills a Mustache-style template.", "reply": "```aro\n(Render the from the with .)\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 98, "cat": "edge", "prompt": "Write a complete .store file plus a feature set that reads from a seeded repository.", "reply": "```aro\n(Application-Start: Store Demo) {\n Log \"Starting Store Demo...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n\n(readUsers: User API) {\n Retrieve the from the .\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 99, "cat": "edge", "prompt": "Write an action that uses a list-range slice (e.g., elements 0..3).", "reply": "```aro\n(ListRange: Example) {\n Create the with 0..3.\n Return an with .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 100, "cat": "edge", "prompt": "Write an event handler that uses typed event extraction with a schema-validated payload.", "reply": "```aro\n(Application-Start: Event Handler Demo) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n\n(Application-End: Success) {\n Log \"Shutting down...\" to the .\n Stop the with .\n Return an for the .\n}\n\n(Application-End: Error) {\n Extract the from the .\n Log t", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 101, "cat": "application", "prompt": "Write a complete ARO application with a timer that fires every minute and logs a message on each tick.", "reply": "```aro\n(Application-Start: Timer App) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 102, "cat": "explain", "prompt": "How can I build a timer that fires every minute in ARO? Show the code.", "reply": "```aro\n(Application-Start: Timer Demo) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n```", "empty_think": false, "has_code": true, "tool_leak": false, "url_contam": false }, { "idx": 103, "cat": "meta_probe", "prompt": "How do I implement writable stores in ARO?", "reply": "```aro\n(Application-Start: Store Demo) {\n Log \"Starting...\" to the .\n Start the with .\n Keepalive the for the .\n Return an for the .\n}\n\n(Application-End: Success) {\n Log \"Shutting down...\" to the .\n Stop the with .\n Return an for the .\n}\n\n(Application-End: Error) {\n Extract the from the .\n Log to the