XF 2.3 XenForo Skills / LLM helpers?

tyteen4a03

Well-known member
Licensed customer
Are there any resources available that adds skills related to XenForo, or otherwise help coding agents understand XenForo?

Currently when I try to ask it a question it tries to parse the entire templates.xml which of course is too large for it to digest.
 
If you're working with XenForo, first tip would be that you should enable development mode, add the following to config.php and run php cmd.php xf-dev:export --addon XF:

PHP:
$config['development']['skipAddOns'] = [];

This allows the XF development output to be generated which will include individual files for templates and phrases.

If you're working with an add-on then it's similar but you don't need the skipAddOns thing, just export the development data for that add-on (this has to be done after the add-on is installed and up to date).

As for skills, stay tuned for XF 2.3.10 ;)
 
Back
Top Bottom