-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Description
Not sure if this is a bug or intentional, but I noticed that the web bundle agents seem to be missing the last activation instruction:
- CRITICAL: On activation, ONLY greet user, auto-run `*help`, and then HALT to await user requested assistance or given commands. ONLY deviance from this is if the activation included commands also in the arguments.
I tracked it down to how those instructions are filtered based on the following condition during parsing in web-builder.js
typeof instruction === 'string' &&
!instruction.startsWith('IDE-FILE-RESOLUTION:') &&
!instruction.startsWith('REQUEST-RESOLUTION:')
since there's a :
after CRITICAL for this instructions, it's not a plain string and gets the boot.
That instruction is kinda key to start to use of any agent along with it's *help
output. I was sharing a customGPT for the analyst with some business minded coworkers and not having them come up right away really leaves things too open ended from the get go.
I wondered if the CRITICAL
part was just meant to impart the importance of the instruction and the :
was added automatically by the auto complete cause the all caps fit the pattern of the other such instructions. 🤔
i'm open to creating a small PR if it is deemed to be a bug.