npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@creator-studio-os/logic

v2.0.1

Published

Logic Pro tools for Creator Studio OS — lifecycle management and .logicx project open handoff

Readme

@creator-studio-os/logic

Logic Pro 工具,用于 Creator Studio OS,提供生命周期管理和 .logicx 项目文件的打开功能。

它是 Apple Creator Studio 应用的 MCP 控制平面的一部分,详见 Creator Studio OS


安装

npm install @creator-studio-os/logic

需要 Logic Pro (Creator Studio) 和 macOS 13 或更高版本。

此软件包的功能

Logic Pro 没有提供 AppleScript 接口,因此没有 sdef 字典。 @creator-studio-os/logic 实现了以下功能:启动 Logic,检查其是否正在运行,以及通过 open -b com.apple.logic10 打开 .logicx 项目文件。 在 Logic 的图形界面中,用户可以进行进一步的自动化操作。

工具 (3)

| 工具 | 描述 | |------|-------------| | logic_app_open | 启动 Logic Pro(如果已运行,则不执行任何操作) | | logic_app_running | 检查 Logic Pro 是否正在运行 | | logic_open | 打开一个 .logicx 项目文件,Logic 将启动并打开该文件 |

示例

import { registerLogicTools } from "@creator-studio-os/logic";
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";

const server = new McpServer({ name: "csos", version: "2.0.0" });
registerLogicTools(server);

打开一个 Logic 项目:

// Tool: logic_open
{ "path": "/projects/csos-showcase/audio/session.logicx" }

恢复配置

import { recovery } from "@creator-studio-os/logic";
// recovery.app === "logic"
// recovery.badStatePattern === null  (no bad-state detection for Logic)

macOS 需求

@creator-studio-os/logic 仅适用于 macOS ("os": ["darwin"])。 需要 Logic Pro,它包含在 Apple Creator Studio 订阅中。


主 README · 更新日志 · 安全信息