From f9eb2366bbe06dee4864102211c989b391e1088d Mon Sep 17 00:00:00 2001 From: Billal Mesloub Date: Fri, 31 Jul 2026 16:46:45 +0100 Subject: [PATCH 1/3] Delete LICENSE --- LICENSE | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 LICENSE diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 0b179ad..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2025 Elias Bachaalany - -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. From 8ae865fb03c8026701fdb37dae642606029ee7d2 Mon Sep 17 00:00:00 2001 From: Billal Mesloub Date: Fri, 31 Jul 2026 17:50:13 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 2ccd29e..f07e9ec 100644 --- a/README.md +++ b/README.md @@ -171,30 +171,20 @@ cmake --install build --config Release | Project | Language | Description | |---------|----------|-------------| -| [claude-agent-sdk-cpp](https://github.com/0xeb/claude-agent-sdk-cpp) | C++ | C++ port of the Claude Agent SDK | -| [claude-agent-sdk-dotnet](https://github.com/0xeb/claude-agent-sdk-dotnet) | C# | .NET port of the Claude Agent SDK | -| [fastmcpp](https://github.com/0xeb/fastmcpp) | C++ | C++ port of FastMCP for building MCP servers | +| [claude-agent-sdk-cpp](https://github.com/Unity-Cloud/claude-agent-sdk-cpp) | C++ | C++ port of the Claude Agent SDK | +| [claude-agent-sdk-dotnet](https://github.com/Unity-Cloud/claude-agent-sdk-dotnet) | C# | .NET port of the Claude Agent SDK | +| [fastmcpp](https://github.com/Unity-Cloud/fastmcpp) | C++ | C++ port of FastMCP for building MCP servers | ## Projects Using This SDK | Project | Description | |---------|-------------| -| [windbg_copilot](https://github.com/0xeb/windbg_copilot) | WinDbg extension for AI-assisted debugging | -| [lldb_copilot](https://github.com/0xeb/lldb_copilot) | LLDB plugin for AI-assisted debugging | -| [libagents](https://github.com/0xeb/libagents) | Unified C++ library for AI agent providers | Want to add your project? Open a PR! ## Author -Elias Bachaalany ([@0xeb](https://github.com/0xeb)) +Elias Bachaalany [@Unity-Billal-mesloub](https://github.com/Unity-Billal-mesloub) Pair-programmed with Claude Code and Codex. -## License - -Copyright 2025 Elias Bachaalany - -Licensed under the MIT License. See `LICENSE` for details. - -This is a C++ port of [copilot-sdk](https://github.com/github/copilot-sdk) by GitHub. From d5a76656bd1dddef7d689b1d535599ee97c2384c Mon Sep 17 00:00:00 2001 From: Billal Mesloub Date: Fri, 31 Jul 2026 17:52:30 +0100 Subject: [PATCH 3/3] Create static.yml Signed-off-by: Billal Mesloub --- .github/workflows/static.yml | 43 ++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 0000000..460f782 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,43 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v5