@useorgx/openclaw-plugin 0.4.5 → 0.4.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/README.md +24 -3
- package/dashboard/dist/assets/0tOC3wSN.js +214 -0
- package/dashboard/dist/assets/B3ziCA02.js +8 -0
- package/dashboard/dist/assets/Bm8QnMJ_.js +1 -0
- package/dashboard/dist/assets/CpJsfbXo.js +9 -0
- package/dashboard/dist/assets/CyxZio4Y.js +1 -0
- package/dashboard/dist/assets/DaAIOik3.css +1 -0
- package/dashboard/dist/assets/sAhvFnpk.js +4 -0
- package/dashboard/dist/index.html +5 -5
- package/dist/activity-store.d.ts +28 -0
- package/dist/activity-store.js +250 -0
- package/dist/agent-context-store.d.ts +19 -0
- package/dist/agent-context-store.js +60 -3
- package/dist/agent-suite.d.ts +83 -0
- package/dist/agent-suite.js +615 -0
- package/dist/contracts/client.d.ts +22 -1
- package/dist/contracts/client.js +120 -3
- package/dist/contracts/types.d.ts +190 -1
- package/dist/entity-comment-store.d.ts +29 -0
- package/dist/entity-comment-store.js +190 -0
- package/dist/hooks/post-reporting-event.mjs +326 -0
- package/dist/http-handler.d.ts +7 -1
- package/dist/http-handler.js +3603 -578
- package/dist/index.js +936 -62
- package/dist/mcp-client-setup.js +156 -24
- package/dist/mcp-http-handler.d.ts +17 -0
- package/dist/mcp-http-handler.js +144 -3
- package/dist/next-up-queue-store.d.ts +31 -0
- package/dist/next-up-queue-store.js +169 -0
- package/dist/openclaw.plugin.json +1 -1
- package/dist/outbox.d.ts +1 -1
- package/dist/runtime-instance-store.d.ts +1 -1
- package/dist/runtime-instance-store.js +20 -3
- package/dist/skill-pack-state.d.ts +69 -0
- package/dist/skill-pack-state.js +232 -0
- package/dist/worker-supervisor.d.ts +25 -0
- package/dist/worker-supervisor.js +62 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +10 -1
- package/skills/orgx-design-agent/SKILL.md +38 -0
- package/skills/orgx-engineering-agent/SKILL.md +55 -0
- package/skills/orgx-marketing-agent/SKILL.md +40 -0
- package/skills/orgx-operations-agent/SKILL.md +40 -0
- package/skills/orgx-orchestrator-agent/SKILL.md +45 -0
- package/skills/orgx-product-agent/SKILL.md +39 -0
- package/skills/orgx-sales-agent/SKILL.md +40 -0
- package/skills/ship/SKILL.md +63 -0
- package/dashboard/dist/assets/B68j2crt.js +0 -1
- package/dashboard/dist/assets/BZZ-fiJx.js +0 -32
- package/dashboard/dist/assets/BoXlCHKa.js +0 -9
- package/dashboard/dist/assets/Bq9x_Xyh.css +0 -1
- package/dashboard/dist/assets/DBhrRVdp.js +0 -1
- package/dashboard/dist/assets/DD1jv1Hd.js +0 -8
- package/dashboard/dist/assets/DNjbmawF.js +0 -214
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ OrgX plugin for [OpenClaw](https://openclaw.ai) — connect your AI agents to Or
|
|
|
10
10
|
4. Sign in at [useorgx.com](https://useorgx.com) and approve the connection.
|
|
11
11
|
5. Return to OpenClaw. The plugin stores a dedicated credential and runs first sync automatically (no key copy/paste).
|
|
12
12
|
|
|
13
|
-
If Claude/Cursor/Codex MCP configs are detected on this machine, the pairing flow also installs a local MCP bridge entry (no OAuth) pointing at `http://127.0.0.1:18789/orgx/mcp`. To opt out, set `ORGX_DISABLE_MCP_CLIENT_AUTOCONFIG=1`.
|
|
13
|
+
If Claude/Cursor/Codex MCP configs are detected on this machine, the pairing flow also installs a local MCP bridge entry (no OAuth) pointing at `http://127.0.0.1:18789/orgx/mcp`. To avoid overwriting your hosted `orgx` server entry, the local bridge is installed under the name `orgx-openclaw`. To opt out entirely, set `ORGX_DISABLE_MCP_CLIENT_AUTOCONFIG=1`.
|
|
14
14
|
|
|
15
15
|
Manual API key entry is still available as a permanent fallback from the onboarding panel.
|
|
16
16
|
|
|
@@ -29,8 +29,8 @@ This plugin exposes the same `orgx_*` tools over a local MCP HTTP endpoint serve
|
|
|
29
29
|
|
|
30
30
|
On successful browser pairing, the plugin will attempt to patch:
|
|
31
31
|
|
|
32
|
-
- `~/.claude/mcp.json` (
|
|
33
|
-
- `~/.codex/config.toml` (
|
|
32
|
+
- `~/.claude/mcp.json` (adds `mcpServers["orgx-openclaw"]` pointing to the local bridge)
|
|
33
|
+
- `~/.codex/config.toml` (add/update `[mcp_servers."orgx-openclaw"].url` to the local bridge)
|
|
34
34
|
- `~/.cursor/mcp.json` (adds `mcpServers["orgx-openclaw"]` pointing to the local bridge)
|
|
35
35
|
|
|
36
36
|
Each file is backed up first (only when a change is needed) with a `*.bak.<timestamp>-<rand>` suffix.
|
|
@@ -79,6 +79,8 @@ Environment overrides:
|
|
|
79
79
|
The plugin registers these tools for your agents:
|
|
80
80
|
|
|
81
81
|
- **`orgx_status`** — Get current org status (initiatives, agents, tasks, decisions)
|
|
82
|
+
- **`orgx_status_json`** — Get current org status as JSON (for MCP Apps / automation)
|
|
83
|
+
- **`orgx_live_app`** — Open the OrgX Live MCP App (interactive widget)
|
|
82
84
|
- **`orgx_sync`** — Bidirectional memory sync with OrgX
|
|
83
85
|
- **`orgx_spawn_check`** — Pre-spawn quality gate + model routing
|
|
84
86
|
- **`orgx_quality_score`** — Record quality scores for completed work
|
|
@@ -98,6 +100,14 @@ Shows:
|
|
|
98
100
|
- Activity stream
|
|
99
101
|
- Outbox replay visibility for buffered offline events
|
|
100
102
|
|
|
103
|
+
### 🔁 Auto-Continue (Scaffold → Agent Execution)
|
|
104
|
+
|
|
105
|
+
If you scaffold an initiative from chat (for example, "plan X" and then create/scaffold), OrgX can automatically start executing the first workstream via the stream auto-continue pipeline.
|
|
106
|
+
|
|
107
|
+
Troubleshooting:
|
|
108
|
+
- If agents do not start automatically, say: `start agents` to re-trigger dispatch.
|
|
109
|
+
- Open the live link (Mission Control) to see stream status (`ready`, `active`, `blocked`) and any upgrade/approval decisions.
|
|
110
|
+
|
|
101
111
|
### 🎯 Model Routing
|
|
102
112
|
|
|
103
113
|
OrgX automatically routes tasks to the appropriate model tier:
|
|
@@ -205,6 +215,17 @@ Notes:
|
|
|
205
215
|
Manual dispatch:
|
|
206
216
|
- Use `docs/marketing/manual-agent-dispatch-golden-prompt.md` when manually launching a marketing agent for a specific task (non-batched dispatch).
|
|
207
217
|
|
|
218
|
+
## SEO Automation (Keywords Everywhere + DataForSEO)
|
|
219
|
+
|
|
220
|
+
This repo also includes a repo-local SEO pipeline runner (scripts only; not shipped in the plugin package) under `scripts/seo/`.
|
|
221
|
+
|
|
222
|
+
- Apply an OrgX initiative plan for SEO automation: `npm run seo:plan`
|
|
223
|
+
- Run the pipeline:
|
|
224
|
+
- Dry run (no API calls): `npm run seo:run -- --config=docs/seo/seo.config.example.json --mode=all --dry-run=true`
|
|
225
|
+
- Live run: `npm run seo:run -- --config=docs/seo/seo.config.example.json --mode=all`
|
|
226
|
+
|
|
227
|
+
Details: `scripts/seo/README.md`
|
|
228
|
+
|
|
208
229
|
## API Endpoints
|
|
209
230
|
|
|
210
231
|
When the plugin is loaded, these HTTP endpoints are available:
|