@gaunt-sloth/core 0.0.2 → 0.0.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.
- package/README.md +8 -0
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -25,3 +25,11 @@ All modules are exported via the `./` export map pattern (`./*.js`), e.g.:
|
|
|
25
25
|
import { GthAgentRunner } from '@gaunt-sloth/core/agentRunner.js';
|
|
26
26
|
import { display } from '@gaunt-sloth/core/utils/consoleUtils.js';
|
|
27
27
|
```
|
|
28
|
+
|
|
29
|
+
## Related packages
|
|
30
|
+
|
|
31
|
+
- [`@gaunt-sloth/core`](../core) — Core utilities, config, and agent infrastructure (this package)
|
|
32
|
+
- [`@gaunt-sloth/tools`](../tools) — Built-in tools, filesystem toolkit, and middleware registry
|
|
33
|
+
- [`@gaunt-sloth/api`](../api) — API server, AG-UI, MCP, and A2A integration
|
|
34
|
+
- [`@gaunt-sloth/review`](../review) — Review and Q&A modules with standalone CLI
|
|
35
|
+
- [`gaunt-sloth-assistant`](../assistant) — Main CLI application
|
package/package.json
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaunt-sloth/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Core utilities and types for Gaunt Sloth",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Andrew Kondratev",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant.git",
|
|
10
|
+
"directory": "packages/core"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/tree/main/packages/core#readme",
|
|
16
|
+
"keywords": ["ai", "agent", "llm", "langchain"],
|
|
7
17
|
"type": "module",
|
|
8
18
|
"main": "dist/index.js",
|
|
9
19
|
"types": "dist/index.d.ts",
|