feat(skills): add html-artifact-builder (PlanViewer + ResultViewer)#6
Open
brolag wants to merge 3 commits into
Open
feat(skills): add html-artifact-builder (PlanViewer + ResultViewer)#6brolag wants to merge 3 commits into
brolag wants to merge 3 commits into
Conversation
Single-file, framework-free HTML artifact generator for plans and results. - PlanViewer (pre-execution): overview, phases/tasks, decisions, risks, and an open-questions decision queue with copy-back to the chat. - ResultViewer (post-execution): summary, files changed, commands run, errors/warnings, and a next-steps checklist. Anti-cognitive-fatigue UX: progressive disclosure, chunking, status never by color alone, sticky you-are-here nav, a Needs-Attention panel, and a reading-time estimate. Decision-grade stat-hero, automatic dark mode, and reduced-motion guards. Cross-platform literal font stack (var() in font-family proved unreliable). Self-contained: no CDN, no build step, localStorage with in-memory fallback.
Invocation is now /html instead of /html-artifact-builder. Renames the directory, frontmatter name, heading, and template header comments. Aligns with the mind-forge canonical skill name. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
install.sh only copied SKILL.md per skill, which would leave html broken (it ships templates/ and references/ it reads at runtime). Copy the whole skill dir, add html to install/uninstall/test loops. 8 skills now (init, spec, craft, vet, exercise, git-save, slop-scan, html). test-install.sh: 24/24 pass. Note: collides with #5 (removes init -> 6); on merge, reconcile the skill list/count to drop init, keeping html. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
Adds
html-artifact-builder: a single-file, framework-free HTML artifact generator for agentic workflows. One skill, two templates:Why
Plans and run reports are easier to act on as a calm, scannable document than as a wall of chat text. The artifact lowers cognitive fatigue and surfaces what needs attention at a glance.
Highlights
references/principles.md): progressive disclosure, chunking, status never by color alone (WCAG 1.4.1), sticky you-are-here nav, a Needs-Attention panel, reading-time.var()infont-familyproved unreliable).localStoragewith in-memory fallback.Notes
"skills": "./skills/"— no manifest changes needed.