@gaunt-sloth/agent 0.1.8

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 (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +6 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # @gaunt-sloth/agent — placeholder (0.1.8)
2
+
3
+ This is a **name-reservation placeholder**, not the real package.
4
+
5
+ The real **Deep agent runtime for Gaunt Sloth** (tools, middleware, MCP/A2A clients, AG-UI
6
+ server) ships from the [gaunt-sloth monorepo](https://github.com/Galvanized-Pukeko/gaunt-sloth/tree/main/packages/agent)
7
+ via the `release.yml` pipeline, starting at `2.0.0-alpha.0`.
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // Placeholder for @gaunt-sloth/agent.
2
+ // This 0.1.8 publish only reserves the package name on npm so a Trusted
3
+ // Publisher (OIDC) can be configured for it, mirroring @gaunt-sloth/core and
4
+ // @gaunt-sloth/review. The real runtime ships from the gaunt-sloth monorepo
5
+ // (packages/agent) via the release.yml pipeline starting at 2.0.0-alpha.0.
6
+ export const placeholder = true;
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@gaunt-sloth/agent",
3
+ "version": "0.1.8",
4
+ "description": "Placeholder for @gaunt-sloth/agent — name reservation. Replaced by the real package via the gaunt-sloth release pipeline (2.0.0-alpha.0+).",
5
+ "license": "MIT",
6
+ "author": "Andrew Kondratev",
7
+ "type": "module",
8
+ "main": "index.js",
9
+ "files": [
10
+ "index.js",
11
+ "README.md"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/Galvanized-Pukeko/gaunt-sloth.git",
16
+ "directory": "packages/agent"
17
+ },
18
+ "homepage": "https://github.com/Galvanized-Pukeko/gaunt-sloth/tree/main/packages/agent#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/Galvanized-Pukeko/gaunt-sloth/issues"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ }
25
+ }