@meltstudio/meltctl 4.179.1 → 4.179.3
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/dist/index.js +25 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var CLI_VERSION;
|
|
|
14
14
|
var init_version = __esm({
|
|
15
15
|
"src/utils/version.ts"() {
|
|
16
16
|
"use strict";
|
|
17
|
-
CLI_VERSION = "4.179.
|
|
17
|
+
CLI_VERSION = "4.179.3";
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -1680,7 +1680,10 @@ var ISSUE_RULES = [
|
|
|
1680
1680
|
{
|
|
1681
1681
|
id: "board.pm-silent-critical",
|
|
1682
1682
|
dimension: "board",
|
|
1683
|
-
|
|
1683
|
+
// Intentionally medium, not critical: PM silence is process hygiene, not an
|
|
1684
|
+
// emergency, and red is reserved to avoid alert fatigue. Can be tightened
|
|
1685
|
+
// again as adoption matures. (id keeps the -critical suffix for continuity.)
|
|
1686
|
+
severity: "medium",
|
|
1684
1687
|
label: "PM silent in active cycle",
|
|
1685
1688
|
category: "sprint",
|
|
1686
1689
|
howToFix: "Comment on the active-cycle tickets to acknowledge progress, ask questions, or flag concerns",
|
|
@@ -1746,7 +1749,9 @@ var ISSUE_RULES = [
|
|
|
1746
1749
|
{
|
|
1747
1750
|
id: "plans.stuck",
|
|
1748
1751
|
dimension: "plans",
|
|
1749
|
-
|
|
1752
|
+
// Medium, not high: a stuck plan is a tooling/terminal-scorer failure, not a
|
|
1753
|
+
// project emergency. Red reserved to avoid fatigue; tighten later if needed.
|
|
1754
|
+
severity: "medium",
|
|
1750
1755
|
label: "Plan can't be scored",
|
|
1751
1756
|
category: "plans",
|
|
1752
1757
|
howToFix: "Re-run `meltctl plan submit` with a valid ticket, or close the plan if it's no longer relevant",
|
|
@@ -1784,7 +1789,11 @@ var ISSUE_RULES = [
|
|
|
1784
1789
|
{
|
|
1785
1790
|
id: "findings.high",
|
|
1786
1791
|
dimension: "findings",
|
|
1787
|
-
|
|
1792
|
+
// Medium, not high: a high *code* finding is dev-facing work to schedule,
|
|
1793
|
+
// not a PM red alarm — only critical findings turn the project band red.
|
|
1794
|
+
// The finding keeps its own 'high' severity in the findings list; this only
|
|
1795
|
+
// governs the project-health band. Tighten later as adoption matures.
|
|
1796
|
+
severity: "medium",
|
|
1788
1797
|
label: "High audit finding",
|
|
1789
1798
|
category: "audits",
|
|
1790
1799
|
howToFix: "Open the audit detail page and schedule the high-severity finding into the sprint",
|
|
@@ -4745,7 +4754,10 @@ var ISSUE_RULES2 = [
|
|
|
4745
4754
|
{
|
|
4746
4755
|
id: "board.pm-silent-critical",
|
|
4747
4756
|
dimension: "board",
|
|
4748
|
-
|
|
4757
|
+
// Intentionally medium, not critical: PM silence is process hygiene, not an
|
|
4758
|
+
// emergency, and red is reserved to avoid alert fatigue. Can be tightened
|
|
4759
|
+
// again as adoption matures. (id keeps the -critical suffix for continuity.)
|
|
4760
|
+
severity: "medium",
|
|
4749
4761
|
label: "PM silent in active cycle",
|
|
4750
4762
|
category: "sprint",
|
|
4751
4763
|
howToFix: "Comment on the active-cycle tickets to acknowledge progress, ask questions, or flag concerns",
|
|
@@ -4811,7 +4823,9 @@ var ISSUE_RULES2 = [
|
|
|
4811
4823
|
{
|
|
4812
4824
|
id: "plans.stuck",
|
|
4813
4825
|
dimension: "plans",
|
|
4814
|
-
|
|
4826
|
+
// Medium, not high: a stuck plan is a tooling/terminal-scorer failure, not a
|
|
4827
|
+
// project emergency. Red reserved to avoid fatigue; tighten later if needed.
|
|
4828
|
+
severity: "medium",
|
|
4815
4829
|
label: "Plan can't be scored",
|
|
4816
4830
|
category: "plans",
|
|
4817
4831
|
howToFix: "Re-run `meltctl plan submit` with a valid ticket, or close the plan if it's no longer relevant",
|
|
@@ -4849,7 +4863,11 @@ var ISSUE_RULES2 = [
|
|
|
4849
4863
|
{
|
|
4850
4864
|
id: "findings.high",
|
|
4851
4865
|
dimension: "findings",
|
|
4852
|
-
|
|
4866
|
+
// Medium, not high: a high *code* finding is dev-facing work to schedule,
|
|
4867
|
+
// not a PM red alarm — only critical findings turn the project band red.
|
|
4868
|
+
// The finding keeps its own 'high' severity in the findings list; this only
|
|
4869
|
+
// governs the project-health band. Tighten later as adoption matures.
|
|
4870
|
+
severity: "medium",
|
|
4853
4871
|
label: "High audit finding",
|
|
4854
4872
|
category: "audits",
|
|
4855
4873
|
howToFix: "Open the audit detail page and schedule the high-severity finding into the sprint",
|
package/package.json
CHANGED