소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 23일 22:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill creating-tauri-project명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | creating-tauri-project |
| description | > Use when this capability is needed. |
Generates a complete my-tauri-app/ scaffold with:
Before generating anything, ask the user for:
my-tauri-app)If the user has already provided these details, skip asking and proceed directly.
For each enabled platform, the sidecar binary must be named with its Rust target triple suffix.
Read references/target-triples.md for the full mapping.
Common triples:
| Platform | Triple |
|---|---|
| Windows x64 | x86_64-pc-windows-msvc |
| macOS ARM | aarch64-apple-darwin |
| macOS x64 | x86_64-apple-darwin |
| Linux x64 | x86_64-unknown-linux-gnu |
Binary names follow: <backend-name>-<triple>[.exe on Windows]
Create ALL files listed below. Use the templates in references/ for file contents.
<project-name>/
├── frontend/
│ ├── src/
│ │ ├── main.<ext> # Entry point (tsx/svelte/vue/jsx)
│ │ └── App.<ext>
│ ├── index.html
│ ├── vite.config.<ext>
│ ├── tsconfig.json # if TypeScript
│ └── package.json
├── backend/
│ ├── src/ # Python: main.py here; .NET: Program.cs; Go: main.go
│ ├── requirements.txt # Python only
│ ├── <name>.csproj # .NET only
│ ├── go.mod # Go only
│ └── tests/
├── src-tauri/
│ ├── binaries/ # gitignored — holds built sidecar executables
│ │ └── .gitkeep
│ ├── capabilities/
│ │ └── default.json
│ ├── icons/ # placeholder icons note
│ ├── src/
│ │ └── main.rs
│ ├── tauri.conf.json
│ ├── Cargo.toml
│ └── build.rs
├── .github/
│ └── workflows/
│ └── release.yml
├── .gitignore
├── package.json # root — scripts for dev/build + sidecar
├── pnpm-workspace.yaml # if pnpm
└── README.md
package.json (root){
"name": "<project-name>",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"build:backend": "<see backend section>",
"frontend:dev": "cd frontend && <pm> run dev",
"tauri": "tauri"
},
"devDependencies": {
"@tauri-apps/cli": "^2"
}
}
pnpm-workspace.yamlpackages:
- 'frontend'
src-tauri/tauri.conf.json{
"$schema": "https://schema.tauri.app/config/2",
"productName": "<ProjectName>",
"version": "0.1.0",
"identifier": "com.<author>.<project-name>",
"build": {
"frontendDist": "../frontend/dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "cd frontend && <pm> run dev",
"beforeBuildCommand": "cd frontend && <pm> run build"
},
"bundle": {
"active": true,
"targets": "all",
"externalBin": [
"binaries/<backend-name>"
]
},
Key:
externalBinpaths are prefix-only — Tauri appends the target triple at runtime.
src-tauri/capabilities/default.json{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Default capability set",
"windows": ["main"],
"permissions": [
"core:default",
"shell:allow-execute",
"shell:allow-open"
]
}
For sidecar permissions, also add:
{ "identifier": "shell:allow-execute", "allow": [{ "name": "<backend-name>", "sidecar": true }] }
src-tauri/src/main.rs// Prevents additional console window on Windows in release
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
use tauri::Manager;
use tauri_plugin_shell::ShellExt;
fn main() {
tauri::Builder::default()
.plugin(tauri_plugin_shell::init())
.setup(|app| {
// Spawn the backend sidecar
let sidecar_command = app.shell().sidecar("<backend-name>").unwrap();
let (_rx, _child) = sidecar_command.spawn().expect("Failed to spawn sidecar");
Ok(())
})
.run(tauri::generate_context!())
.expect("error while running tauri application");
}
src-tauri/Cargo.toml[package]
name = "<project-name>"
version = "0.1.0"
edition = "2021"
[lib]
name = "<project_name>_lib"
crate-type = ["lib", "cdylib", "staticlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
src-tauri/build.rsfn main() {
tauri_build::build()
}
.gitignorenode_modules/
dist/
target/
src-tauri/binaries/*
!src-tauri/binaries/.gitkeep
*.pyc
__pycache__/
.env
Read references/backends.md for language-specific templates.
| Backend | Entry file | Build command output |
|---|---|---|
| Python/FastAPI | backend/src/main.py | PyInstaller → src-tauri/binaries/ |
| .NET | backend/src/Program.cs | dotnet publish -r <rid> -o src-tauri/binaries/ |
| Go | backend/src/main.go | go build -o src-tauri/binaries/<name>-<triple> |
| Node | backend/src/index.js | pkg or nexe → src-tauri/binaries/ |
Read references/frontends.md for framework-specific templates.
| Framework | vite.config | Entry ext | Notes |
|---|---|---|---|
| React | .ts | .tsx | @vitejs/plugin-react |
| Svelte | .ts | .svelte | @sveltejs/vite-plugin-svelte |
| Vue | .ts | .vue | @vitejs/plugin-vue |
| Vanilla | .js | .js | No framework plugin |
Always set server.port: 5173 and clearScreen: false in vite config for Tauri compatibility.
See references/cicd.md for the full multi-platform release.yml template.
Key jobs:
[ubuntu, macos, windows] → compiles sidecar for each targettauri-apps/tauri-action@v0Generate a README with:
## Development section: steps to install and run## Building section: steps to compile backend + pnpm build## Architecture section: brief explanation of the sidecar patternAfter creating all files, remind the user:
<pm> install in root and frontend/cargo add tauri-plugin-shell in src-tauri/com.<author>.<name> identifier in tauri.conf.jsonsrc-tauri/icons/ (use tauri icon CLI)tauri devcapabilities/default.json permissionssrc-tauri/binaries/ is gitignored — binaries are built artifacts, not committedexternalBin array in tauri.conf.json uses prefix paths — Tauri resolves the full triple-suffixed filename at runtimeAPPLE_* env vars in CISource: DINHDUY/ai-workflow-kit — distributed by TomeVault.