@miraigent/free-ai-ops-mcp 0.1.12 → 0.1.13

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.13] - 2026-06-17
4
+
5
+ ### Changed
6
+
7
+ - Added a README feedback-result example so developers who try the npx package
8
+ can open safer, more actionable GitHub issues with synthetic input shapes and
9
+ returned status fields.
10
+
3
11
  ## [0.1.12] - 2026-06-16
4
12
 
5
13
  ### Changed
package/README.md CHANGED
@@ -75,6 +75,27 @@ you ran, the public-safe input shape, and the returned status field. Do not
75
75
  paste private customer records, secrets, internal policy text, or paid product
76
76
  files.
77
77
 
78
+ ## Copy A Useful Feedback Result
79
+
80
+ When you open a Tried It feedback issue, the most useful report is the smallest
81
+ public-safe result shape that shows where the review gate helped or felt unclear.
82
+
83
+ Good public-safe issue body:
84
+
85
+ Command: npx @miraigent/free-ai-ops-mcp
86
+ Tool: human_review_gate
87
+ Input shape:
88
+ draftType: customer support reply
89
+ audience: customer
90
+ riskFlags: refund; complaint; personal data
91
+ sendMode: manual
92
+ Returned status: stop
93
+ Confusing part: I expected review_required, but stop may be correct because refund and personal data were both present.
94
+ Requested improvement: Add one sentence explaining why stop is stronger than review_required.
95
+
96
+ Keep the report synthetic. Replace names, emails, customer text, internal policy
97
+ text, and private CRM notes with short labels before posting.
98
+
78
99
  ## Who This Helps
79
100
 
80
101
  - Developers adding review gates to AI agents or MCP tools.
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.12' };
3
+ const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.13' };
4
4
 
5
5
  const tools = [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Free MCP server for developers adding human review gates, prompt risk checks, FAQ review, and CRM note safety to AI tools.",
5
5
  "homepage": "https://github.com/Miraigent/miraigent-free-ai-ops-mcp",
6
6
  "type": "module",