Skip to main content

Agent mode (Explyt Agent)

The agent can perform an arbitrary task upon request in the chat.

For example, the video above shows how the agent solves the following task: send the user an email with the message "Password reset successfully!" after the user changes the password. The agent reads the existing code, templates, and tests and adds the required functionality:

  1. the agent adds new code to services
  2. the agent adds a template for the email that will be sent to the user
  3. the agent adds the necessary strings to the resource files
  4. the agent adds an integration test for the new functionality

The agent writes a new service from scratch according to the specification

The application allows students to view educational video courses. The video shows how the agent creates a new service according to the specification, allowing the student to manage bookmarked pages, for example, add a course to bookmarks and view a list of bookmarks. Agent adds:

  • required DTOs for bookmarks
  • service for managing bookmarks and its implementation
  • repository for managing bookmarks
  • controller for managing bookmarks

Agent adds comments to code

Agent reads repository code and adds docstring comment to each method of required service

Agent writes documentation for code

Agent reads repository code and adds documentation for required service:

  • its key responsibilities
  • description of main methods
  • how data validation and error management are performed
  • how interaction with the database is performed
  • how caching occurs
  • what are the regularly scheduled tasks
  • how logging is arranged
  • what is the service's responsibility in terms of security
  • what dependencies does the service have

Explyt Agent can independently:

  • use tools for editing code
  • use tools for researching the project
  • execute commands in the terminal
  • analyze the project for compilation errors

The agent sees and can modify all files in this project, in particular: code, tests, templates, resources, documentation, build configurations. The agent can add new files of any type if necessary.

User:

  • checks the changes made by the agent, can accept or cancel any of them
  • can allow or prohibit the agent from using some tools, for example, calling console commands

Preview Notice:

⚠️ Note: Explyt Agent is currently in preview state (EAP). Some features may not work as expected.