yes. i did create skill that was able to create .xml scripts working in BAS. i will not share it, sinse it is not finished and it needs more testing and fixing and I don't have time for it. With few hours/days you can do it with claude code you can start with skill.md from this post and work on adding all knowlege about BAS conventions and different actions and their interface incoding to be showable in bas and create claude code skill for it.
https://community.bablosoft.com/topic/32063/skill-для-написания-проектов-через-claude-code?_=1783629618785
Clear Browser history without deleting the fingerprint/proxies etc.
-
Hello everyone,
I have been using BAS profiles and I have unique fingerprints for every profile. I have many profiles but now I am having problem because the storage space taken by each profile is increasing with every browsed website. Is there any solution where I can clear only the cookies, history etc without clearing the Proxy/Fingerprint and profile data?
I have tried Browser Reset but it clears everything including the fingerprint which I don't want.
Any solution for this?
-
@hippyzipp9 it is possible to delete data in folders as shown in the screenshot with marks 1 and 2.
The BAS developers do not guarantee that this will not cause problems with the profile.

-
Hello @tet-vivi thanks for the reply, how do I delete cache from many profiles at a time?
I tried using Remove folder with
Profiles/*/Cache/*But nothing happens, I have to mention every profile name and then delete it. For some reason * is not working.
-
@hippyzipp9 something like that?
{{dir_profile}} - something like 'c:/n/dir_profile'

-
@super84 You clear it with the help of loop? or at once?
-
@hippyzipp9
for /D %I in ("[[DIR_FULL_PATH]]\*") do @del /S /F /Q "%~I\Cache\" -
@hippyzipp9 Loops through the Profiles and Cleans both the Cache and Code Cache Folders.
-
@tet-vivi
Used your code like this:for /D %I in ("C:/BAS/Profiles/*") do @del /S /F /Q "%~I/Cache/"Gives me this error:
PROCESS_ERROR_OUTPUT: "The following usage of the path operator in batch-parameter substitution is invalid: %~I/Cache/*" For valid formats type CALL /? or FOR /? The syntax of the command is incorrect. " -
@super84 Can you share the script?
-
For BAS we need to use %% I guess, after trying all the things, this code worked.
for /D %%I in ("C:\BAS\Profiles\*") do @del /S /F /Q "%%I\Cache\*.*"Thank you for helping @tet-vivi @super84


