@tanagram/cli 0.5.42 → 0.5.44

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.
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanagram/cli",
3
- "version": "0.5.42",
3
+ "version": "0.5.44",
4
4
  "description": "Tanagram - Catch sloppy code before it ships",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -6,24 +6,24 @@ allowed-tools: Bash
6
6
 
7
7
  # Tanagram
8
8
 
9
- Tanagram catches rule violations in your code changes before they reach a pull request. It encodes your team's tribal knowledge — security requirements, architectural patterns, reliability constraints — and enforces them locally.
9
+ Tanagram evaluates rule violations in your code changes before they reach a pull request. It encodes your team's tribal knowledge — security requirements, architectural patterns, reliability constraints — and enforces them locally.
10
10
 
11
11
  ## When to Use
12
12
 
13
- **Run `tanagram catch` after ANY code change.** This means after every Edit, Write, or NotebookEdit tool call. Do not wait for the user to ask — run it proactively every time you modify code.
13
+ **Run `tanagram eval` after ANY code change.** This means after every Edit, Write, or NotebookEdit tool call. Do not wait for the user to ask — run it proactively every time you modify code.
14
14
 
15
- Also run when the user says "check rules", "evaluate code", "run tanagram", "catch violations", "check my changes", or asks if their changes follow team conventions.
15
+ Also run when the user says "check rules", "evaluate code", "run tanagram", "eval violations", "check my changes", or asks if their changes follow team conventions.
16
16
 
17
17
  ## Commands
18
18
 
19
- ### `tanagram catch`
19
+ ### `tanagram eval`
20
20
 
21
21
  Evaluate uncommitted changes against the team's rules. Runs 100% locally — no backend API call needed for evaluation.
22
22
 
23
23
  ```bash
24
- tanagram catch # check changes, human-readable output
25
- tanagram catch --json # JSON output for structured parsing
26
- tanagram catch --offline # use cached policies (requires prior sync)
24
+ tanagram eval # check changes, human-readable output
25
+ tanagram eval --json # JSON output for structured parsing
26
+ tanagram eval --offline # use cached policies (requires prior sync)
27
27
  ```
28
28
 
29
29
  **What it does:**
@@ -62,14 +62,14 @@ tanagram sync
62
62
 
63
63
  ### `tanagram login` / `tanagram logout`
64
64
 
65
- Authenticate with Tanagram. Required before catch (unless using `--offline` with cached policies).
65
+ Authenticate with Tanagram. Required before eval (unless using `--offline` with cached policies).
66
66
 
67
67
  ## Workflow
68
68
 
69
69
  After making code changes:
70
70
 
71
71
  ```
72
- $ tanagram catch
72
+ $ tanagram eval
73
73
  Found 2 violation(s):
74
74
 
75
75
  [error] Input sanitization required
@@ -84,7 +84,7 @@ $ tanagram catch
84
84
  Fix the violations, then run again:
85
85
 
86
86
  ```
87
- $ tanagram catch
87
+ $ tanagram eval
88
88
  No violations found. 15 rule(s) checked.
89
89
  ```
90
90