@cotal-ai/herdr 0.0.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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # @cotal-ai/herdr
2
+
3
+ **Placeholder release.** This version (`0.0.0`) exists only so the package name is registered on
4
+ npm, which is a prerequisite for configuring GitHub Actions **trusted publishing (OIDC)** — npm
5
+ configures trusted publishers per package, and a package must exist before that can be set up.
6
+
7
+ It contains no code. The real `@cotal-ai/herdr` — the Herdr `Runtime` provider that spawns Cotal
8
+ agents into panes of a dedicated Herdr session — publishes from the
9
+ [Cotal repository](https://github.com/Cotal-AI/Cotal/tree/main/extensions/herdr) at the same
10
+ version as the rest of the `@cotal-ai/*` packages.
11
+
12
+ Install a real release, not this one.
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@cotal-ai/herdr",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder for the Cotal Herdr runtime integration. Reserves the name so GitHub Actions trusted publishing (OIDC) can be configured; the real package publishes from the Cotal repo.",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/Cotal-AI/Cotal.git",
9
+ "directory": "extensions/herdr"
10
+ },
11
+ "homepage": "https://github.com/Cotal-AI/Cotal/tree/main/extensions/herdr",
12
+ "keywords": ["cotal", "herdr", "agents", "runtime", "placeholder"],
13
+ "publishConfig": { "access": "public" },
14
+ "files": ["README.md"]
15
+ }