@cubis/foundry 0.3.22 → 0.3.23
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.
- package/CHANGELOG.md +28 -0
- package/README.md +5 -0
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented in this file.
|
|
4
|
+
|
|
5
|
+
## [0.3.23] - 2026-02-26
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added a root `CHANGELOG.md` and npm-visible changelog section in `README.md`.
|
|
10
|
+
- Included `CHANGELOG.md` in published npm package files.
|
|
11
|
+
|
|
12
|
+
## [0.3.22] - 2026-02-26
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- Added Antigravity-only default `StitchMCP` runtime setup in Gemini settings.
|
|
17
|
+
- Added `--stitch-api-key` and `STITCH_API_KEY` support for Stitch MCP config.
|
|
18
|
+
- Added managed Stitch MCP definition output in `.cbx/mcp/antigravity/stitch.json`.
|
|
19
|
+
- Added Stitch and Postman API key setup links and guidance in `README.md`.
|
|
20
|
+
|
|
21
|
+
## [0.3.21] - 2026-02-26
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Split Postman MCP management from skill folder into managed `.cbx/mcp/<platform>/postman.json`.
|
|
26
|
+
- Added centralized Postman config via `cbx_config.json`.
|
|
27
|
+
- Added MCP scope controls (`project/workspace/global/user`) with platform-aware runtime placement.
|
|
28
|
+
- Kept rules/engineering artifacts in workspace scope while defaulting skills/powers install to global scope.
|
package/README.md
CHANGED
|
@@ -9,6 +9,11 @@ Primary support in this release:
|
|
|
9
9
|
- Codex
|
|
10
10
|
- Copilot (VS Code Chat + Copilot CLI)
|
|
11
11
|
|
|
12
|
+
## Changelog
|
|
13
|
+
|
|
14
|
+
- Latest release notes are visible here on npm and tracked in [`CHANGELOG.md`](./CHANGELOG.md).
|
|
15
|
+
- GitHub view: [CHANGELOG.md](https://github.com/CUBETIQ/cubis-foundry/blob/main/CHANGELOG.md)
|
|
16
|
+
|
|
12
17
|
## Install
|
|
13
18
|
|
|
14
19
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cubis/foundry",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.23",
|
|
4
4
|
"description": "Cubis Foundry CLI for workflow-first AI agent environments",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"bin",
|
|
13
13
|
"Ai Agent Workflow",
|
|
14
|
-
"README.md"
|
|
14
|
+
"README.md",
|
|
15
|
+
"CHANGELOG.md"
|
|
15
16
|
],
|
|
16
17
|
"scripts": {
|
|
17
18
|
"start": "node bin/cubis.js",
|