File size: 1,463 Bytes
9c60c5f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#tasks.yaml
document_analysis:
  description: >
    Analyze the document and extract the exact information from it. {file_path} is the path of the document.
    {file_type} is the type of the document.
  expected_output: >
    The document is analyzed and the exact information is extracted from it.
    Return in Markdown format. Include all the details and information from the document. Do not miss any details.
  agent: document_analyst




code_implementation:
  description: >
    Turn design specifications into working web code using HTML, CSS, and JavaScript. 
    Do not miss any details from the design and complete all the said pages.
    Use inline styles directly in HTML elements rather than separate stylesheets.
    Write vanilla JavaScript without frameworks unless absolutely necessary.
    Match all measurements, colors, positions, and text exactly as specified in the design.
  expected_output: >
    Clean HTML with inline CSS that perfectly matches the design specifications.
    The code should work as a standalone file without external dependencies.
    DO NOT,I REPEAT DO NOT include any comments ,thoughts or explanations - only write working code.
    Example:
      <!-- Header implementation with positioned styling -->
      <div style="position: absolute; top: 20px; left: 10px; width: 100px; height: 50px; background: #f0f0f0;">
        <h1 style="margin: 0; font-size: 1.2rem;">Header</h1>
      </div>
  agent: developer_agent