Loop Genie workspace
Loop Genie provides a unified workspace for interacting with AI-assisted DevOps Loop capabilities. The workspace enables you to submit requests, run predefined tasks, review tool activity, and access previous conversations.
When you click Loop Genie
icon in the loop card, the Loop Genie workspace is
displayed with following options:
Chat
You can use the Chat tab to interact with Loop Genie. The Chat tab provides following:
- Text and voice input
- Streaming responses
- Tool execution visibility
- Context usage monitoring
- Conversation downloads
- New conversation creation
During execution, Loop Genie displays tool activity inline so that you can review the actions performed and the results returned by each tool.
Tasks
You can use the Tasks tab to access predefined and custom tasks.
Tasks provide reusable workflows that combine prompts, instructions, and tool access to automate common DevOps activities. Tasks can be categorized and marked as favorites for easier access.
History
Navigate the History tab to review previous interactions.
History is filtered by the selected loop and current user. You can revisit previous conversations, review results, rerun requests, and download conversations for future reference.
MCP Connections
You can view available MCP servers to Loop genie and enable or disable added MCP servers directly from the MCP Connections tab.
Monitoring Execution
The workspace displays context usage information during execution. This indicator helps you understand how much context is currently being used by the conversation.
When context usage approaches configured limits, Loop Genie can automatically compress conversation history to continue processing requests.
Stopping execution
If a request is taking longer than expected or is not producing the desired results, click Stop to interrupt the current execution.
Sample multi-step workflow execution in Loop Genie
Scenario: You want to create a new work item in DevOps Loop, assign it to a user, and then fetch its status all in a single request.
Prompt to Loop Genie:
Create a new story in the
Payment APIproject titled ‘Implement new refund feature’, assign it toalice@example.com, and then get the status of the newly created work item.”
How Loop Genie handles the execution:
-
Step 1 – Create Work Item
-
Calls
plan_create_work_itemwith project name, title, and optional fields. -
Returns the new work item ID.
-
-
Step 2 – Assign User
-
Calls
plan_update_work_item(or equivalent MCP command) to assign the work item toabc@example.com.
-
-
Step 3 – Retrieve Status
-
Calls
analytics_get_work_item_statuswith the work item ID to fetch the current status.
-
Output returned by Loop Genie:
| Field | Value |
|---|---|
| Work Item ID | 12345 |
| Title | Implement a new refund feature |
| Assigned To | abc |
| Status | Open |