tweek 0.2.1__py3-none-any.whl → 0.3.1__py3-none-any.whl

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.
tweek/__init__.py CHANGED
@@ -10,7 +10,7 @@ Tweek provides:
10
10
  - Per-skill/per-tool security policies
11
11
  """
12
12
 
13
- __version__ = "0.2.1"
13
+ __version__ = "0.3.1"
14
14
  __author__ = "Tommy Mancino"
15
15
 
16
16
  # "TOO MUCH PRESSURE!" - Tweek Tweak
tweek/audit.py CHANGED
@@ -2,7 +2,7 @@
2
2
  Tweek Skill Audit — Security analysis for skill files and tool descriptions.
3
3
 
4
4
  Reads skill content, detects language, translates non-English content,
5
- and runs the full 215-pattern regex analysis + LLM semantic review.
5
+ and runs the full 259-pattern regex analysis + LLM semantic review.
6
6
  Designed for one-time evaluation of skills before installation.
7
7
  """
8
8
 
@@ -173,7 +173,7 @@ def audit_content(
173
173
  except Exception:
174
174
  pass
175
175
 
176
- # Step 3: Pattern matching (all 215 patterns against English content)
176
+ # Step 3: Pattern matching (all 259 patterns against English content)
177
177
  try:
178
178
  from tweek.hooks.pre_tool_use import PatternMatcher
179
179