Agent Skills: neutralino-js-config

Configure Neutralino.js for lightweight desktop applications

UncategorizedID: a5c-ai/babysitter/neutralino-js-config

Install this agent skill to your local

pnpm dlx add-skill https://github.com/a5c-ai/babysitter/tree/HEAD/plugins/babysitter/skills/babysit/process/specializations/desktop-development/skills/neutralino-js-config

Skill Files

Browse the full folder contents for neutralino-js-config.

Download Skill

Loading file tree…

plugins/babysitter/skills/babysit/process/specializations/desktop-development/skills/neutralino-js-config/SKILL.md

Skill Metadata

Name
neutralino-js-config
Description
Configure Neutralino.js for lightweight desktop applications

neutralino-js-config

Configure Neutralino.js for lightweight desktop applications. Neutralino offers smaller binary sizes than Electron by using the OS's built-in webview.

Capabilities

  • Initialize Neutralino project
  • Configure neutralino.config.json
  • Set up native API access
  • Configure window modes
  • Set up extensions
  • Configure build targets
  • Set up app icons and metadata

Input Schema

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "appName": { "type": "string" },
    "windowMode": { "enum": ["window", "browser", "cloud", "chrome"] }
  },
  "required": ["projectPath", "appName"]
}

neutralino.config.json

{
  "applicationId": "com.mycompany.myapp",
  "version": "1.0.0",
  "defaultMode": "window",
  "port": 0,
  "documentRoot": "/resources/",
  "url": "/",
  "enableServer": true,
  "enableNativeAPI": true,
  "modes": {
    "window": {
      "title": "My App",
      "width": 800,
      "height": 600,
      "minWidth": 400,
      "minHeight": 300
    }
  }
}

Related Skills

  • tauri-project-setup
  • electron-builder-config