Skip to main content
Question

Questions on Agent Studio Capabilities

  • March 5, 2026
  • 2 replies
  • 23 views

We want to start building a use case to let users view the required skills for their requested job profile. We have a couple of questions to assess the feasibility for a client. Here are the requirements for reference:
 

Enable employees to do the below via the bot:

  1. View required skills for their job profile and 

  1. View their most recent skills assessment (self + manager) 

  1. View their entire history of skills assessment 

  1. View required skills for any given job profile 

  1. Show a delta of skills and skill levels between any two job profiles for example, show me the Skills required and the expected skill level for Level 7 Design Release Engineer vs Level 6 Design Release Engineer or between my job profile and Level 7 Designer 

  1. Manager can ask and view skills for any employee in their entire org 

 

Questions for MW Team:

  1. Can the bot respond to show the top 10 results with pagination? We want to show the top 10 and have additional skills in pages so that the user clicks on page 2,3,4 and it moves.
  2. Can the bot provide a "Download CSV", which downloads the results in a CSV? (Not a download link, but a straight-up download file)
  3. Can the bot render a response in a tabular view?
  4. Can the bot email results to the employee?
  5. Can the bot offer a function like: ‘copy to clipboard’?

    If the answer to any of these questions is a yes, please include how we should go about implementing this and what the architecture would look like.
     

2 replies

Kevin Mok
Forum|alt.badge.img+1
  • Community Manager
  • March 5, 2026

Hey ​@suyog - great questions.

To answer a few

  1. Pagination isn’t something we support, an agentic conversation shouldn’t constrain users to a catalog and make them feel like they’re browsing in a form at that point it would be better to just redirect the user to an actual catalog or site that shows the skills. The assistant should provide the top skills and if they ask to see more the Assistant would be able to provide that. You can return the information in your output mapper with a system_instruction that tells the AI to nudge the user if they want to see more.
  2. It is not possible to download a CSV as you are proposing. There are several constraints here. Where does the CSV live? Are their permission constraints? Regardless, the assistant today cannot download files and/or provide a download button to the user.
  3. The simple answer is not today. Depending on the chat platform that the user is talking to the assistant from, such as Teams, Slack, or the Web UI. Those platforms have different ways to render tables, and we don't have a framework that would cover all the cases. 
  4. You could email. You would need to have an API that allows you to do that, the Google API or the Outlook API if it allows you. That really depends on your service that you're using and the APIs that it provides. You could build an HTTP action that sends the resource to the user through their email. 
  5. The system does not offer a copied click board option today. That is really dependent on the chat platform as well. 

Overall, the ability to allow the system to provide required skills for the job profile and the rest of the requirements that your plugin has. They should be able to be done as long as you have the APIs that allow you to retrieve that information for the user. You can use Agent Studio plugins with HTTP actions and build them together in conversational processes that allow you to provide the best result for your users. 

I highly recommend using the Agent Architect to help you build the plug-in to get you started. If you do have issues or are stuck in a certain part of your plug-in, I'm here to help you! 


  • Author
  • New Participant
  • March 5, 2026

Hi ​@Kevin Mok Thanks for taking the time to give me a detailed response to my questions. This will help us plan the plugin in advance.