showrunner-agent-staging 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 (3) hide show
  1. package/LICENSE.md +15 -0
  2. package/README.md +13 -0
  3. package/package.json +18 -0
package/LICENSE.md ADDED
@@ -0,0 +1,15 @@
1
+ # Showrunner Agent Connector License
2
+
3
+ Copyright (c) Bylines, Inc. All rights reserved.
4
+
5
+ Permission is granted to download, install, and run this software for the sole purpose of
6
+ connecting a locally-run coding agent to a Showrunner account.
7
+
8
+ You may not redistribute, sublicense, sell, or publish this software or any derivative of it,
9
+ and you may not modify it other than as required to run it in your own environment.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
12
+ NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
13
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
14
+ DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
15
+ OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # showrunner-agent-staging
2
+
3
+ The **staging** build of the Showrunner agent connector. It is published automatically from every
4
+ change that reaches Showrunner's staging environment and is pinned to that environment's servers.
5
+
6
+ **This is not the package you want** unless you are testing a staging build of the Showrunner app.
7
+ The connector for Showrunner itself is [`showrunner-agent`](https://www.npmjs.com/package/showrunner-agent).
8
+
9
+ Staging and production are published as separate packages so that neither can be installed against
10
+ the wrong environment, and so that each is released by its own pipeline. The Showrunner app prints
11
+ the exact `npx` command to run for the build you have, so you should never need to type either name.
12
+
13
+ Source: [Bylines/typo_v1](https://github.com/Bylines/typo_v1), directory `external-agent-gateway`.
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "showrunner-agent-staging",
3
+ "version": "0.0.0",
4
+ "description": "Staging build of the Showrunner agent connector, pinned to the Showrunner staging environment. Not for general use: install showrunner-agent instead.",
5
+ "license": "SEE LICENSE IN LICENSE.md",
6
+ "homepage": "https://showrunner.nyc",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Bylines/typo_v1.git",
10
+ "directory": "external-agent-gateway"
11
+ },
12
+ "files": [
13
+ "LICENSE.md"
14
+ ],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ }
18
+ }