From 54dbda6b716516999cfe1a8d3bfe5034dcb30f68 Mon Sep 17 00:00:00 2001 From: hopeatina Date: Thu, 21 May 2026 21:16:44 -0500 Subject: [PATCH] chore: prepare Claude plugin for public review --- LICENSE | 21 +++++++++++++++++++++ README.md | 5 +++-- package-lock.json | 5 +++-- package.json | 5 +++++ 4 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..99835f3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 OrgX + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index b533c8e..78c047a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,8 @@ Claude Code plugin package for OrgX: ## Repo -- Path: `/Users/hopeatina/Code/orgx-claude-code-plugin` +- Repository: `https://github.com/useorgx/orgx-claude-code-plugin` +- License: MIT - Initiative: `9b543d86-ea3e-47b8-8109-7160547f2745` - Live view: `https://useorgx.com/live/9b543d86-ea3e-47b8-8109-7160547f2745` @@ -112,7 +113,7 @@ Work Graph fingerprints, and approved OrgX activity. ## Next Steps -- Add marketplace metadata and publishing pipeline. +- Submit to the Claude plugin directory after `claude plugin validate .` passes. - Add E2E harness for real Claude CLI sessions and OrgX assertion checks. - Extract reusable shared core from OpenClaw plugin into a standalone package. diff --git a/package-lock.json b/package-lock.json index 62f033d..22b9f61 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,6 +7,7 @@ "": { "name": "@useorgx/claude-code-plugin", "version": "0.1.2", + "license": "MIT", "dependencies": { "@useorgx/orgx-gateway-sdk": "github:useorgx/orgx-gateway-sdk" }, @@ -33,8 +34,8 @@ }, "node_modules/@useorgx/orgx-gateway-sdk": { "version": "0.1.0-alpha.0", - "resolved": "git+ssh://git@github.com/useorgx/orgx-gateway-sdk.git#f521c4d775ce541bf1341cea14b70a78b7c98e5c", - "license": "UNLICENSED" + "resolved": "git+ssh://git@github.com/useorgx/orgx-gateway-sdk.git#b32d0349b381751a60be14f62d3c35c68826976a", + "license": "MIT" }, "node_modules/typescript": { "version": "5.9.3", diff --git a/package.json b/package.json index 4030a51..46bf170 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,11 @@ "description": "OrgX Claude Code plugin with MCP, runtime telemetry hooks, Work Graph reconciliation, and Sovereign Execution peer sidecar", "type": "module", "private": true, + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/useorgx/orgx-claude-code-plugin.git" + }, "bin": { "orgx-claude-code-peer": "lib/peer/cli.mjs" },