Configure Neutralino.js for lightweight desktop applications
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill neutralino-js-config --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Neutralino Js Config?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-neutralino-js-config-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: neutralino-js-config
description: Configure Neutralino.js for lightweight desktop applications
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
tags: [neutralino, javascript, cross-platform, lightweight, desktop]
graph:
domains: [domain:software-engineering]
specializations: [specialization:desktop-development]
skillAreas: [skill-area:desktop-ui-frameworks, skill-area:cross-platform-desktop]
roles: [role:desktop-developer, role:fullstack-engineer]
workflows: [workflow:feature-development, workflow:release-management]
---
# 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
```json
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"appName": { "type": "string" },
"windowMode": { "enum": ["window", "browser", "cloud", "chrome"] }
},
"required": ["projectPath", "appName"]
}
```
## neutralino.config.json
```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`
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!