diff --git a/.changeset/connector-github.md b/.changeset/connector-github.md deleted file mode 100644 index 308dc18..0000000 --- a/.changeset/connector-github.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@gemstack/connector-github": minor ---- - -New package: the GitHub connector for GemStack AI orchestration. Read and act on issues, pull requests, and repository files over the GitHub REST API — `get-repo`, `list-issues`, `get-issue`, `list-pull-requests`, `get-pull-request`, `get-file`, `search-issues`, `comment-on-issue`, `create-issue`. Built with `@gemstack/connectors`; consumes a bearer token (PAT or OAuth) via the mount `credentials` seam. First real connector on the contract (epic #86). diff --git a/.changeset/connector-google-drive.md b/.changeset/connector-google-drive.md deleted file mode 100644 index 183b435..0000000 --- a/.changeset/connector-google-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@gemstack/connector-google-drive": minor ---- - -New package: the Google Drive connector for GemStack AI orchestration. Browse, read, and share Drive files over the Drive REST API (v3) — `get-about`, `list-files`, `search-files`, `get-file`, `get-file-content` (Docs/Sheets/Slides exported to text, other files downloaded), `list-permissions`, `create-folder`, `share-file`, `trash-file`. Built with `@gemstack/connectors`; consumes a Google OAuth 2.0 access token via the mount `credentials` seam. Second connector on the contract (epic #86). diff --git a/.changeset/connectors-kit.md b/.changeset/connectors-kit.md deleted file mode 100644 index 37981f9..0000000 --- a/.changeset/connectors-kit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@gemstack/connectors": minor ---- - -New package: the connector contract for GemStack AI orchestration. `defineConnector` declares a tool connector to an external service (its auth requirement + tools); `mountConnectors` composes any number into a single `@gemstack/mcp` server, namespacing tools by connector id and resolving credentials at call time. Built on `@gemstack/mcp`, framework-agnostic. First step of the connectors epic (GitHub, Google Drive to follow). diff --git a/examples/connectors-quickstart/CHANGELOG.md b/examples/connectors-quickstart/CHANGELOG.md new file mode 100644 index 0000000..eb372de --- /dev/null +++ b/examples/connectors-quickstart/CHANGELOG.md @@ -0,0 +1,8 @@ +# @gemstack/example-connectors-quickstart + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [b0430f9] + - @gemstack/connectors@0.1.0 diff --git a/examples/connectors-quickstart/package.json b/examples/connectors-quickstart/package.json index 884312e..327754d 100644 --- a/examples/connectors-quickstart/package.json +++ b/examples/connectors-quickstart/package.json @@ -1,6 +1,6 @@ { "name": "@gemstack/example-connectors-quickstart", - "version": "0.0.0", + "version": "0.0.1", "private": true, "description": "Runnable reference connector built with @gemstack/connectors: a read-only in-memory source, mounted into an MCP server and exercised with McpTestClient. Copy from this to write a real connector.", "type": "module", diff --git a/packages/connector-github/CHANGELOG.md b/packages/connector-github/CHANGELOG.md new file mode 100644 index 0000000..7f5355a --- /dev/null +++ b/packages/connector-github/CHANGELOG.md @@ -0,0 +1,12 @@ +# @gemstack/connector-github + +## 0.1.0 + +### Minor Changes + +- f360932: New package: the GitHub connector for GemStack AI orchestration. Read and act on issues, pull requests, and repository files over the GitHub REST API — `get-repo`, `list-issues`, `get-issue`, `list-pull-requests`, `get-pull-request`, `get-file`, `search-issues`, `comment-on-issue`, `create-issue`. Built with `@gemstack/connectors`; consumes a bearer token (PAT or OAuth) via the mount `credentials` seam. First real connector on the contract (epic #86). + +### Patch Changes + +- Updated dependencies [b0430f9] + - @gemstack/connectors@0.1.0 diff --git a/packages/connector-github/package.json b/packages/connector-github/package.json index 687771f..e803c7e 100644 --- a/packages/connector-github/package.json +++ b/packages/connector-github/package.json @@ -1,6 +1,6 @@ { "name": "@gemstack/connector-github", - "version": "0.0.0", + "version": "0.1.0", "description": "GitHub connector for GemStack AI orchestration: read and act on issues, pull requests, and repo files over the GitHub REST API. Built with @gemstack/connectors.", "keywords": [ "mcp", diff --git a/packages/connector-google-drive/CHANGELOG.md b/packages/connector-google-drive/CHANGELOG.md new file mode 100644 index 0000000..b08db20 --- /dev/null +++ b/packages/connector-google-drive/CHANGELOG.md @@ -0,0 +1,12 @@ +# @gemstack/connector-google-drive + +## 0.1.0 + +### Minor Changes + +- 6e37d60: New package: the Google Drive connector for GemStack AI orchestration. Browse, read, and share Drive files over the Drive REST API (v3) — `get-about`, `list-files`, `search-files`, `get-file`, `get-file-content` (Docs/Sheets/Slides exported to text, other files downloaded), `list-permissions`, `create-folder`, `share-file`, `trash-file`. Built with `@gemstack/connectors`; consumes a Google OAuth 2.0 access token via the mount `credentials` seam. Second connector on the contract (epic #86). + +### Patch Changes + +- Updated dependencies [b0430f9] + - @gemstack/connectors@0.1.0 diff --git a/packages/connector-google-drive/package.json b/packages/connector-google-drive/package.json index 1e97830..06ebe9e 100644 --- a/packages/connector-google-drive/package.json +++ b/packages/connector-google-drive/package.json @@ -1,6 +1,6 @@ { "name": "@gemstack/connector-google-drive", - "version": "0.0.0", + "version": "0.1.0", "description": "Google Drive connector for GemStack AI orchestration: browse, read, and share Drive files over the Drive REST API. Built with @gemstack/connectors.", "keywords": [ "mcp", diff --git a/packages/connectors/CHANGELOG.md b/packages/connectors/CHANGELOG.md new file mode 100644 index 0000000..d5ddfaf --- /dev/null +++ b/packages/connectors/CHANGELOG.md @@ -0,0 +1,7 @@ +# @gemstack/connectors + +## 0.1.0 + +### Minor Changes + +- b0430f9: New package: the connector contract for GemStack AI orchestration. `defineConnector` declares a tool connector to an external service (its auth requirement + tools); `mountConnectors` composes any number into a single `@gemstack/mcp` server, namespacing tools by connector id and resolving credentials at call time. Built on `@gemstack/mcp`, framework-agnostic. First step of the connectors epic (GitHub, Google Drive to follow). diff --git a/packages/connectors/package.json b/packages/connectors/package.json index 2834b81..14e3713 100644 --- a/packages/connectors/package.json +++ b/packages/connectors/package.json @@ -1,6 +1,6 @@ { "name": "@gemstack/connectors", - "version": "0.0.0", + "version": "0.1.0", "description": "The connector contract for GemStack AI orchestration: define a tool connector to an external service (GitHub, Google Drive, ...) once with `defineConnector`, compose any number into a single MCP server with `mountConnectors`. Built on @gemstack/mcp; framework-agnostic.", "keywords": [ "mcp",