@useorgx/openclaw-plugin 0.4.4 → 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.
Files changed (51) hide show
  1. package/README.md +85 -2
  2. package/dashboard/dist/assets/0tOC3wSN.js +214 -0
  3. package/dashboard/dist/assets/Bm8QnMJ_.js +1 -0
  4. package/dashboard/dist/assets/CpJsfbXo.js +9 -0
  5. package/dashboard/dist/assets/CyxZio4Y.js +1 -0
  6. package/dashboard/dist/assets/DaAIOik3.css +1 -0
  7. package/dashboard/dist/index.html +3 -3
  8. package/dist/activity-store.d.ts +28 -0
  9. package/dist/activity-store.js +250 -0
  10. package/dist/agent-context-store.d.ts +19 -0
  11. package/dist/agent-context-store.js +60 -3
  12. package/dist/agent-suite.d.ts +83 -0
  13. package/dist/agent-suite.js +615 -0
  14. package/dist/contracts/client.d.ts +22 -1
  15. package/dist/contracts/client.js +120 -3
  16. package/dist/contracts/types.d.ts +190 -1
  17. package/dist/entity-comment-store.d.ts +29 -0
  18. package/dist/entity-comment-store.js +190 -0
  19. package/dist/hooks/post-reporting-event.mjs +326 -0
  20. package/dist/http-handler.d.ts +7 -1
  21. package/dist/http-handler.js +3619 -585
  22. package/dist/index.js +1039 -80
  23. package/dist/mcp-client-setup.d.ts +30 -0
  24. package/dist/mcp-client-setup.js +347 -0
  25. package/dist/mcp-http-handler.d.ts +55 -0
  26. package/dist/mcp-http-handler.js +395 -0
  27. package/dist/next-up-queue-store.d.ts +31 -0
  28. package/dist/next-up-queue-store.js +169 -0
  29. package/dist/openclaw.plugin.json +1 -1
  30. package/dist/outbox.d.ts +1 -1
  31. package/dist/runtime-instance-store.d.ts +1 -1
  32. package/dist/runtime-instance-store.js +20 -3
  33. package/dist/skill-pack-state.d.ts +69 -0
  34. package/dist/skill-pack-state.js +232 -0
  35. package/dist/worker-supervisor.d.ts +25 -0
  36. package/dist/worker-supervisor.js +62 -0
  37. package/openclaw.plugin.json +1 -1
  38. package/package.json +10 -1
  39. package/skills/orgx-design-agent/SKILL.md +38 -0
  40. package/skills/orgx-engineering-agent/SKILL.md +55 -0
  41. package/skills/orgx-marketing-agent/SKILL.md +40 -0
  42. package/skills/orgx-operations-agent/SKILL.md +40 -0
  43. package/skills/orgx-orchestrator-agent/SKILL.md +45 -0
  44. package/skills/orgx-product-agent/SKILL.md +39 -0
  45. package/skills/orgx-sales-agent/SKILL.md +40 -0
  46. package/skills/ship/SKILL.md +63 -0
  47. package/dashboard/dist/assets/4hvaB0UC.js +0 -9
  48. package/dashboard/dist/assets/BgsfM2lz.js +0 -1
  49. package/dashboard/dist/assets/DCBlK4MX.js +0 -212
  50. package/dashboard/dist/assets/DEuY_RBN.js +0 -1
  51. package/dashboard/dist/assets/jyFhCND-.css +0 -1
@@ -0,0 +1,83 @@
1
+ export type OrgxSuiteDomain = "engineering" | "product" | "design" | "marketing" | "sales" | "operations" | "orchestration";
2
+ export type OrgxSuiteAgentSpec = {
3
+ id: string;
4
+ name: string;
5
+ domain: OrgxSuiteDomain;
6
+ };
7
+ export declare const ORGX_AGENT_SUITE_PACK_ID = "orgx-agent-suite";
8
+ export declare const ORGX_AGENT_SUITE_AGENTS: OrgxSuiteAgentSpec[];
9
+ declare const SUITE_FILES: readonly ["AGENTS.md", "TOOLS.md", "IDENTITY.md", "SKILL.md", "SOUL.md", "USER.md", "HEARTBEAT.md"];
10
+ export type OrgxSkillPackOverrides = {
11
+ source: "builtin" | "server";
12
+ name: string;
13
+ version: string;
14
+ checksum: string;
15
+ etag?: string | null;
16
+ updated_at?: string | null;
17
+ openclaw_skills: Partial<Record<OrgxSuiteDomain, string>>;
18
+ };
19
+ export type OrgxAgentSuiteStatus = {
20
+ packId: string;
21
+ packVersion: string;
22
+ openclawConfigPath: string;
23
+ suiteWorkspaceRoot: string;
24
+ skillPack?: {
25
+ source: "builtin" | "server";
26
+ name: string;
27
+ version: string;
28
+ checksum: string;
29
+ etag?: string | null;
30
+ updated_at?: string | null;
31
+ } | null;
32
+ skillPackRemote?: {
33
+ name: string;
34
+ version: string;
35
+ checksum: string;
36
+ updated_at?: string | null;
37
+ } | null;
38
+ skillPackPolicy?: {
39
+ frozen: boolean;
40
+ pinnedChecksum: string | null;
41
+ } | null;
42
+ skillPackUpdateAvailable?: boolean;
43
+ agents: Array<{
44
+ id: string;
45
+ name: string;
46
+ domain: OrgxSuiteDomain;
47
+ workspace: string;
48
+ configuredInOpenclaw: boolean;
49
+ workspaceExists: boolean;
50
+ }>;
51
+ };
52
+ export type OrgxAgentSuitePlan = OrgxAgentSuiteStatus & {
53
+ openclawConfigWouldUpdate: boolean;
54
+ openclawConfigAddedAgents: string[];
55
+ workspaceFiles: Array<{
56
+ agentId: string;
57
+ file: typeof SUITE_FILES[number];
58
+ managedPath: string;
59
+ localPath: string;
60
+ compositePath: string;
61
+ action: "create" | "update" | "noop" | "conflict";
62
+ }>;
63
+ };
64
+ export declare function computeOrgxAgentSuitePlan(input: {
65
+ packVersion: string;
66
+ openclawDir?: string;
67
+ skillPack?: OrgxSkillPackOverrides | null;
68
+ skillPackRemote?: OrgxAgentSuiteStatus["skillPackRemote"] | null;
69
+ skillPackPolicy?: OrgxAgentSuiteStatus["skillPackPolicy"] | null;
70
+ skillPackUpdateAvailable?: boolean;
71
+ }): OrgxAgentSuitePlan;
72
+ export declare function applyOrgxAgentSuitePlan(input: {
73
+ plan: OrgxAgentSuitePlan;
74
+ dryRun?: boolean;
75
+ openclawDir?: string;
76
+ skillPack?: OrgxSkillPackOverrides | null;
77
+ }): {
78
+ ok: true;
79
+ applied: boolean;
80
+ plan: OrgxAgentSuitePlan;
81
+ };
82
+ export declare function generateAgentSuiteOperationId(): string;
83
+ export {};