chore(mule-development): add generate-connectivity-knowledge skill, bump to 1.3.0#144
Merged
bpolat1 merged 2 commits intoJun 23, 2026
Conversation
de84803 to
034fb74
Compare
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. Minor bump (1.3.0 -> 1.4.0) per semver for a new skill addition.
034fb74 to
bbc6c1b
Compare
bpolat1
approved these changes
Jun 23, 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.2.0→1.3.0(minor bump for a new skill, per semver) and 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-jtbd,validate-skillsPASSmake test-portal— pytest + jest PASSmake validate-all-governed— PASS (run via pre-push hook on this branch)python3 scripts/build/validate_jtbd.py skills/mule-development/generate-connectivity-knowledge/SKILL.md .— PASSEDNotes for reviewers
mulesoft/mulesoft-dxis currently read-only. Content is identical to chore(mule-development): add generate-connectivity-knowledge skill, bump to 1.0.5 #111's intent, with the two review points from chore(mule-development): add generate-connectivity-knowledge skill, bump to 1.0.5 #111 addressed:1.0.5(a downgrade from master's1.2.0) to a proper minor bump1.3.0, with theCHANGELOGentry retitled accordingly. Rebased onto currentmaster, so master's*/templates/**filesentry and the1.1.1/1.1.0changelog entries are preserved.matiasjavier.lopez@mulesoft.comand SSH-signed (no longer the EMU identity).master).Out of scope
build-mule-integrationStep 3a to invoke the new skill — ships in a follow-up PR.GUS
@W-22567718