一键导入
commits
Commit message and branch naming conventions. Use when writing commit messages, naming branches, or squashing changes before a pull request.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Commit message and branch naming conventions. Use when writing commit messages, naming branches, or squashing changes before a pull request.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Project stack, module layout, and core data flow. Use when navigating the codebase, locating where functionality lives, or understanding how the client, Zustand store, and persistence layers connect.
Workflow for evaluating and resolving pull request review feedback. Use when asked to "resolve feedback" on a PR, respond to review comments, address reviewer suggestions, or work through unresolved review threads.
Pull request conventions and requirements. Use when creating a pull request, writing a PR description, preparing changes for review, or referencing the PR template.
MeshCore binary Companion Protocol conventions. Use when reading or writing anything in lib/meshcore/ — commands, responses, frame parsing, or transports.
TypeScript, React, and styling conventions for this project. Use when writing or reviewing any source file, adding components, or touching the state layer.
| name | commits |
| description | Commit message and branch naming conventions. Use when writing commit messages, naming branches, or squashing changes before a pull request. |
| license | Proprietary. See LICENSE for complete terms. |
| metadata | {"author":"kNoAPP","version":"1.2.0"} |
This project uses Conventional Commits.
<type>(<scope>): <short description>
[optional body]
[optional footer]
| Type | When to use |
|---|---|
feat | New feature or capability |
fix | Bug fix |
docs | Documentation only |
style | Formatting-only code changes |
refactor | Code change with no behavior change |
perf | Performance improvement |
test | Adding or updating tests |
build | Build system or external deps |
ci | CI/CD workflow changes |
chore | Dependency updates, tooling, config |
revert | Revert previous changes |
Breaking changes append ! to the type: feat!: drop support for v1 frames.
add wifi reconnect, not Added WiFi Reconnect.fix(parser): handle malformed BLE frames.Per CONTRIBUTING.md, branches follow:
<handle>/<issue#>-<type>-<short-description>
<handle> is your GitHub handle. When there is no linked issue, use none for
<issue#>. Types match the commit types above (feat, fix, docs,
refactor, test, ci, chore).
Examples: kNoAPP/41-feat-wifi-reconnect, mario/none-chore-modify-eslint,
docs/readme-update