Agent skill
create-streamdeck-page
Create, iterate, and deploy dynamic Stream Deck button pages. Design context-aware layouts that auto-switch based on active window, voice mode, or running skills. Evaluate layouts against ground truth, self-correct, and store winners as memory-backed templates with taxonomy tags. Triggers: create streamdeck page, design page layout, optimize deck layout.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/create-streamdeck-page
SKILL.md
create-streamdeck-page
Create, iterate, and deploy dynamic Stream Deck button pages.
Two Modes
A) Create Mode — Design and Deploy
# Generate layout from workflows
run.sh create --context browser --workflows "compose,search,reply"
# Deploy from existing template
run.sh create --from-template browser_nav
# Interactive guided setup
run.sh create --interactive
# Push template to hardware
run.sh deploy --template browser_nav --page 5
B) Lab Mode — Iterate and Optimize
# Benchmark context-match accuracy
run.sh evaluate --template browser_nav --ground-truth contexts.json
# Self-correction loop (Design -> Evaluate -> Correct)
run.sh optimize --template browser_nav --rounds 3
# View iteration history
run.sh history --template browser_nav
Self-Correction Loop (Lab Mode)
- Design: Generate page layout for a context
- Evaluate: Score against ground truth (context-match %, button coverage, workflow completeness)
- Self-correct: If score < threshold, feed errors back
- Store: Winners saved as templates with taxonomy tags
- Deploy: Push winning layout to live Stream Deck
Integration
- Shells out to
streamdeck page create/reload/save-templateCLI commands - Templates stored in
~/workspace/streamdeck/config/page_templates/ - Memory integration via
/memoryskill for cross-session recall - Taxonomy tags enable graph traversal queries
Ground Truth Format
ground_truth/contexts.json:
[
{
"context": {"app_class": "google-chrome", "window_title": "Gmail"},
"expected_buttons": ["compose", "search", "reply", "archive", "back"]
}
]
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?