runshift 0.0.5 → 0.0.6
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/.claude/settings.local.json +5 -1
- package/README.md +63 -0
- package/package.json +1 -1
|
@@ -8,7 +8,11 @@
|
|
|
8
8
|
"Bash(node /Users/dc/runshift-cli/dist/index.js init)",
|
|
9
9
|
"Bash(node /Users/dc/runshift-cli/dist/index.js init --help)",
|
|
10
10
|
"Bash(node /Users/dc/runshift-cli/dist/index.js --help)",
|
|
11
|
-
"Bash(node /Users/dc/runshift-cli/dist/index.js remove)"
|
|
11
|
+
"Bash(node /Users/dc/runshift-cli/dist/index.js remove)",
|
|
12
|
+
"Bash(git add:*)",
|
|
13
|
+
"Bash(git commit:*)",
|
|
14
|
+
"Bash(npm version:*)",
|
|
15
|
+
"Bash(npm publish:*)"
|
|
12
16
|
]
|
|
13
17
|
}
|
|
14
18
|
}
|
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# runshift
|
|
2
|
+
|
|
3
|
+
The control plane for agents, wherever they run.
|
|
4
|
+
|
|
5
|
+
## Install governance rules in 30 seconds
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx runshift init
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
relay reads your repository, identifies security gaps and agent failure patterns specific to your codebase, and installs governance rules that prevent AI agents from breaking things.
|
|
12
|
+
|
|
13
|
+
## What it does
|
|
14
|
+
|
|
15
|
+
1. **Scans your repo** — detects your stack, existing rules, migration files, environment variables (key names only)
|
|
16
|
+
2. **Calls relay** — sends context to runshift.ai, generates opinionated rules specific to your codebase
|
|
17
|
+
3. **Shows you everything** — findings, files to install, browser preview before anything is written
|
|
18
|
+
4. **Writes on confirmation** — you approve, relay commits
|
|
19
|
+
|
|
20
|
+
## Commands
|
|
21
|
+
|
|
22
|
+
| Command | Description |
|
|
23
|
+
|---------|-------------|
|
|
24
|
+
| `npx runshift init` | Install governance rules |
|
|
25
|
+
| `npx runshift init --dry-run` | Preview without writing |
|
|
26
|
+
| `npx runshift init --branch <name>` | Run on a new branch |
|
|
27
|
+
| `npx runshift remove` | Remove installed rules |
|
|
28
|
+
|
|
29
|
+
## Privacy
|
|
30
|
+
|
|
31
|
+
- No source code is sent to runshift.ai
|
|
32
|
+
- No secret values are ever read
|
|
33
|
+
- Only dependency names, folder structure, and env key names are sent
|
|
34
|
+
- Existing files written by humans are never overwritten
|
|
35
|
+
- Every file shown before writing — you confirm before anything changes
|
|
36
|
+
|
|
37
|
+
## Revert
|
|
38
|
+
|
|
39
|
+
Everything relay installs is committed with one message:
|
|
40
|
+
|
|
41
|
+
`chore: install runshift agent governance rules`
|
|
42
|
+
|
|
43
|
+
To undo everything instantly:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
git revert HEAD
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Or use the built-in remove command:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npx runshift remove
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Control plane
|
|
56
|
+
|
|
57
|
+
relay is the development layer of the runshift control plane.
|
|
58
|
+
|
|
59
|
+
[runshift.ai](https://runshift.ai) — production governance for AI agents.
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
MIT License · [github.com/devincrane/runshift-cli](https://github.com/devincrane/runshift-cli)
|