I don't know if this is Windows only, or for all platforms.
droid cli executable will not see file at "%USERPROFILE%.factory\AGENTS.md"
if it's a symlink.
How to reproduce
from an Administrator cmd prompt, try:
mklink "%USERPROFILE%.factory\AGENTS.md" "C:\Sample\AGENTS.md"
This assume C:\Sample\AGENTS.md exists.
Then run droid cli and you will see that it cannot see the AGENTS.md file.
Now delete the link:
del /F /Q "%USERPROFILE%.factory\AGENTS.md"
And copy it to that location:
copy "C:\Sample\AGENTS.md" "%USERPROFILE%.factory\AGENTS.md"
now when you run droid, it will work.
I don't know if this is Windows only, or for all platforms.
droid cli executable will not see file at "%USERPROFILE%.factory\AGENTS.md"
if it's a symlink.
How to reproduce
from an Administrator cmd prompt, try:
mklink "%USERPROFILE%.factory\AGENTS.md" "C:\Sample\AGENTS.md"
This assume C:\Sample\AGENTS.md exists.
Then run droid cli and you will see that it cannot see the AGENTS.md file.
Now delete the link:
del /F /Q "%USERPROFILE%.factory\AGENTS.md"
And copy it to that location:
copy "C:\Sample\AGENTS.md" "%USERPROFILE%.factory\AGENTS.md"
now when you run droid, it will work.