{% extends "base.html" %} {% block title %}Plan - {{ plan.name }} - Agent Generator{% endblock %} {% block content %}
1
Describe
2
Plan
3
Configure
4
Generate

Project Plan

{% if llm_enhanced %} LLM Enhanced {% else %} Keyword Planned {% endif %}

Review and edit your project plan before configuring generation options.

{{ plan.name }}
{{ frameworks.get(plan.framework, plan.framework) }}

{{ plan.description }}

Agents ({{ plan.agents | length }})

{% for agent in plan.agents %}
{{ agent.id[:2] | upper }}
{{ agent.role }}
{{ agent.id }}

{{ agent.goal }}

{% if agent.tools %}
{% for tool in agent.tools %} {{ tool }} {% endfor %}
{% endif %}
{% endfor %}

Tasks ({{ plan.tasks | length }})

{% for task in plan.tasks %}
{{ loop.index }}
{{ task.description }}
Agent: {{ task.agent_id }} {% if task.depends_on %} Depends on: {{ task.depends_on | join(', ') }} {% endif %}
{% endfor %}
{% if plan.tools %}

Tools ({{ plan.tools | length }})

{% for tool in plan.tools %} {{ tool.id }} {% endfor %}
{% endif %}

Refine Plan

Back to Start
{% endblock %}