greptile 3.5.3 → 3.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "greptile",
3
- "version": "3.5.3",
3
+ "version": "3.6.0",
4
4
  "type": "module",
5
5
  "description": "Greptile code review from your terminal",
6
6
  "bin": "dist/greptile.js",
@@ -1,28 +1,28 @@
1
1
  {
2
2
  "$id": "https://cdn.jsdelivr.net/npm/greptile@3/settings-schema.json",
3
3
  "title": "Greptile CLI settings",
4
- "description": "Saved settings for the greptile CLI, normally managed with `greptile settings set`. See `greptile settings --help`.",
4
+ "description": "Configure local Greptile CLI preferences stored on this machine. Manage these keys with `greptile settings`; organization settings are stored on the server and are not part of this file.",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "version": {
8
8
  "type": "number",
9
- "description": "Settings file format version, written by the CLI."
9
+ "description": "Identify the settings file format version. The CLI writes this value."
10
10
  },
11
11
  "color": {
12
12
  "type": "boolean",
13
- "description": "Color output. Set to false for the same effect as always passing --no-color."
13
+ "description": "Enable color in review output and errors by default. Set false for the same effect as passing --no-color to each review command."
14
14
  },
15
15
  "telemetry": {
16
16
  "type": "boolean",
17
- "description": "Anonymous usage data sharing. Overrides the first-run consent choice; never includes code or repo contents."
17
+ "description": "Share CLI usage and reliability events. This overrides the first-run consent choice and never includes source code or repository contents."
18
18
  },
19
19
  "apiBaseUrl": {
20
20
  "type": "string",
21
- "description": "API base URL for a self-hosted Greptile deployment. Origin only — serve the API at an origin root or dedicated hostname."
21
+ "description": "Trust and use this self-hosted Greptile API origin for credential-bearing requests. Requires HTTPS with no path, query, or fragment; HTTP is allowed only for loopback development."
22
22
  },
23
23
  "webBaseUrl": {
24
24
  "type": "string",
25
- "description": "Web dashboard URL for a self-hosted Greptile deployment. Origin only, no path."
25
+ "description": "Use this trusted self-hosted dashboard origin for browser handoffs and links. Requires HTTPS with no path, query, or fragment; HTTP is allowed only for loopback development."
26
26
  },
27
27
  "review": {
28
28
  "type": "object",
@@ -30,28 +30,28 @@
30
30
  "output": {
31
31
  "type": "string",
32
32
  "enum": ["auto", "text", "json"],
33
- "description": "Default review output: auto (rich on a terminal, text when piped), text, or json."
33
+ "description": "Choose the default review output: auto uses the interactive layout on a terminal and text when piped; text is always plain; json emits the machine result object."
34
34
  },
35
35
  "layout": {
36
36
  "type": "string",
37
37
  "enum": ["comments", "diff"],
38
- "description": "Default review layout: comments, or diff to show findings beside the changed code."
38
+ "description": "Choose the default findings layout: comments renders comment cards; diff places findings beside the changed code."
39
39
  },
40
40
  "context": {
41
41
  "type": "integer",
42
42
  "minimum": 0,
43
43
  "maximum": 60,
44
- "description": "Lines of nearby code shown around findings, the same as passing --context."
44
+ "description": "Show this many nearby code lines around review findings by default. Must be an integer from 0 to 60."
45
45
  },
46
46
  "width": {
47
47
  "type": "integer",
48
48
  "minimum": 40,
49
49
  "maximum": 240,
50
- "description": "Review output width in columns, the same as passing --width."
50
+ "description": "Set the default review output width in columns. Must be an integer from 40 to 240; when unset, use the terminal width."
51
51
  }
52
52
  },
53
53
  "additionalProperties": true,
54
- "description": "Settings for greptile review."
54
+ "description": "Set default output preferences for `greptile review`, `review show`, and compatible review commands."
55
55
  }
56
56
  },
57
57
  "additionalProperties": true,