Agent skills
Apart from the VSCode interface, jxscout also has a CLI to retrieve results from it. To retrieve the list of commands for jxscout, you can run:
$ jxscout-pro-v2 -c --help
Agents like Claude Code and Cursor are great at using CLIs so jxscout will automatically create a skills folder inside each project to help your agent leverage jxscout for analyzing your target.
You can configure the creation of the skills folder by updating ~/.jxscout-pro/global_settings.jsonc.
{
"hooks": {
// You can configure a hook during project creation to copy stuff like workflows or agent instructions for your projects
"project_created": "cp /Users/francisconeves/.jxscout-pro/CLAUDE.md $JXSCOUT_PROJECT_DIR"
},
"agent_skills": {
"enabled": true, // disable the automatic creation of the skills folder
"agents_folder_name": ".agents" // the name of the agents folder where jxscout skills will be populated
}
}