chore(mule-development): add generate-connectivity-knowledge skill, bump to 1.0.5#111
Open
matiasjlopez wants to merge 2 commits into
Open
chore(mule-development): add generate-connectivity-knowledge skill, bump to 1.0.5#111matiasjlopez wants to merge 2 commits into
matiasjlopez wants to merge 2 commits into
Conversation
added 2 commits
May 20, 2026 11:24
Adds a 14-step skill that produces connectivity knowledge for any SaaS API: research → OpenAPI 3.0 spec → live validation with auto-fix. Output is a self-contained connectivity-schema/<apiName>/ folder (api-reference.md + <apiName>.yaml + config.properties) suitable for any downstream consumer that needs API metadata. Wiring into build-mule-integration ships in a follow-up PR.
…ctivity-knowledge Cuts the release for the new generate-connectivity-knowledge skill added in the previous commit. No code changes — version + lockfile + CHANGELOG only.
leandrogilcarrano
approved these changes
Jun 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
generate-connectivity-knowledge— a new 14-step skill that produces connectivity knowledge for a SaaS API when no dedicated Mule connector exists. Researches the API from user-defined use cases and documentation, produces an OpenAPI 3.0 spec, validates every operation against the live service with auto-fix, and writes a self-containedconnectivity-schema/<apiName>/folder (api-reference.md+<apiName>.yaml+config.properties).build-mule-integration(Step 3a) so HTTP-Connector flows inherit the same auth, pagination, and entity awareness a dedicated connector would carry.@salesforce/mulesoft-vibes-skillsfrom1.0.4→1.0.5and add the correspondingCHANGELOG.mdentry.What's in the skill
generate-connectivity-knowledge/SKILL.mdgenerate-connectivity-knowledge/references/examples.mdThe skill includes MANDATORY credential-security rules: never read, echo, log, or reason about credential values from
config.properties. Verification is viagrep -c '^KEY='and injection via inline shell substitution; the values never enter the agent's transcript.Test plan
make pre-commit-hook—validate-descriptions,validate-mcp-server,validate-xorigin,validate-jtbdPASSmake test-portal— pytest + jest PASSmake validate-all-governed— 35 passed, 0 failed, 1 skipped (arm-monitoring-query, expected)python3 scripts/build/validate_jtbd.py skills/mule-development/generate-connectivity-knowledge/SKILL.md .— PASSEDmule-dx-agent-evaluation;validate_instructions.py+eval_engine validatePASS for all three. Live execution against the bundled extension is blocked by a port-wiring mismatch betweenagentic-chat-1.0.17(hardcodedPORT = 9876) and the eval runner (writes dynamicTEST_SERVER_PORT); handoff to Berkay Polat / Yanqi Luo for execution against their build is the documented next step.Out of scope
build-mule-integrationStep 3a to invoke the new skill — ships in a follow-up PR.mule-dx-agent-evaluation— defer until Berkay/Yanqi review.GUS
@W-22567718