rosett-ai 1.6.1 → 1.8.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8968373d949471c707db0f0bddbe526797d8e47fdaf80b53a17d65e7fb5cb198
4
- data.tar.gz: efdd68439a73eb12e2f6b503e999c2d0a40c9a6d9c73693da59cbacd9c3dab0c
3
+ metadata.gz: 4199d3afb89e1e5378dad08e0f989c085375643d7f48436a4786c7b7c615f646
4
+ data.tar.gz: 3af391ea23387c019d6247cb8e77ca78586f5e0e9626cca37b1946d3f4dff31f
5
5
  SHA512:
6
- metadata.gz: 82e690044b7a4b4a54d3bf5f562c1b27711cb462b973d5d3d0078c3c0c8e84ca20dec5f027949d4cd0c233c26d4d321fe42cb20cfe9bb8ab7bdb068613c7787f
7
- data.tar.gz: 4680e074d51a261d6ad4a98ce477d990b2ddf4187b30f90883c3d26cb86b1c7cfe6502b0ea7c5a07434f692111dc296e9a5eebb4ecb6477913bb5e6516b111d8
6
+ metadata.gz: 0db1b2103c8b5334786442adea3cb254ff81389354a6dba39a0a38c38d41ba0f337dab6be90758b75c8ae51e6ada6e391befe8f671502ecd08634133067e1d23
7
+ data.tar.gz: edb943d87180a8656fdd5a33a5d20e5cb3bf05201824fbfc581c8c13b31102ec9449d3e346bb3fe05612d63333abe89331eadb0fb116c626821d5f64b6d1eadb
data/CHANGELOG.md CHANGED
@@ -6,6 +6,50 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.8.0] - 2026-08-13
10
+
11
+ ### Added
12
+
13
+ - **Enforcement rule scoping** — `HookGenerator` now supports per-rule `match_target`
14
+ (`path` | `content` | `both`) and optional `path_scope` (regex guard on the target
15
+ file path) fields in generated PreToolUse hook scripts. Rules without these fields
16
+ default to `both`, preserving backward-compatible behaviour. This eliminates false
17
+ positives that occurred when security-documentation text mentioning a forbidden
18
+ pattern triggered the rule against the file that documents it (e.g. sec_018
19
+ documentation was itself blocked).
20
+
21
+ - **Behaviour schema v1.5.0** — two new optional fields on the `enforcement` block:
22
+ - `match_target: "path" | "content" | "both"` — selects which part of the tool
23
+ input the rule pattern is tested against. Default: `"both"`.
24
+ - `path_scope: string` — regex; when set, the rule only applies when the target
25
+ file path matches. Ignored when `match_target` is `"path"`.
26
+
27
+ - **`Validator#build_valid_entry`** — passes `match_target` and `path_scope` through
28
+ to the rule hash so `HookGenerator` can embed them in RULES entries.
29
+
30
+ ## [1.7.0] - 2026-08-02
31
+
32
+ ### Added
33
+
34
+ - **sec_018 bypass vector enforcement** — `HookGenerator` now uses per-tool field
35
+ extraction when generating PreToolUse hook scripts, preventing false positives
36
+ from raw hash stringification. Bash hooks match against the `command` field only;
37
+ Write/Edit hooks match against `file_path` and content fields. Covers all
38
+ sec_018 bypass vectors: `--no-verify`, `OVERCOMMIT_DISABLE`, `core.hooksPath=`,
39
+ `ruby-audit --ignore`, `SKIP=`, `allow_failure: true` on CI gates, and writes
40
+ to the bundler-audit ignore file. Red-team spec suite added covering all
41
+ known bypass vectors.
42
+
43
+ ## [1.6.2] - 2026-07-25
44
+
45
+ ### Fixed
46
+
47
+ - **`raictl config compile` / `config show` crash with older engine plugins** — `resolve_config_compiler`
48
+ unconditionally passed `strict:` to the engine's `ConfigCompiler#initialize`, causing
49
+ `ArgumentError: unknown keyword: :strict` with engine gems whose constructor predates the
50
+ `strict` parameter. The fix introspects the constructor's parameter list at runtime and
51
+ only includes `strict:` when the engine supports it.
52
+
9
53
  ## [1.6.1] - 2026-07-23
10
54
 
11
55
  ### Security
@@ -4,8 +4,8 @@
4
4
  "title": "NeatNerds Behaviour Configuration",
