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

# Cross-task context

> Reference past Rocket.new tasks with @-mentions to carry findings and decisions into your current work.

export const LlmsDirective = () => <blockquote className="llms-directive">
    For the complete documentation index, see <a href="/llms.txt">llms.txt</a>.
    For a lightweight markdown version of this page, append .md to the URL.
  </blockquote>;

<LlmsDirective />

By default, each task is isolated. It has no knowledge of what was discussed in a separate task, even within the same project. Cross-task context removes that limitation.

Type `@` in the message input to reference a previous task. Rocket retrieves the conversation, findings, and conclusions from that task and uses them in the current one. You build on past work instead of re-explaining it.

This works in both **Solve** and **Build** tasks.

## How to use @-mentions

<Steps>
  <Step title="Open a task">
    Navigate to an existing task or start a new one.
  </Step>

  <Step title="Type @ and select Task">
    Type `@` **(1)** in the chat input. A menu appears showing **Files & Folders** and **Task**. Select **Task (2)** to browse your previous tasks.

    <Frame caption="Type @ to open the context menu, then select Task">
      <img src="https://mintcdn.com/dhiwisepvtltd-5e04e6a4/DBJMXb_BEYh5GrMJ/images/getting-started/task/task-context/at-mention-menu-light.webp?fit=max&auto=format&n=DBJMXb_BEYh5GrMJ&q=85&s=72e03733da877f6d1034f6ced8319ce0" alt="Chat input with @ typed and context menu showing Files & Folders and Task options." className="theme-image light-image" width="2880" height="1624" data-path="images/getting-started/task/task-context/at-mention-menu-light.webp" />

      <img src="https://mintcdn.com/dhiwisepvtltd-5e04e6a4/DBJMXb_BEYh5GrMJ/images/getting-started/task/task-context/at-mention-menu-dark.webp?fit=max&auto=format&n=DBJMXb_BEYh5GrMJ&q=85&s=09018d4c80cdf1e28ab99cb12af5b589" alt="Chat input with @ typed and context menu showing Files & Folders and Task options." className="theme-image dark-image" width="2880" height="1624" data-path="images/getting-started/task/task-context/at-mention-menu-dark.webp" />
    </Frame>
  </Step>

  <Step title="Select a previous task">
    A list of your tasks appears. Click the task you want to reference.

    <Frame caption="Select the task you want to reference from the list">
      <img src="https://mintcdn.com/dhiwisepvtltd-5e04e6a4/DBJMXb_BEYh5GrMJ/images/getting-started/task/task-context/at-mention-select-task-light.webp?fit=max&auto=format&n=DBJMXb_BEYh5GrMJ&q=85&s=4c4f3be8ec194e07e65d255345394e41" alt="Task list dropdown with a task highlighted for selection." className="theme-image light-image" width="2880" height="1624" data-path="images/getting-started/task/task-context/at-mention-select-task-light.webp" />

      <img src="https://mintcdn.com/dhiwisepvtltd-5e04e6a4/DBJMXb_BEYh5GrMJ/images/getting-started/task/task-context/at-mention-select-task-dark.webp?fit=max&auto=format&n=DBJMXb_BEYh5GrMJ&q=85&s=be34c1b86ad21f28800e5f978a637c87" alt="Task list dropdown with a task highlighted for selection." className="theme-image dark-image" width="2880" height="1624" data-path="images/getting-started/task/task-context/at-mention-select-task-dark.webp" />
    </Frame>
  </Step>

  <Step title="Write your message and send">
    Add your question or instructions alongside the @-mention. Being specific about what you want from the referenced task gets better results:

    > *"@Q3 competitor analysis - how has the competitive landscape shifted since that report?"*

    > *"@Landing page build - apply the same visual style to this new pricing page."*
  </Step>
</Steps>

## What gets carried over

Rocket pulls the relevant context from the referenced task based on your message. For Solve tasks, it brings over the findings and conclusions from the report. Exported formats like PDF, HTML, and PPT are not included, only the underlying content.

## Scope

Tasks you can reference depend on where your current task lives:

| Current task     | Can reference                          |
| :--------------- | :------------------------------------- |
| Inside a project | Any other task inside the same project |
| Standalone task  | Any other standalone task              |

<Note>
  Cross-task context is scoped to the project. You cannot @-mention a task from a different project or reference a standalone task from inside a project.
</Note>

## What's next?

<CardGroup cols={2}>
  <Card title="Attachments" icon="paperclip" href="/getting-started/task/attachments">
    Attach files or paste URLs to give a task additional source material.
  </Card>

  <Card title="Project context" icon="folder" href="/getting-started/project/context/overview">
    Add files and connected services that persist across all tasks in a project.
  </Card>

  <Card title="Manage tasks" icon="list-check" href="/getting-started/task/manage">
    Rename, delete, and organize your tasks.
  </Card>
</CardGroup>
