@gaunt-sloth/review 0.0.4 → 0.1.1
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/README.md +22 -0
- package/package.json +3 -3
- package/dist/config.d.ts +0 -1
- package/dist/config.js +0 -2
- package/dist/config.js.map +0 -1
- package/dist/constants.d.ts +0 -1
- package/dist/constants.js +0 -2
- package/dist/constants.js.map +0 -1
- package/dist/core/GthAgentRunner.d.ts +0 -1
- package/dist/core/GthAgentRunner.js +0 -2
- package/dist/core/GthAgentRunner.js.map +0 -1
- package/dist/core/types.d.ts +0 -1
- package/dist/core/types.js +0 -2
- package/dist/core/types.js.map +0 -1
- package/dist/state/artifactStore.d.ts +0 -1
- package/dist/state/artifactStore.js +0 -2
- package/dist/state/artifactStore.js.map +0 -1
- package/dist/utils/ProgressIndicator.d.ts +0 -1
- package/dist/utils/ProgressIndicator.js +0 -2
- package/dist/utils/ProgressIndicator.js.map +0 -1
- package/dist/utils/consoleUtils.d.ts +0 -1
- package/dist/utils/consoleUtils.js +0 -2
- package/dist/utils/consoleUtils.js.map +0 -1
- package/dist/utils/debugUtils.d.ts +0 -1
- package/dist/utils/debugUtils.js +0 -2
- package/dist/utils/debugUtils.js.map +0 -1
- package/dist/utils/llmUtils.d.ts +0 -1
- package/dist/utils/llmUtils.js +0 -2
- package/dist/utils/llmUtils.js.map +0 -1
- package/dist/utils/stringUtils.d.ts +0 -1
- package/dist/utils/stringUtils.js +0 -2
- package/dist/utils/stringUtils.js.map +0 -1
- package/dist/utils/systemUtils.d.ts +0 -1
- package/dist/utils/systemUtils.js +0 -2
- package/dist/utils/systemUtils.js.map +0 -1
package/README.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
Review and question-answering functionality for Gaunt Sloth.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
This package does not include any AI provider packages. This is by design to
|
|
8
|
+
keep the install minimal and avoid pulling in providers you don't use. Install
|
|
9
|
+
the review package together with the provider required by your configuration:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
# OpenRouter / OpenAI
|
|
13
|
+
npm install -g @gaunt-sloth/review @langchain/openai
|
|
14
|
+
|
|
15
|
+
# Google (Vertex AI / AI Studio)
|
|
16
|
+
npm install -g @gaunt-sloth/review @langchain/google
|
|
17
|
+
|
|
18
|
+
# Anthropic
|
|
19
|
+
npm install -g @gaunt-sloth/review @langchain/anthropic
|
|
20
|
+
|
|
21
|
+
# Groq
|
|
22
|
+
npm install -g @gaunt-sloth/review @langchain/groq
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
See [`@gaunt-sloth/core`](../core) for the full list of supported providers.
|
|
26
|
+
|
|
5
27
|
## Contents
|
|
6
28
|
|
|
7
29
|
- Review module (`reviewModule`) — diff and content review orchestration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaunt-sloth/review",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Review functionality for Gaunt Sloth",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Andrew Kondratev",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"#src/*.js": "./dist/*.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@gaunt-sloth/core": "
|
|
37
|
+
"@gaunt-sloth/core": "0.1.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@gaunt-sloth/tools": "
|
|
40
|
+
"@gaunt-sloth/tools": "0.1.1"
|
|
41
41
|
},
|
|
42
42
|
"peerDependenciesMeta": {
|
|
43
43
|
"@gaunt-sloth/tools": {
|
package/dist/config.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/config.js';
|
package/dist/config.js
DELETED
package/dist/config.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC"}
|
package/dist/constants.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/constants.js';
|
package/dist/constants.js
DELETED
package/dist/constants.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { GthAgentRunner } from '@gaunt-sloth/core/core/GthAgentRunner.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GthAgentRunner.js","sourceRoot":"","sources":["../../src/core/GthAgentRunner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAC"}
|
package/dist/core/types.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/core/types.js';
|
package/dist/core/types.js
DELETED
package/dist/core/types.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/core/types.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/state/artifactStore.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"artifactStore.js","sourceRoot":"","sources":["../../src/state/artifactStore.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/utils/ProgressIndicator.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProgressIndicator.js","sourceRoot":"","sources":["../../src/utils/ProgressIndicator.ts"],"names":[],"mappings":"AAAA,cAAc,8CAA8C,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/utils/consoleUtils.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"consoleUtils.js","sourceRoot":"","sources":["../../src/utils/consoleUtils.ts"],"names":[],"mappings":"AAAA,cAAc,yCAAyC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/utils/debugUtils.js';
|
package/dist/utils/debugUtils.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"debugUtils.js","sourceRoot":"","sources":["../../src/utils/debugUtils.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC"}
|
package/dist/utils/llmUtils.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/utils/llmUtils.js';
|
package/dist/utils/llmUtils.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"llmUtils.js","sourceRoot":"","sources":["../../src/utils/llmUtils.ts"],"names":[],"mappings":"AAAA,cAAc,qCAAqC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/utils/stringUtils.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"stringUtils.js","sourceRoot":"","sources":["../../src/utils/stringUtils.ts"],"names":[],"mappings":"AAAA,cAAc,wCAAwC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@gaunt-sloth/core/utils/systemUtils.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"systemUtils.js","sourceRoot":"","sources":["../../src/utils/systemUtils.ts"],"names":[],"mappings":"AAAA,cAAc,wCAAwC,CAAC"}
|