> ## Documentation Index
> Fetch the complete documentation index at: https://docs.valiqor.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CrewAI

> CrewAI integration for Valiqor tracing — coming soon.

<Info>
  CrewAI auto-instrumentation is on the roadmap and not yet available.
  Check back for updates.
</Info>

In the meantime, you can trace CrewAI workflows manually using
`trace_workflow` and `trace_function` decorators:

```python theme={"system"}
from valiqor.trace import trace_workflow, trace_function
from crewai import Agent, Task, Crew

researcher = Agent(
    role="Researcher",
    goal="Find accurate information",
    backstory="Expert researcher"
)

@trace_function("crew-kickoff")
def run_crew(topic):
    task = Task(
        description=f"Research {topic}",
        agent=researcher,
        expected_output="A summary"
    )
    crew = Crew(agents=[researcher], tasks=[task])
    return crew.kickoff()

with trace_workflow("crewai-research"):
    result = run_crew("AI safety")
    print(result)
```

See the [Tracing Guide](/workflows/tracing) for more on manual
instrumentation.
