allwright 1.1.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.
- package/README.md +30 -0
- package/bin/allwright.js +683 -0
- package/bin/ticketpilot-runner.js +683 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Allwright Runner
|
|
2
|
+
|
|
3
|
+
The customer-side half of [Allwright](https://ticketpilot.sublimitysoft.com):
|
|
4
|
+
it runs on YOUR machine, polls YOUR Jira, executes jailed AI agents inside
|
|
5
|
+
YOUR local checkouts, opens PRs as your team members, runs approved deploys,
|
|
6
|
+
and performs security/testing/architecture audits — while your code, your
|
|
7
|
+
credentials and your reports never leave the machine. Outbound-only: no open
|
|
8
|
+
ports needed; a laptop, office PC or small VPS all work.
|
|
9
|
+
|
|
10
|
+
## Quick start
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install -g allwright
|
|
14
|
+
allwright init # control plane URL + enrol token (from your dashboard) + your Jira credentials
|
|
15
|
+
allwright repo add "<repoName>" /path/to/checkout
|
|
16
|
+
allwright start
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Prerequisites on this machine: Node 20+, git, and
|
|
20
|
+
[Claude Code](https://docs.anthropic.com/claude-code) logged in
|
|
21
|
+
(`npm i -g @anthropic-ai/claude-code && claude`).
|
|
22
|
+
|
|
23
|
+
The full step-by-step guide lives inside your Allwright dashboard
|
|
24
|
+
(New Project page). Update any time with `allwright update`.
|
|
25
|
+
|
|
26
|
+
All configuration and every credential stay in `~/.config/ticketpilot/`
|
|
27
|
+
(mode 600) on this machine only.
|
|
28
|
+
|
|
29
|
+
© Sublimity Softwares. All rights reserved. This package ships bundled,
|
|
30
|
+
proprietary code — see the terms on the website.
|