5
5
  "description": "Schema for validating behaviour configuration files used by the NeatNerds Code Companion (rosett-ai). Behaviour files define operational rules for Claude Code workflows.",
6
6
  "$comment": {
7
- "date": "2026-07-19",
8
- "version": "1.4.0",
7
+ "date": "2026-08-13",
8
+ "version": "1.5.0",
9
9
  "source": "rosett-ai",
10
10
  "compatible_claude_code_versions": [
11
11
  ">=0.1.0"
@@ -142,6 +142,16 @@
142
142
  "message": {
143
143
  "type": "string",
144
144
  "description": "Human-readable message shown when the rule triggers"
145
+ },
146
+ "match_target": {
147
+ "type": "string",
148
+ "enum": ["path", "content", "both"],
149
+ "description": "Which part of the tool input the pattern is tested against. Default: both (concatenated path + content, current behaviour)."
150
+ },
151
+ "path_scope": {
152
+ "type": "string",
153
+ "minLength": 1,
154
+ "description": "Regex string. When set, rule applies only when the target path matches. Ignored when match_target is path."
145
155
  }
146
156
  },
147
157
  "required": [
@@ -8,7 +8,7 @@ module RosettAi
8
8
  # Resolves the correct executor for an engine by reading its manifest
9
9
  # to determine the API type and constructor kwargs.
10
10
  #
11
- # SDK-based engines (api_gem) receive api_key: and base_url:.
11
+ # SDK-based engines (api_gem) receive api_key: and base_url:. # gitleaks:allow
12
12
  # HTTP-based engines (api_type: http|openai_compatible) receive
13
13
  # endpoint: and model: from the manifest defaults.
14
14
  # CLI-based engines (api_type: cli) receive binary: from the manifest.
@@ -5,7 +5,7 @@
5
5
 
6
6
  module RosettAi
7
7
  module Config
8
- # Resolves ${secret:backend:key} references in configuration values.
8
+ # Resolves ${secret:backend:key} references in configuration values. # gitleaks:allow
9
9
  #
10
10
  # Security constraints:
11
11
  # - NO regex anywhere — deterministic string parsing only (ReDoS prevention)
@@ -16,7 +16,7 @@ module RosettAi
16
16
  # is held server-side and NEVER distributed.
17
17
  class LicenseKey
18
18
  # @return [String] Hex-encoded public key for license verification.
19
- PUBLIC_KEY_HEX = '91f54336c0d42a7c88642b8d7f8bacab3adba4a4d633a33002fc15f676bfd8f0'
19
+ PUBLIC_KEY_HEX = '91f54336c0d42a7c88642b8d7f8bacab3adba4a4d633a33002fc15f676bfd8f0' # gitleaks:allow
20
20
  # @return [String] Prefix for rosett-ai license key strings.
21
21
  RAI_PREFIX = 'NNCC-'
22
22
  # @return [Integer] Days of grace period after license expiry.
@@ -163,6 +163,8 @@ module RosettAi
163
163
  " pattern: #{format_regex(rule[:pattern])},",
164
164
  " applies_to: [#{tools}],",
165
165
  " action: :#{rule[:action]},",
166
+ " match_target: :#{rule.fetch(:match_target, 'both')},",
167
+ " path_scope: #{rule[:path_scope] ? format_regex(rule[:path_scope]) : 'nil'},",
166
168
  " message: '#{msg}',",
167
169
  " description: '#{desc}' }"
168
170
  ].join("\n ")
@@ -189,6 +191,10 @@ module RosettAi
189
191
  # Generates the runtime enforcement logic body.
190
192
  # Uses non-interpolating heredoc — this code runs at hook time, not generation time.
191
193
  #
194
+ # Per-tool field extraction prevents false positives from raw hash stringification.
195
+ # Each tool has a known input schema; we extract only the fields that carry
196
+ # user-controlled content that sec_018 patterns must match against.
197
+ #
192
198
  # @return [String]
193
199
  def enforcement_body
194
200
  <<~'RUBY'
@@ -196,10 +202,39 @@ module RosettAi
196
202
 
197
203
  input = JSON.parse($stdin.read)
198
204
  tool_name = input['tool_name'].to_s
199
- tool_input = input['tool_input'].to_s
205
+
206
+ target_path, target_content = case tool_name
207
+ when 'Bash'
208
+ cmd = input.dig('tool_input', 'command').to_s
209
+ [cmd, cmd]
210
+ when 'Write'
211
+ [input.dig('tool_input', 'file_path').to_s,
212
+ input.dig('tool_input', 'content').to_s]
213
+ when 'Edit'
214
+ content = [input.dig('tool_input', 'old_string'),
215
+ input.dig('tool_input', 'new_string')].compact.join(' ')
216
+ [input.dig('tool_input', 'file_path').to_s, content]
217
+ when 'Agent'
218
+ ['', input.dig('tool_input', 'prompt').to_s]
219
+ else
220
+ raw = input.fetch('tool_input', '').to_s
221
+ [raw, raw]
222
+ end
200
223
 
201
224
  violations = RULES.select do |rule|
202
- rule[:applies_to].include?(tool_name) && rule[:pattern].match?(tool_input)
225
+ next false unless rule[:applies_to].include?(tool_name)
226
+
227
+ if rule[:path_scope] && rule[:match_target] != :path
228
+ next false unless rule[:path_scope].match?(target_path)
229
+ end
230
+
231
+ match_text = case rule[:match_target]
232
+ when :path then target_path
233
+ when :content then target_content
234
+ else "#{target_path} #{target_content}"
235
+ end
236
+
237
+ rule[:pattern].match?(match_text)
203
238
  end
204
239
 
205
240
  exit 0 if violations.empty?
@@ -209,7 +244,6 @@ module RosettAi
209
244
  "(P#{v[:priority]}, #{v[:action]}): #{v[:message].empty? ? v[:description] : v[:message]}"
210
245
  end
211
246
 
212
- # Block if any violation has action :block
213
247
  blocked = violations.any? { |v| v[:action] == :block }
214
248
  exit(blocked ? 2 : 0)
215
249
  RUBY
@@ -228,7 +228,9 @@ module RosettAi
228
228
  { rule_id: ctx.rule_id, behaviour: ctx.behaviour, type: 'enforceable',
229
229
  pattern: enforcement['pattern'], applies_to: enforcement['applies_to'],
230
230
  action: derive_action(enforcement, priority), message: enforcement['message'],
231
- priority: priority, description: rule['description'].to_s.strip }
231
+ priority: priority, description: rule['description'].to_s.strip,
232
+ match_target: (enforcement['match_target'] || 'both').to_s,
233
+ path_scope: enforcement['path_scope'] }
232
234
  end
