ironprose 0.2.1 → 0.3.0

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,18 @@
1
1
  # ironprose-cli
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - baf06b0: Add `rate` subcommand for agent diagnostic feedback
8
+
9
+ - New `ironprose rate` command with `--json` as primary agent path and `--rule`/`--rating` convenience flags
10
+ - Telemetry Bridge fields (`source_type`, `confidence`) surfaced on `DiagnosticItem`
11
+ - Text output shows `[Heuristic 1.00] [id:d-001]` tags and rating hint on stderr
12
+ - AGENTS.md rule #6: "Rate diagnostics you disagree with"
13
+ - SKILL.md rating workflow section with examples
14
+ - 4 new integration tests for rate command
15
+
3
16
  ## 0.2.1
4
17
 
5
18
  ### Patch Changes
package/README.md CHANGED
@@ -83,6 +83,9 @@ ironprose list-rules
83
83
 
84
84
  # Inspect API schema
85
85
  ironprose schema analyze
86
+
87
+ # Rate a diagnostic (closes the feedback loop)
88
+ ironprose rate --rule repetition --rating false_positive --diagnostic-id d-001
86
89
  ```
87
90
 
88
91
  ## Configuration
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "ironprose",
26
- "version": "0.2.1"
26
+ "version": "0.3.0"
27
27
  },
28
28
  "node_modules/@isaacs/cliui": {
29
29
  "engines": {
@@ -542,5 +542,5 @@
542
542
  }
543
543
  },
544
544
  "requires": true,
545
- "version": "0.2.1"
545
+ "version": "0.3.0"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/benchcutlogic/ironprose-cli/releases/download/v0.2.1"
3
+ "https://github.com/benchcutlogic/ironprose-cli/releases/download/v0.3.0"
4
4
  ],
5
5
  "bin": {
6
6
  "ironprose": "run-ironprose.js"
@@ -112,7 +112,7 @@
112
112
  "zipExt": ".tar.gz"
113
113
  }
114
114
  },
115
- "version": "0.2.1",
115
+ "version": "0.3.0",
116
116
  "volta": {
117
117
  "node": "18.14.1",
118
118
  "npm": "9.5.0"