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/bin/ovld.mjs CHANGED
@@ -1,6 +1,12 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { runCli } from './_cli/index.mjs';
3
+ /**
4
+ * Thin wrapper that delegates to the canonical CLI in packages/overlord-cli.
5
+ * All CLI source files live in packages/overlord-cli/bin/_cli/ — this file
6
+ * exists only so that `node bin/ovld.mjs` works during local development.
7
+ */
8
+
9
+ import { runCli } from '../packages/overlord-cli/bin/_cli/index.mjs';
4
10
 
5
11
  runCli({ primaryCommand: 'ovld' }).catch((error) => {
6
12
  console.error(error instanceof Error ? error.message : error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overlord-cli",
3
- "version": "3.5.3",
3
+ "version": "3.8.0",
4
4
  "description": "Overlord CLI — launch AI agents on tickets from anywhere",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,7 +11,8 @@
11
11
  "access": "public"
12
12
  },
13
13
  "files": [
14
- "bin/"
14
+ "bin/",
15
+ "plugins/"
15
16
  ],
16
17
  "engines": {
17
18
  "node": ">=18"
@@ -22,7 +23,7 @@
22
23
  "agents",
23
24
  "cli"
24
25
  ],
25
- "license": "MIT",
26
+ "license": "Proprietary",
26
27
  "repository": {
27
28
  "type": "git",
28
29
  "url": "https://github.com/cooperativ/overlord"
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "overlord",
3
+ "version": "0.1.0",
4
+ "description": "Chat-driven access to Overlord ticket protocol workflows.",
5
+ "author": {
6
+ "name": "Cooperativ",
7
+ "url": "https://github.com/cooperativ"
8
+ },
9
+ "homepage": "https://github.com/cooperativ/overlord",
10
+ "repository": "https://github.com/cooperativ/overlord",
11
+ "license": "UNLICENSED",
12
+ "keywords": ["overlord", "tickets", "agents", "workflow", "protocol", "mcp", "codex-plugin"],
13
+ "skills": "./skills/",
14
+ "mcpServers": "./.mcp.json",
15
+ "interface": {
16
+ "displayName": "Overlord",
17
+ "shortDescription": "Run Overlord ticket workflows from Codex chat",
18
+ "longDescription": "Connect Codex to Overlord's local ticket workflow through the existing `ovld protocol` CLI. The plugin bundles workflow skills plus MCP tools for ticket attachment, progress updates, shared context, artifacts, delivery, and follow-up ticket creation.",
19
+ "developerName": "Cooperativ",
20
+ "category": "Productivity",
21
+ "capabilities": ["Interactive", "Write"],
22
+ "websiteURL": "https://www.ovld.ai/docs",
23
+ "privacyPolicyURL": "https://www.ovld.ai/privacy",
24
+ "termsOfServiceURL": "https://www.ovld.ai/terms",
25
+ "defaultPrompt": [
26
+ "Attach to Overlord ticket 123 and summarize the context before editing code",
27
+ "Post an execute update to this Overlord ticket after a meaningful implementation step",
28
+ "Deliver this Overlord ticket with artifacts and change rationales"
29
+ ],
30
+ "brandColor": "#1E6B5C",
31
+ "composerIcon": "./assets/icon.png",
32
+ "logo": "./assets/logo.png",
33
+ "screenshots": ["./assets/screenshot.png"]
34
+ }
35
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "mcpServers": {
3
+ "overlord": {
4
+ "command": "node",
5
+ "args": [
6
+ "./scripts/overlord-mcp.mjs"
7
+ ],
8
+ "note": "Local MCP bridge for the Overlord `ovld protocol` CLI. Requires `ovld` on PATH plus valid OVERLORD_URL and AGENT_TOKEN credentials when talking to a live server."
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,41 @@
1
+ # Overlord Plugin
2
+
3
+ This plugin exposes the installed `ovld protocol` workflow to Codex as a local plugin bundle.
4
+
5
+ It now includes:
6
+
7
+ - MCP tools for the Overlord ticket protocol
8
+ - a bundled Codex skill for the local ticket lifecycle
9
+ - branded plugin assets for the Codex install surfaces
10
+
11
+ The plugin is designed for personal installs under `~/.codex/plugins/overlord` with a
12
+ personal marketplace entry at `~/.agents/plugins/marketplace.json`.
13
+
14
+ ## Requirements
15
+
16
+ - Install the Overlord CLI so `ovld` is available on `PATH`.
17
+ - Ensure `OVERLORD_URL` and `AGENT_TOKEN` are available when the target Overlord instance requires them.
18
+ - Optionally set `OVLD_BIN` if the CLI lives at a non-standard path.
19
+
20
+ ## Tool coverage
21
+
22
+ - Project resolution: `discover_project`
23
+ - Ticket search: `search_tickets` — keyword search + status/filter (direct API call)
24
+ - Ticket session flow: `attach_ticket`, `connect_ticket`, `load_ticket_context`, `spawn_ticket`
25
+ - Progress and review flow: `post_update`, `record_change_rationales`, `ask_blocking_question`, `deliver_ticket`
26
+ - Shared context: `read_shared_context`, `write_shared_context`
27
+ - Artifacts: `artifact_prepare_upload`, `artifact_finalize_upload`, `artifact_download_url`, `artifact_upload_file`
28
+
29
+ The MCP server shells into the installed `ovld` binary so the plugin stays aligned with the shipped CLI behavior instead of depending on this repository checkout.
30
+
31
+ ## Skill coverage
32
+
33
+ - `skills/overlord-ticket-workflow/SKILL.md` teaches Codex the durable local workflow:
34
+ attach first, update during work, ask when blocked, and deliver last.
35
+
36
+ ## App surface status
37
+
38
+ The Codex plugin docs support an optional `.app.json` file, but the current file format
39
+ expects a real OpenAI-issued `asdk_app_*` or `connector_*` identifier. This repo does not
40
+ yet have an issued Overlord app ID to point at, so the plugin intentionally does not ship
41
+ an `.app.json` mapping yet.
Binary file
Binary file
@@ -0,0 +1,28 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 960 640" role="img" aria-labelledby="title">
2
+ <title>Overlord Codex Plugin Screenshot</title>
3
+ <rect width="960" height="640" rx="32" fill="#EEE8DC" />
4
+ <rect x="28" y="28" width="904" height="584" rx="24" fill="#102A26" />
5
+ <rect x="56" y="56" width="220" height="528" rx="20" fill="#173D37" />
6
+ <rect x="300" y="56" width="604" height="528" rx="20" fill="#F6F3EC" />
7
+ <rect x="80" y="88" width="96" height="14" rx="7" fill="#F4B35D" />
8
+ <rect x="80" y="130" width="160" height="14" rx="7" fill="#D5E4DE" opacity="0.92" />
9
+ <rect x="80" y="160" width="132" height="14" rx="7" fill="#D5E4DE" opacity="0.62" />
10
+ <rect x="80" y="226" width="172" height="42" rx="21" fill="#1E6B5C" />
11
+ <rect x="332" y="96" width="184" height="18" rx="9" fill="#214D43" />
12
+ <rect x="332" y="146" width="520" height="18" rx="9" fill="#CFD8D3" />
13
+ <rect x="332" y="180" width="470" height="18" rx="9" fill="#CFD8D3" />
14
+ <rect x="332" y="214" width="550" height="18" rx="9" fill="#CFD8D3" />
15
+ <rect x="332" y="276" width="524" height="116" rx="18" fill="#F0EADF" />
16
+ <rect x="356" y="304" width="168" height="14" rx="7" fill="#173D37" />
17
+ <rect x="356" y="336" width="468" height="14" rx="7" fill="#B9C7C2" />
18
+ <rect x="356" y="360" width="384" height="14" rx="7" fill="#B9C7C2" />
19
+ <rect x="332" y="430" width="180" height="44" rx="22" fill="#1E6B5C" />
20
+ <rect x="530" y="430" width="140" height="44" rx="22" fill="#E0D8CA" />
21
+ <text
22
+ x="332"
23
+ y="538"
24
+ fill="#214D43"
25
+ font-family="IBM Plex Mono, monospace"
26
+ font-size="24"
27
+ >Attach, update, ask, deliver</text>
28
+ </svg>