@cubis/foundry 0.3.49 → 0.3.51
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/README.md +5 -0
- package/bin/cubis.js +470 -107
- package/mcp/Dockerfile +1 -0
- package/mcp/dist/index.js +277 -49
- package/mcp/src/index.ts +37 -15
- package/mcp/src/server.ts +17 -12
- package/mcp/src/telemetry/tokenBudget.ts +8 -2
- package/mcp/src/tools/skillBrowseCategory.ts +6 -1
- package/mcp/src/tools/skillBudgetReport.ts +18 -5
- package/mcp/src/tools/skillGet.ts +12 -0
- package/mcp/src/tools/skillListCategories.ts +4 -0
- package/mcp/src/tools/skillSearch.ts +6 -1
- package/mcp/src/transports/streamableHttp.ts +247 -4
- package/mcp/src/utils/logger.ts +5 -1
- package/mcp/src/vault/manifest.ts +22 -5
- package/mcp/src/vault/scanner.ts +16 -3
- package/package.json +1 -1
- package/workflows/skills/postman/SKILL.md +67 -4
- package/workflows/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +10 -1
- package/workflows/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +10 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/AGENTS.md +10 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +10 -1
- package/workflows/workflows/agent-environment-setup/platforms/copilot/skills/postman/SKILL.md +67 -4
- package/workflows/workflows/agent-environment-setup/platforms/cursor/skills/postman/SKILL.md +67 -4
- package/workflows/workflows/agent-environment-setup/platforms/windsurf/skills/postman/SKILL.md +67 -4
package/README.md
CHANGED
|
@@ -198,6 +198,11 @@ If active Postman env var (for example `POSTMAN_API_KEY_DEFAULT`) is available a
|
|
|
198
198
|
- direct Stitch MCP server where applicable (`StitchMCP` for Antigravity)
|
|
199
199
|
- local Foundry MCP command server (`cubis-foundry` via `cbx mcp serve --transport stdio --scope auto`)
|
|
200
200
|
|
|
201
|
+
`--postman` also installs the `postman` skill. Managed platform rules then treat Postman intent as skill-first:
|
|
202
|
+
- run `skill_search "postman"`
|
|
203
|
+
- load `skill_get "postman"` before workflow/agent routing
|
|
204
|
+
- prefer Postman MCP tools over Newman/CLI fallback unless explicitly requested
|
|
205
|
+
|
|
201
206
|
To opt out of Foundry MCP registration during install:
|
|
202
207
|
|
|
203
208
|
```bash
|