From d1a096edcd7ff7be6ea572963450c2904ea70a24 Mon Sep 17 00:00:00 2001 From: lutfikeskin <78299625+lutfikeskin@users.noreply.github.com> Date: Sat, 29 Aug 2026 01:07:57 +0300 Subject: [PATCH] chore: Add MIT license for v0.1.1 --- LICENSE | 21 +++++++++++++++++++++ README.md | 4 ++++ package-lock.json | 5 +++-- package.json | 3 ++- 4 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4afdde4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 lutfikeskin + +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 125f6e0..e1d8cf9 100644 --- a/README.md +++ b/README.md @@ -76,3 +76,7 @@ Custom Harnesses keep the five arcs. They do not become a generic DAG builder, h Plugin RPC is not a tenant security boundary: the plugin runs in-process with the local user. Plan RPCs require the owning parent thread from `threads.get` so a stale UI or child thread cannot mutate another project by accident. Child token totals come from BB `thread/tokenUsage/updated` when present; missing usage stays null and no cost is invented. Inherited child routing uses `threads.defaultExecutionOptions` when BB provides it; otherwise provider/model stay null with source `inherited-unknown`. + +## License + +MIT — see [LICENSE](LICENSE). diff --git a/package-lock.json b/package-lock.json index 8fd87ee..c2fd0cc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,13 @@ { "name": "bb-plugin-harness", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bb-plugin-harness", - "version": "0.1.0", + "version": "0.1.1", + "license": "MIT", "dependencies": { "@hugeicons/core-free-icons": "^4.1.3", "@hugeicons/react": "^1.1.6", diff --git a/package.json b/package.json index ab6de19..bb3f66d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "bb-plugin-harness", - "version": "0.1.0", + "version": "0.1.1", + "license": "MIT", "type": "module", "scripts": { "test": "vitest run",