Generate NSMenu and NSStatusItem configurations for macOS menu bar applications
Generates macOS menu bar app configurations with NSMenu and NSStatusItem for AppKit and SwiftUI integration.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdGenerate NSMenu and NSStatusItem configurations for macOS menu bar applications. This skill creates menu bar apps with proper status items, menus, and SwiftUI integration.
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"appType": { "enum": ["menu-only", "popover", "window-and-menu"] },
"menuStructure": { "type": "array" },
"iconType": { "enum": ["system", "custom", "dynamic"] },
"useSwiftUI": { "type": "boolean", "default": true }
},
"required": ["projectPath"]
}
import AppKit
import SwiftUI
class StatusBarController {
private var statusItem: NSStatusItem
private var popover: NSPopover
init() {
statusItem = NSStatusBar.system.statusItem(withLength: NSStatusItem.variableLength)
popover = NSPopover()
popover.contentSize = NSSize(width: 300, height: 400)
popover.behavior = .transient
popover.contentViewController = NSHostingController(rootView: ContentView())
if let button = statusItem.button {
button.image = NSImage(systemSymbolName: "star.fill", accessibilityDescription: "App")
button.action = #selector(togglePopover)
button.target = self
}
}
@objc func togglePopover() {
if popover.isShown {
popover.performClose(nil)
} else if let button = statusItem.button {
popover.show(relativeTo: button.bounds, of: button, preferredEdge: .minY)
}
}
}
swiftui-view-generatormacos-entitlements-generatorActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.