overlord-cli 3.5.3 → 3.8.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 +7 -10
- package/bin/_cli/index.mjs +1 -1
- package/bin/_cli/setup.mjs +552 -54
- package/bin/ovld.mjs +7 -1
- package/package.json +4 -3
- package/plugins/overlord/.codex-plugin/plugin.json +35 -0
- package/plugins/overlord/.mcp.json +11 -0
- package/plugins/overlord/README.md +41 -0
- package/plugins/overlord/assets/icon.png +0 -0
- package/plugins/overlord/assets/logo.png +0 -0
- package/plugins/overlord/assets/screenshot.svg +28 -0
- package/plugins/overlord/scripts/overlord-mcp.mjs +626 -0
- package/plugins/overlord/skills/overlord-ticket-workflow/SKILL.md +27 -0
package/README.md
CHANGED
|
@@ -29,6 +29,9 @@ ovld auth login
|
|
|
29
29
|
ovld attach
|
|
30
30
|
ovld create "Investigate the failing build"
|
|
31
31
|
ovld prompt "Draft a fix for the onboarding flow"
|
|
32
|
+
ovld setup codex
|
|
33
|
+
ovld setup cursor
|
|
34
|
+
ovld setup gemini
|
|
32
35
|
ovld setup all
|
|
33
36
|
ovld doctor
|
|
34
37
|
```
|
|
@@ -48,15 +51,9 @@ ovld doctor
|
|
|
48
51
|
- `ticket` - work with a single ticket
|
|
49
52
|
- `protocol` - run ticket lifecycle commands
|
|
50
53
|
- `connect`, `restart`, `run`, `resume`, `context` - launch or resume an agent session
|
|
51
|
-
- `setup` - install the Overlord connector for a supported agent
|
|
52
|
-
- `doctor` - verify installed agent connectors
|
|
54
|
+
- `setup` - install the Overlord connector or plugin bundle for a supported agent
|
|
55
|
+
- `doctor` - verify installed agent connectors and check whether a newer CLI version is available
|
|
53
56
|
|
|
54
|
-
##
|
|
57
|
+
## License
|
|
55
58
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
```bash
|
|
59
|
-
yarn cli:publish
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
That script syncs the package payload and then runs `npm publish --access public` from `packages/overlord-cli/`.
|
|
59
|
+
Permission is granted to use this software for any purpose, free of charge. You may not modify, distribute, sublicense, or sell copies of the software without explicit permission from the author.
|
package/bin/_cli/index.mjs
CHANGED
|
@@ -27,7 +27,7 @@ Usage:
|
|
|
27
27
|
${primaryCommand} restart <agent> Resume an agent session
|
|
28
28
|
${primaryCommand} context Print ticket context (requires TICKET_ID)
|
|
29
29
|
${primaryCommand} setup <agent|all> Install Overlord agent connector
|
|
30
|
-
${primaryCommand} doctor Validate installed agent connectors
|
|
30
|
+
${primaryCommand} doctor Validate installed agent connectors and check for CLI updates
|
|
31
31
|
${primaryCommand} version Show the installed CLI version
|
|
32
32
|
${primaryCommand} help Show this help message
|
|
33
33
|
|