- 安装包 / Package: AstraCreate-2.14.pkg
- 文件大小 / File size: 2.0 MB (2,108,548 bytes)
- 系统版本 / System version: macOS 13 or later, Apple Silicon Mac
- 文档更新时间 / Document updated: 2026-06-07
AstraCreate for macOS(星域文件新建) 是一个 macOS Finder 右键菜单工具。安装后,可以在 Finder 文件夹空白处或选中文件后右键,直接新建常见文件、打开终端或 VS Code,并进行剪贴、粘贴和复制绝对路径等操作。
本项目由持有者为了在多系统之间保持同一种文件操作习惯而编写。欢迎在使用过程中指出 Bug,并请尽量附上 macOS 系统版本、设备类型、复现步骤和相关截图,方便定位问题。
- 安装包:AstraCreate-2.14.pkg
- 文件大小:2.0 MB (2,108,548 bytes)
- 适用系统:macOS 13 或更高版本,Apple Silicon Mac
- 文档更新时间:2026-06-07
- 新建 Word 文档
.docx - 新建 Excel 表格
.xlsx - 新建 PowerPoint 演示文稿
.pptx - 新建文本文件
.txt - 新建 Markdown 文件
.md - 在当前文件夹打开终端
- 在 VS Code 打开当前文件夹
- 剪贴选中的文件或文件夹
- 粘贴到当前文件夹
- 复制选中文件或当前文件夹的绝对路径
- 设置界面支持开启或关闭每个右键菜单功能
- 设置界面支持中文 / English 切换,右键菜单和新文件默认名称会跟随语言
- macOS 13 或更高版本
- Apple Silicon Mac
- Xcode Command Line Tools,用于从源码构建
- 可选:Visual Studio Code,用于“在 VS Code 打开当前文件夹”
下载并打开 AstraCreate-2.14.pkg。安装脚本会:
- 把
AstraCreate.app安装到/Applications - 注册 Finder Sync 扩展
- 启用扩展
- 重启 Finder
当前安装包为本地 ad-hoc 构建,未使用 Apple Developer ID 签名。首次安装时 macOS 可能会显示安全确认。
如果右键菜单没有出现,请打开:
系统设置 -> 隐私与安全性 -> 扩展 -> Finder 扩展
确认“新建常用文件”或 AstraCreate 对应扩展已启用。
在 Finder 中打开任意文件夹,在空白处右键即可看到菜单项。剪贴需要先选中文件或文件夹后右键点击“剪贴”,再到目标文件夹空白处右键点击“粘贴”。
双击 /Applications/AstraCreate.app 可以打开设置界面。勾选或取消对应功能、切换中文 / English 后,点击“应用并重启 Finder”即可刷新右键菜单。
首次在“桌面”“文稿”等受 macOS 隐私保护的位置操作时,系统可能会询问文件访问权限,请选择允许。
chmod +x scripts/build.sh scripts/package.sh packaging/scripts/postinstall
./scripts/build.sh构建后的 app 位于:
build/AstraCreate.app
./scripts/package.sh dist输出:
dist/AstraCreate-2.14.pkg
dist/AstraCreate-Finder-2.14-source.zip
src/Main.swift 设置界面主程序
src/Helper.swift 无窗口 helper,负责创建文件、打开应用、剪贴和粘贴
src/FinderSyncObjC.m Finder Sync 扩展,负责右键菜单和命令转发
Resources/SoftwareLogo.png 原始图标基准图
Resources/AppIcon.icns 标准 macOS 多尺寸 app 图标
Resources/blank.pptx PowerPoint 空白模板
scripts/build.sh 构建 app 和扩展
scripts/package.sh 生成安装包和源码压缩包
packaging/scripts/postinstall 安装后注册并启用 Finder 扩展
pluginkit -e ignore -i com.astracreate.finder.extension
rm -rf /Applications/AstraCreate.app
killall FinderAstraCreate for macOS is a Finder context menu utility for macOS. After installation, you can right-click a blank area in Finder or selected items to create common files, open Terminal or VS Code, cut and paste files, and copy absolute paths.
This project was created by the owner to keep the same file-operation habits across multiple operating systems. Bug reports are welcome. When reporting an issue, please include your macOS version, device type, reproduction steps, and screenshots when possible.
- Package: AstraCreate-2.14.pkg
- File size: 2.0 MB (2,108,548 bytes)
- System version: macOS 13 or later, Apple Silicon Mac
- Document updated: 2026-06-07
- Create Word documents
.docx - Create Excel workbooks
.xlsx - Create PowerPoint presentations
.pptx - Create text files
.txt - Create Markdown files
.md - Open Terminal in the current folder
- Open the current folder in VS Code
- Cut selected files or folders
- Paste into the current folder
- Copy absolute paths for selected items or the current folder
- Settings window for enabling or disabling each context menu feature
- Chinese / English language switch for the settings window, context menu, and default new-file names
- macOS 13 or later
- Apple Silicon Mac
- Xcode Command Line Tools for building from source
- Optional: Visual Studio Code for the VS Code menu item
Download and open AstraCreate-2.14.pkg. The installer will:
- Install
AstraCreate.appinto/Applications - Register the Finder Sync extension
- Enable the extension
- Restart Finder
This package is locally built with ad-hoc signing and is not signed with an Apple Developer ID. macOS may show a security confirmation on first install.
If the menu does not appear, open:
System Settings -> Privacy & Security -> Extensions -> Finder Extensions
Then make sure the AstraCreate Finder extension is enabled.
Open any folder in Finder and right-click on a blank area to see the menu items. For cut/paste, first select files or folders and choose “剪贴”, then right-click in the destination folder and choose “粘贴”.
Open /Applications/AstraCreate.app to show the settings window. Toggle the desired features or switch between Chinese and English, then click “Apply and Restart Finder” to refresh Finder.
When operating in privacy-protected locations such as Desktop or Documents for the first time, macOS may ask for file access permission. Allow it if prompted.
chmod +x scripts/build.sh scripts/package.sh packaging/scripts/postinstall
./scripts/build.shThe built app will be available at:
build/AstraCreate.app
./scripts/package.sh distOutputs:
dist/AstraCreate-2.14.pkg
dist/AstraCreate-Finder-2.14-source.zip
src/Main.swift Settings UI host app
src/Helper.swift Windowless helper: file creation, app launching, cut and paste
src/FinderSyncObjC.m Finder Sync extension: context menu and command forwarding
Resources/SoftwareLogo.png Original icon reference image
Resources/AppIcon.icns Standard multi-size macOS app icon
Resources/blank.pptx Blank PowerPoint template
scripts/build.sh Builds the app and extension
scripts/package.sh Creates installer and source archive
packaging/scripts/postinstall Registers and enables the Finder extension after install
pluginkit -e ignore -i com.astracreate.finder.extension
rm -rf /Applications/AstraCreate.app
killall Finder