What's different between #Files and @Files

what’s different between #Files and @Files?
Thanks.

1 Like

from what I understand from the @-symbols doc, @file is to design explicitely a file to the agent and attach the file as context, while #file just attach the file as context.
I think # is an extra-context help you can provide to the agent.
E.g, maybe, if you want Cursor to fix an exception raising in a test file, maybe you can tell : fix the error in @test_module.py, and also provides module.py as extra-context with a #, to help cursor what test_module.py is really about, even if maybe doesn’t precisely need it to fix the problem arising the test_module.py.