@cubis/foundry 0.3.28 → 0.3.29
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/Ai Agent Workflow/powers/postman/POWER.md +2 -2
- package/Ai Agent Workflow/powers/postman/SKILL.md +2 -2
- package/Ai Agent Workflow/skills/postman/POWER.md +2 -2
- package/Ai Agent Workflow/skills/postman/SKILL.md +2 -2
- package/CHANGELOG.md +26 -1
- package/README.md +241 -399
- package/bin/cubis.js +876 -107
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ Before proceeding, validate that the user has completed the following steps befo
|
|
|
12
12
|
|
|
13
13
|
## Step 1
|
|
14
14
|
|
|
15
|
-
Generate and maintain `cbx_config.json` as the
|
|
15
|
+
Generate and maintain `cbx_config.json` as the only Postman configuration source (workspace: `./cbx_config.json`, global: `~/.cbx/cbx_config.json`). Use named profiles in `postman.profiles` and choose `postman.activeProfileName`. Use env-first authentication by default: keep `apiKey` as `null`, set `apiKeyEnvVar` to `POSTMAN_API_KEY` (or another profile alias), and read the key from environment variables. Only store `apiKey` inline when the user explicitly requests file-based key storage. Keep workspace selection in the active profile `workspaceId` (`null` when unknown).
|
|
16
16
|
|
|
17
17
|
## Step 2
|
|
18
18
|
|
|
@@ -68,7 +68,7 @@ Create a hook that runs anytime the source code or configuration file has been c
|
|
|
68
68
|
|
|
69
69
|
Automate API testing and collection management with Postman. Create workspaces, collections, environments, and run tests programmatically.
|
|
70
70
|
|
|
71
|
-
**Authentication**: Env-first via `cbx_config.json` +
|
|
71
|
+
**Authentication**: Env-first via `cbx_config.json` + profile env alias (default `POSTMAN_API_KEY`); inline `apiKey` is optional.
|
|
72
72
|
|
|
73
73
|
## Available MCP Servers
|
|
74
74
|
|
|
@@ -10,7 +10,7 @@ Before proceeding, validate that the user has completed the following steps befo
|
|
|
10
10
|
|
|
11
11
|
## Step 1
|
|
12
12
|
|
|
13
|
-
Generate and maintain `cbx_config.json` as the
|
|
13
|
+
Generate and maintain `cbx_config.json` as the only Postman configuration source (workspace: `./cbx_config.json`, global: `~/.cbx/cbx_config.json`). Use named profiles in `postman.profiles` and choose `postman.activeProfileName`. Use env-first authentication by default: keep `apiKey` as `null`, set `apiKeyEnvVar` to `POSTMAN_API_KEY` (or another profile alias), and read the key from environment variables. Only store `apiKey` inline when the user explicitly requests file-based key storage. Keep workspace selection in the active profile `workspaceId` (`null` when unknown).
|
|
14
14
|
|
|
15
15
|
## Step 2
|
|
16
16
|
|
|
@@ -66,7 +66,7 @@ Create a hook that runs anytime the source code or configuration file has been c
|
|
|
66
66
|
|
|
67
67
|
Automate API testing and collection management with Postman. Create workspaces, collections, environments, and run tests programmatically.
|
|
68
68
|
|
|
69
|
-
**Authentication**: Env-first via `cbx_config.json` +
|
|
69
|
+
**Authentication**: Env-first via `cbx_config.json` + profile env alias (default `POSTMAN_API_KEY`); inline `apiKey` is optional.
|
|
70
70
|
|
|
71
71
|
## Available MCP Servers
|
|
72
72
|
|
|
@@ -12,7 +12,7 @@ Before proceeding, validate that the user has completed the following steps befo
|
|
|
12
12
|
|
|
13
13
|
## Step 1
|
|
14
14
|
|
|
15
|
-
Generate and maintain `cbx_config.json` as the
|
|
15
|
+
Generate and maintain `cbx_config.json` as the only Postman configuration source (workspace: `./cbx_config.json`, global: `~/.cbx/cbx_config.json`). Use named profiles in `postman.profiles` and choose `postman.activeProfileName`. Use env-first authentication by default: keep `apiKey` as `null`, set `apiKeyEnvVar` to `POSTMAN_API_KEY` (or another profile alias), and read the key from environment variables. Only store `apiKey` inline when the user explicitly requests file-based key storage. Keep workspace selection in the active profile `workspaceId` (`null` when unknown).
|
|
16
16
|
|
|
17
17
|
## Step 2
|
|
18
18
|
|
|
@@ -68,7 +68,7 @@ Create a hook that runs anytime the source code or configuration file has been c
|
|
|
68
68
|
|
|
69
69
|
Automate API testing and collection management with Postman. Create workspaces, collections, environments, and run tests programmatically.
|
|
70
70
|
|
|
71
|
-
**Authentication**: Env-first via `cbx_config.json` +
|
|
71
|
+
**Authentication**: Env-first via `cbx_config.json` + profile env alias (default `POSTMAN_API_KEY`); inline `apiKey` is optional.
|
|
72
72
|
|
|
73
73
|
## Available MCP Servers
|
|
74
74
|
|
|
@@ -10,7 +10,7 @@ Before proceeding, validate that the user has completed the following steps befo
|
|
|
10
10
|
|
|
11
11
|
## Step 1
|
|
12
12
|
|
|
13
|
-
Generate and maintain `cbx_config.json` as the
|
|
13
|
+
Generate and maintain `cbx_config.json` as the only Postman configuration source (workspace: `./cbx_config.json`, global: `~/.cbx/cbx_config.json`). Use named profiles in `postman.profiles` and choose `postman.activeProfileName`. Use env-first authentication by default: keep `apiKey` as `null`, set `apiKeyEnvVar` to `POSTMAN_API_KEY` (or another profile alias), and read the key from environment variables. Only store `apiKey` inline when the user explicitly requests file-based key storage. Keep workspace selection in the active profile `workspaceId` (`null` when unknown).
|
|
14
14
|
|
|
15
15
|
## Step 2
|
|
16
16
|
|
|
@@ -66,7 +66,7 @@ Create a hook that runs anytime the source code or configuration file has been c
|
|
|
66
66
|
|
|
67
67
|
Automate API testing and collection management with Postman. Create workspaces, collections, environments, and run tests programmatically.
|
|
68
68
|
|
|
69
|
-
**Authentication**: Env-first via `cbx_config.json` +
|
|
69
|
+
**Authentication**: Env-first via `cbx_config.json` + profile env alias (default `POSTMAN_API_KEY`); inline `apiKey` is optional.
|
|
70
70
|
|
|
71
71
|
## Available MCP Servers
|
|
72
72
|
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project are documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.3.29] - 2026-02-27
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Switched credential/config source to `cbx_config.json` only for Postman and Stitch runtime selection.
|
|
10
|
+
- Added profile-based credential model for Postman/Stitch (`profiles[]` + `activeProfileName`) with compatibility mirrors.
|
|
11
|
+
- Updated `cbx workflows config --show` to include computed `status` with stored source vs effective source and active profile/env alias context.
|
|
12
|
+
- Changed default skill install resolution to indexed top-level skills (`skills_index.json` + resolved skill dirs), instead of curated manifest subset.
|
|
13
|
+
- Added automatic nested duplicate skill cleanup during install (for example duplicate skill packs nested under `postman/*`).
|
|
14
|
+
- Rewrote README into a full operational guide (quickstarts, scopes, credential flows, MCP placement, troubleshooting, migration).
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Added `cbx workflows config keys` profile-management commands:
|
|
19
|
+
- `list`
|
|
20
|
+
- `add`
|
|
21
|
+
- `use`
|
|
22
|
+
- `remove`
|
|
23
|
+
- Added `cbx skills config keys` compatibility alias.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Removed legacy Postman fallback file references from runtime/docs and enforce migration to `cbx_config.json`.
|
|
28
|
+
- Updated validation/smoke scripts to align with global-skill default install model and profile-based config behavior.
|
|
29
|
+
|
|
5
30
|
## [0.3.28] - 2026-02-27
|
|
6
31
|
|
|
7
32
|
### Fixed
|
|
@@ -13,7 +38,7 @@ All notable changes to this project are documented in this file.
|
|
|
13
38
|
### Changed
|
|
14
39
|
|
|
15
40
|
- Updated Postman skill/power guidance to use `cbx_config.json` as the default config source with `POSTMAN_API_KEY` env-first auth.
|
|
16
|
-
- Added explicit instruction to avoid referencing
|
|
41
|
+
- Added explicit instruction to avoid referencing legacy Postman fallback configs in normal responses when `cbx_config.json` exists.
|
|
17
42
|
|
|
18
43
|
## [0.3.26] - 2026-02-26
|
|
19
44
|
|