@gaunt-sloth/review 2.0.0-alpha.2 → 2.0.0-alpha.3

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.
Files changed (2) hide show
  1. package/README.md +2 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -58,7 +58,6 @@ LLM provider than local development.
58
58
  ## Dependencies
59
59
 
60
60
  - `@gaunt-sloth/core` (required)
61
- - `@gaunt-sloth/tools` (optional peer dependency)
62
61
 
63
62
  No MCP, no A2A, no commander. This is intentional to keep the package lightweight for CI use.
64
63
 
@@ -73,7 +72,6 @@ import { commandUtils } from '@gaunt-sloth/review/commandUtils.js';
73
72
  ## Related packages
74
73
 
75
74
  - [`@gaunt-sloth/core`](../core) — Core utilities, config, and agent infrastructure
76
- - [`@gaunt-sloth/tools`](../tools) — Built-in tools, filesystem toolkit, and middleware registry
77
- - [`@gaunt-sloth/api`](../api) — API server, AG-UI, MCP, and A2A integration
75
+ - [`@gaunt-sloth/agent`](../agent) — Agent runtime: built-in tools, filesystem toolkit, middleware registry, API server, AG-UI, MCP, and A2A integration
78
76
  - [`@gaunt-sloth/review`](../review) — Review and Q&A modules with standalone CLI (this package)
79
- - [`gaunt-sloth-assistant`](../assistant) — Main CLI application
77
+ - [`gaunt-sloth`](../app) — Main CLI application
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@gaunt-sloth/review",
3
- "version": "2.0.0-alpha.2",
3
+ "version": "2.0.0-alpha.3",
4
4
  "description": "Review functionality for Gaunt Sloth",
5
5
  "license": "MIT",
6
6
  "author": "Andrew Kondratev",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/Galvanized-Pukeko/gaunt-sloth.git",
9
+ "url": "git+https://github.com/pukeko-robotics/gaunt-sloth.git",
10
10
  "directory": "packages/review"
11
11
  },
12
12
  "bugs": {
13
- "url": "https://github.com/Galvanized-Pukeko/gaunt-sloth/issues"
13
+ "url": "https://github.com/pukeko-robotics/gaunt-sloth/issues"
14
14
  },
15
- "homepage": "https://github.com/Galvanized-Pukeko/gaunt-sloth/tree/main/packages/review#readme",
15
+ "homepage": "https://github.com/pukeko-robotics/gaunt-sloth/tree/main/packages/review#readme",
16
16
  "keywords": [
17
17
  "ai",
18
18
  "agent",
@@ -38,7 +38,7 @@
38
38
  "@langchain/langgraph": "^1.4.4",
39
39
  "langchain": "^1.5.0",
40
40
  "zod": "^3.25.0 || ^4.0.0",
41
- "@gaunt-sloth/core": "2.0.0-alpha.2"
41
+ "@gaunt-sloth/core": "2.0.0-alpha.3"
42
42
  },
43
43
  "files": [
44
44
  "./dist/*",