agentsclimarketplace

Neutralino js config

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/neutralino-js-config

Configure Neutralino.js for lightweight desktop applicationsFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill neutralino-js-config

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.6 KB, 313 tokens by cl100k_base, as published. Nobody here has run it

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

What ships with it: 1 file

438 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.