Retire frontend/cordova in favour of pluggy-cordova skill#51
Open
Gabrielpanga wants to merge 1 commit into
Open
Retire frontend/cordova in favour of pluggy-cordova skill#51Gabrielpanga wants to merge 1 commit into
Gabrielpanga wants to merge 1 commit into
Conversation
Replaces the runnable Cordova quickstart with a stub README that points at the new pluggy-cordova skill in pluggyai/agent-skills (see pluggyai/agent-skills PR #1). Removed - frontend/cordova/.gitignore - frontend/cordova/.npmrc - frontend/cordova/config.xml - frontend/cordova/package.json - frontend/cordova/package-lock.json - frontend/cordova/www/{index.html, css/, img/, js/} Kept (rewritten) - frontend/cordova/README.md Brief notice that this is no longer maintained as a runnable project, with a one-command install of the skill and links to the still-maintained backend examples that pair with it. Why - The example wasn't really running anywhere on its own — it was a Hello-World wrapper around the Connect Widget. The Cordova / cordova-ios pinning aged fast and pulled in transitive CVEs (lodash, @xmldom/xmldom, braces, minimatch, …). - A skill is version-agnostic. Users bring their own up-to-date Cordova project and the skill teaches the WebView config + widget init + token flow on top of it. Root README updated: - Cordova row removed from the Frontend examples table. - New "Integration patterns shipped as agent skills" subsection pointing at the skill, with the `npx skills add` snippet.
cernadasjuan
approved these changes
May 26, 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
Replaces the runnable `frontend/cordova` quickstart with a stub README pointing at the new `pluggy-cordova` skill in `pluggyai/agent-skills` (see agent-skills PR #1).
Why
The Cordova quickstart wasn't really running anywhere on its own — it was a Hello-World wrapper around the Connect Widget that pinned `cordova-ios@7.0.0` and a CDN widget version. As Cordova plugins aged, the dep tree dragged in a long tail of transitive CVEs (`lodash`, `@xmldom/xmldom`, `braces`, `minimatch`, …) for what is, at runtime, three short JS snippets.
A skill is version-agnostic. Users bring their own up-to-date Cordova project and the skill teaches the WebView config + widget initialization + token flow on top of it.
Diff
Removed
Kept (rewritten)
Root `README.md`
Follow-up
If this lands well, the same pattern is the candidate for:
Each one as its own PR.