You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My contribution adds a new instruction, prompt, agent, skill, workflow, or canvas extension file in the correct directory.
The file follows the required naming convention.
The content is clearly structured and follows the example format.
I have tested my instructions, prompt, agent, skill, workflow, or canvas extension with GitHub Copilot.
I have run npm start and verified that README.md is up to date.
I am targeting the main branch for this pull request.
Description
Adds a focused Agent Skill for publishing an already-completed local HTML presentation with
Slidesfly, verifying the returned reader URL, and reporting the visibility and local-ownership
boundary.
This is intentionally narrower than the existing publish-to-pages skill. That skill remains the
right choice for repository-backed static hosting and general web content. This contribution is for
users who explicitly choose Slidesfly's presentation reader workflow after the HTML deck already
exists.
Affiliation disclosure: I maintain Slidesfly. Slidesfly is a hosted service with free and paid
usage. The Skill discloses that relationship in its opening section, uses a neutral technical tone,
links only to the necessary quickstart/security/source references, and names GitHub Pages as the
alternative when it better fits the request.
Safety behavior includes:
no upload from a how-to question or other non-authorizing prompt;
a local-only, mode-aware preflight for the exact artifact, anonymous size limit, and external
scripts;
the complete dependency-free Slidesfly CLI 0.1.3 bundled with the Skill, so users get the same
publish, auth, claim, list, update, version, restore, visibility, protection, and delete behavior
without a remote installer or a second handwritten API client;
no secret, API-key, config, or claim-token disclosure;
no automatic software installation, login, visibility change, claim, or in-place update;
one retry at most for transient failures and no retry after content-policy rejection.
The bundled runner is generated from the official CLI source in rare/slidesfly#125, mirrored in rare/slidesfly-integrations#16, and pinned
at SHA-256 cd94667fc714e998d87fd47e1ad94bd4d44e23a0b0f0fb70671df1a22365b699.
Type of Contribution
New instruction file.
New prompt file.
New agent file.
New plugin.
New skill file.
New agentic workflow.
New canvas extension.
Update to existing instruction, prompt, agent, plugin, skill, workflow, or canvas extension.
Other (please specify):
Validation
npm run skill:validate — all 396 Skill folders valid.
npm start — generated docs/README.skills.md; subsequent build is idempotent.
GitHub Copilot CLI 1.0.77 discovered the Skill as a project Skill.
Bundled runner reports 0.1.3, exposes the full CLI help, and matches the generated source artifact
byte-for-byte at the pinned SHA-256.
node --test skills/publish-html-deck-with-slidesfly/scripts/preflight.test.mjs — 4 passed,
including anonymous size enforcement and owned-mode handling.
No API key, claim token, real customer artifact, or new deck upload was used in validation.
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and
will be licensed under the MIT License.
Addressed the soft-gate remote-shell-execution finding in aad9850. The Skill no longer contains or executes curl | sh; when the CLI is missing or outdated it now stops and directs the user to complete the official Quickstart independently. Re-ran npm run skill:validate, npm start, and the 39 upstream Node tests successfully.
✓ [spec-compliance] All 1 skill(s) are spec-compliant.
ℹ️
✓ spec-compliance: All spec checks passed.
ℹ️
✓ [valid-refs] All file references across 1 skill(s) are valid.
ℹ️
✓ valid-refs: All file references resolve to existing files within the skill directory.
ℹ️
1 skill(s) linted, 1 passed
Full linter output
### Linting skills/publish-html-deck-with-slidesfly
✅ publish-html-deck-with-slidesfly (2/2 checks passed)
✓ [spec-compliance] All 1 skill(s) are spec-compliant.
✓ spec-compliance: All spec checks passed.
✓ [valid-refs] All file references across 1 skill(s) are valid.
✓ valid-refs: All file references resolve to existing files within the skill directory.
1 skill(s) linted, 1 passed
Updated the submission to use the complete, dependency-free Slidesfly CLI bundle instead of the earlier PATH dependency or a handwritten anonymous-only publisher. The Skill now ships runner 0.1.3 (SHA-256 cd94667fc714e998d87fd47e1ad94bd4d44e23a0b0f0fb70671df1a22365b699), preserves full CLI command/config/JSON compatibility, and keeps a separate local-only mode-aware preflight. Source and parity guards are in rare/slidesfly#125; the canonical public mirror update is rare/slidesfly-integrations#16. Validation: 396/396 Skill folders, 39/39 engineering tests, 4/4 preflight tests, dry-run packaging, and Copilot CLI 1.0.77 discovery. No credentials or deck uploads were used.
Source chain update: rare/slidesfly#125 has now merged as 3a06be4a370aab29093ebee21cde4fedbbe3fd74, and the canonical public mirror rare/slidesfly-integrations#16 has merged as 137ffda60a67e9a9965cad34c547ff3ecdac450d. The reviewed runner remains byte-identical at SHA-256 cd94667fc714e998d87fd47e1ad94bd4d44e23a0b0f0fb70671df1a22365b699. This upstream PR is now waiting only for maintainer review; all automated checks remain green.
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
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.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.mainbranch for this pull request.Description
Adds a focused Agent Skill for publishing an already-completed local HTML presentation with
Slidesfly, verifying the returned reader URL, and reporting the visibility and local-ownership
boundary.
This is intentionally narrower than the existing
publish-to-pagesskill. That skill remains theright choice for repository-backed static hosting and general web content. This contribution is for
users who explicitly choose Slidesfly's presentation reader workflow after the HTML deck already
exists.
Affiliation disclosure: I maintain Slidesfly. Slidesfly is a hosted service with free and paid
usage. The Skill discloses that relationship in its opening section, uses a neutral technical tone,
links only to the necessary quickstart/security/source references, and names GitHub Pages as the
alternative when it better fits the request.
Safety behavior includes:
scripts;
publish, auth, claim, list, update, version, restore, visibility, protection, and delete behavior
without a remote installer or a second handwritten API client;
The bundled runner is generated from the official CLI source in
rare/slidesfly#125, mirrored in
rare/slidesfly-integrations#16, and pinned
at SHA-256
cd94667fc714e998d87fd47e1ad94bd4d44e23a0b0f0fb70671df1a22365b699.Type of Contribution
Validation
npm run skill:validate— all 396 Skill folders valid.npm start— generateddocs/README.skills.md; subsequent build is idempotent.node --test eng/*.test.mjs— 39 passed, 0 failed.gh skill publish <isolated-skills-directory> --dry-run— passed.byte-for-byte at the pinned SHA-256.
node --test skills/publish-html-deck-with-slidesfly/scripts/preflight.test.mjs— 4 passed,including anonymous size enforcement and owned-mode handling.
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and
will be licensed under the MIT License.