在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
lint
// Run SwiftLint and swift-format checks on MiaoYan. Not for auto-fix on save (hook handles that).
$ git log --oneline --stat
stars:8,268
forks:486
updated:2026年5月5日 04:12
SKILL.md
// Run SwiftLint and swift-format checks on MiaoYan. Not for auto-fix on save (hook handles that).
Prepare, validate, and publish a MiaoYan direct-download GitHub Release. Not for App Store builds.
Prepare and validate a MiaoYan Mac App Store build. Not for GitHub Releases.
MiaoYan project adapter for Waza check/code-review. Use for Swift, AppKit, iOS target, and release-safety review.
GitHub issues, PRs, releases, and workflow inspection for MiaoYan via gh CLI.
| name | lint |
| description | Run SwiftLint and swift-format checks on MiaoYan. Not for auto-fix on save (hook handles that). |
| version | 1.1.0 |
| allowed-tools | ["Bash"] |
Use this skill to check or fix code style in MiaoYan.
# Check (report only)
swiftlint lint
# Strict mode (treat warnings as errors)
swiftlint lint --strict
# Auto-fix safe violations
swiftlint --fix
# Check specific file
swiftlint lint --path Controllers/ViewController.swift
Config: .swiftlint.yml at project root.
# Check formatting (no changes)
swift-format lint --recursive .
# Apply formatting
swift-format format --recursive --in-place .
Config: .swift-format at project root (line length: 240).
swiftlint lint --strict && swift-format lint --recursive .
--fix or --in-place without user confirmation