一键导入
commit
Git commit workflow with conventional format and comprehensive summaries
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Git commit workflow with conventional format and comprehensive summaries
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when designing, reviewing, or refactoring code architecture and engineering structure, especially when logic is leaking into the wrong layer, UI components contain business rules, orchestration services do data parsing, one bug hints at a reusable abstraction, or a feature needs clear boundaries between data source, transformation, state management, extension points, and rendering. Use for separation of concerns, layered design, parser/adapter/pipeline decisions, reusable contracts, and preventing narrow fixes from becoming hardcoded architecture.
智能分析工作区变更,自动生成符合 Conventional Commits 规范的精炼提交信息并执行提交。
Review staged, unstaged, and untracked local code changes in the current project. Use when the user asks to review uncommitted changes, check the working tree, inspect local diffs, or perform a pre-commit code review.
Generate or update Ninebot iOS VApp native methods and services. Use when adding a Swift VApp API, creating a VApp-backed pod under ios/Modules, exposing native methods through NBVAppManager/NBUnifiedAPIRegistry, wiring registrations in RootVCService+vapp.swift, or converting RN/callnative methods to the VApp service pattern.
Harlan 的通用架构设计哲学 — 指导 AI 在任何架构任务中遵循 Harlan 的设计偏好、决策风格和输出格式。适用于系统设计、重构、模块拆分、API 设计等所有架构级别的任务。
Harlan 的全栈架构设计 Skill — 融合通用架构哲学、iOS/RN 跨平台分层模式、SDK 设计偏好三位一体。当 Harlan 涉及任何架构级别的任务时必须参考本 Skill,包括但不限于:设计新模块/SDK/Bridge/服务层、评审或重构架构方案、规划 CocoaPods 库结构、设计原生与 JS 通信机制、模块解耦与职责拆分、协议/接口规范设计、目录结构规划、技术选型与方案对比、迁移方案制定、技术债清理。即使 Harlan 没有明确说「按我的风格」,只要涉及「怎么设计」「怎么重构」「怎么拆」「怎么迁移」,本 Skill 自动适用。
| name | commit |
| description | Git commit workflow with conventional format and comprehensive summaries |
<type>: <description>
<body>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Types: feat, fix, refactor, docs, test, chore, perf, ci
git status — review untracked and modified filesgit diff — understand what changedgit log --oneline -5 — follow existing commit stylegit add <files> — add relevant files onlygit status — confirm clean working treegit add .gitignore .swiftlint.yml CLAUDE.md clawd-desk/ clawd-hook/ && \
git commit -m "$(cat <<'EOF'
feat: Swift native clawd-desk initial implementation
- macOS menu-bar accessory app (LSUIElement) with APNG animation
- clawd-hook CLI for AI agent event forwarding via HTTP
- HTTP server (port 23333-23337) with state/permission routes
- Agent abstraction layer for Claude Code + Codex CLI (P0)
- Permission bubble, session HUD, dashboard UI
- Theme system (Calico) with 9-state animation mapping
- SwiftLint configuration for code quality
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
EOF
)"
.env or credential files staged