233
235
  end
234
236
  end
@@ -6,7 +6,7 @@
6
6
  module RosettAi
7
7
  module Retrofit
8
8
  # Detects sensitive values in parsed configuration data and replaces
9
- # them with ${secret:env:NAME} references.
9
+ # them with ${secret:env:NAME} references. # gitleaks:allow
10
10
  #
11
11
  # Recognises API keys, tokens, passwords, and other secrets by
12
12
  # key name patterns and value heuristics (length, entropy, prefixes).
@@ -69,7 +69,7 @@ module RosettAi
69
69
  env_name = full_key.upcase.gsub(/[^A-Z0-9]/, '_').squeeze('_')
70
70
  @warnings << "Sensitive value detected for '#{key}' — replaced with secret reference. " \
71
71
  "Set #{env_name} in your environment."
72
- "${secret:env:#{env_name}}"
72
+ "${secret:env:#{env_name}}" # gitleaks:allow
73
73
  end
74
74
 
75
75
  def sensitive?(key, value)
@@ -143,8 +143,12 @@ module RosettAi
143
143
  end
144
144
 
145
145
  secret_resolver = masking ? RosettAi::Config::MaskingSecretResolver.new : nil
146
- plugin.config_compiler_class.new(simulate: simulate, secret_resolver: secret_resolver,
147
- strict: strict)
146
+ klass = plugin.config_compiler_class
147
+ params = { simulate: simulate, secret_resolver: secret_resolver }
148
+ init_params = klass.instance_method(:initialize).parameters
149
+ supports_strict = init_params.any? { |type, name| name == :strict && [:key, :keyreq].include?(type) }
150
+ params[:strict] = strict if supports_strict
151
+ klass.new(**params)
148
152
  end
149
153
 
150
154
  def engine_hint(available, engine_name)
@@ -5,5 +5,5 @@
5
5
 
6
6
  module RosettAi
7
7
  # @return [String] Current version of the rosett-ai gem.
8
- VERSION = '1.6.1'
8
+ VERSION = '1.8.0'
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rosett-ai
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.1
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hugo Antonio Sepulveda Manriquez