@gaunt-sloth/core 0.1.9 → 0.2.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/README.md +2 -8
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
# @gaunt-sloth/core
|
|
2
2
|
|
|
3
|
-
> ℹ️ **Moved.** The Gaunt Sloth project now lives at
|
|
4
|
-
> [`pukeko-robotics/gaunt-sloth`](https://github.com/pukeko-robotics/gaunt-sloth) and
|
|
5
|
-
> [gauntsloth.app](https://gauntsloth.app). The `0.1.x` releases belong to the
|
|
6
|
-
> `gaunt-sloth-assistant` 1.x line; `@gaunt-sloth/core` continues in v2 as part of the
|
|
7
|
-
> [`gaunt-sloth`](https://www.npmjs.com/package/gaunt-sloth) line.
|
|
8
|
-
|
|
9
3
|
Core utilities and types for Gaunt Sloth.
|
|
10
4
|
|
|
11
5
|
## Contents
|
|
@@ -17,7 +11,7 @@ Core utilities and types for Gaunt Sloth.
|
|
|
17
11
|
- State and artifact storage: `artifactStore`
|
|
18
12
|
- Shared constants and types
|
|
19
13
|
|
|
20
|
-
AI vendor packages are not direct dependencies. Each vendor package is an optional peer dependency, resolved at runtime by whichever consumer (e.g. `gaunt-sloth
|
|
14
|
+
AI vendor packages are not direct dependencies. Each vendor package is an optional peer dependency, resolved at runtime by whichever consumer (e.g. `gaunt-sloth`) pulls them in.
|
|
21
15
|
|
|
22
16
|
## Dependencies
|
|
23
17
|
|
|
@@ -38,4 +32,4 @@ import { display } from '@gaunt-sloth/core/utils/consoleUtils.js';
|
|
|
38
32
|
- [`@gaunt-sloth/tools`](../tools) — Built-in tools, filesystem toolkit, and middleware registry
|
|
39
33
|
- [`@gaunt-sloth/api`](../api) — API server, AG-UI, MCP, and A2A integration
|
|
40
34
|
- [`@gaunt-sloth/review`](../review) — Review and Q&A modules with standalone CLI
|
|
41
|
-
- [`gaunt-sloth
|
|
35
|
+
- [`gaunt-sloth`](../assistant) — Main CLI application
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaunt-sloth/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Core utilities and types for Gaunt Sloth",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Andrew Kondratev",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"#src/*.js": "./dist/*.js"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@langchain/core": "^1.1
|
|
37
|
-
"@langchain/langgraph": "^1.4.
|
|
38
|
-
"langchain": "^1.
|
|
36
|
+
"@langchain/core": "^1.2.1",
|
|
37
|
+
"@langchain/langgraph": "^1.4.6",
|
|
38
|
+
"langchain": "^1.5.2"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@langchain/anthropic": "^1.
|
|
42
|
-
"@langchain/deepseek": "^1.
|
|
43
|
-
"@langchain/google": "^0.1
|
|
44
|
-
"@langchain/groq": "^1.
|
|
45
|
-
"@langchain/openai": "^1.
|
|
46
|
-
"@langchain/xai": "^1.3
|
|
41
|
+
"@langchain/anthropic": "^1.5.1",
|
|
42
|
+
"@langchain/deepseek": "^1.1.3",
|
|
43
|
+
"@langchain/google": "^0.2.1",
|
|
44
|
+
"@langchain/groq": "^1.3.1",
|
|
45
|
+
"@langchain/openai": "^1.5.3",
|
|
46
|
+
"@langchain/xai": "^1.4.3"
|
|
47
47
|
},
|
|
48
48
|
"peerDependenciesMeta": {
|
|
49
49
|
"@langchain/anthropic": {
|