mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-30 23:02:50 +00:00
Copy all CLI source modules from lib/crewai/src/crewai/cli/ to the new lib/cli/src/crewai_cli/ package, updating internal imports from crewai.cli.* to crewai_cli.* throughout. Includes: authentication, deploy, enterprise, organization, settings, tools, triggers, templates, and all top-level CLI command modules. Also excludes lib/cli/ from pre-commit mypy checks to match existing behavior (original CLI code has the same type gaps).
18 lines
692 B
YAML
18 lines
692 B
YAML
research_task:
|
|
description: >
|
|
Conduct a thorough research about {topic}
|
|
Make sure you find any interesting and relevant information given
|
|
the current year is {current_year}.
|
|
expected_output: >
|
|
A list with 10 bullet points of the most relevant information about {topic}
|
|
agent: researcher
|
|
|
|
reporting_task:
|
|
description: >
|
|
Review the context you got and expand each topic into a full section for a report.
|
|
Make sure the report is detailed and contains any and all relevant information.
|
|
expected_output: >
|
|
A fully fledged report with the main topics, each with a full section of information.
|
|
Formatted as markdown without '```'
|
|
agent: reporting_analyst
|