@moon791017/neo-skills 1.0.37 → 1.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/_system-instructions.js +12 -2
- package/package.json +1 -1
|
@@ -55,7 +55,7 @@ All commit messages must strictly adopt Conventional Commits 1.0.0 (CC 1.0.0).
|
|
|
55
55
|
- \`type\` must be a lowercase noun; prioritize using \`feat\`, \`fix\`, \`docs\`, \`test\`, \`refactor\`, \`build\`, \`ci\`, \`chore\`.
|
|
56
56
|
- \`feat\` indicates a new feature, corresponding to SemVer minor; \`fix\` indicates a bug fix, corresponding to SemVer patch.
|
|
57
57
|
- \`scope\` is optional, use a lowercase short noun, e.g., \`docs\`, \`scanner\`, \`npm\`, \`ci\`.
|
|
58
|
-
- \`description\` is required, write in the imperative mood, present tense
|
|
58
|
+
- \`description\` is required, should be written in the user's preferred language (e.g., Traditional Chinese, English, etc.). If in English, write in the imperative mood, present tense. If in other languages (such as Traditional Chinese), use clear and direct action verbs. Do not end with a period.
|
|
59
59
|
- Major breaking changes must have a \`!\` added after the type/scope, or use \`BREAKING CHANGE: <description>\` in the footer; this kind of commit corresponds to SemVer major.
|
|
60
60
|
- Body is optional, must be separated from the header by a blank line, used to explain motivation, background, and behavioral differences, without restating the diff.
|
|
61
61
|
- Footer is optional, must be separated from the body by a blank line; issue references use \`Refs: #123\` or \`Closes: #123\`.
|
|
@@ -63,7 +63,7 @@ All commit messages must strictly adopt Conventional Commits 1.0.0 (CC 1.0.0).
|
|
|
63
63
|
- Each commit focuses on a single logical change; do not mix unrelated modifications in the same commit.
|
|
64
64
|
- Before committing, ensure you do not include unrequested or existing unrelated changes.
|
|
65
65
|
|
|
66
|
-
Examples:
|
|
66
|
+
Examples (English):
|
|
67
67
|
|
|
68
68
|
\`\`\`text
|
|
69
69
|
docs(readme): add localized documentation links
|
|
@@ -72,6 +72,16 @@ feat(scanner)!: change default risk threshold
|
|
|
72
72
|
|
|
73
73
|
BREAKING CHANGE: scans now fail CI when findings are at or above the threshold
|
|
74
74
|
\`\`\`
|
|
75
|
+
|
|
76
|
+
Examples (Traditional Chinese):
|
|
77
|
+
|
|
78
|
+
\`\`\`text
|
|
79
|
+
docs(readme): 新增本地化文件連結
|
|
80
|
+
|
|
81
|
+
feat(scanner)!: 變更預設風險閾值
|
|
82
|
+
|
|
83
|
+
BREAKING CHANGE: 當發現項目等於或高於閾值時,掃描現在會使 CI 失敗
|
|
84
|
+
\`\`\`
|
|
75
85
|
`;
|
|
76
86
|
|
|
77
87
|
/**
|