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/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "allwright",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Allwright \u2014 the AI teammate that runs on YOUR machine. Polls your Jira, runs jailed agents in your local checkouts, opens PRs, executes approved deploys, and audits security/testing/architecture. Credentials and code never leave your host.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"allwright": "bin/allwright.js",
|
|
7
|
+
"ticketpilot-runner": "bin/allwright.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=20"
|
|
15
|
+
},
|
|
16
|
+
"license": "UNLICENSED",
|
|
17
|
+
"homepage": "https://ticketpilot.sublimitysoft.com",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"jira",
|
|
20
|
+
"ai-agent",
|
|
21
|
+
"ai-teammate",
|
|
22
|
+
"automation",
|
|
23
|
+
"claude",
|
|
24
|
+
"devops",
|
|
25
|
+
"self-hosted",
|
|
26
|
+
"allwright"
|
|
27
|
+
]
|
|
28
|
+
}
|