capability-experiments

Featured

Experiment with model capabilities — HTML reports, embedded questionnaires, proactive research, multi-step reasoning

AI & Automation 120 stars 13 forks Updated today MIT

Install

View on GitHub

Quality Score: 89/100

Stars 20%
69
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Capability Experiments ## When to Use Use this skill when: - You need to present complex analysis in a readable format - Interactive questionnaires would improve user interaction - Exploring what's possible with next-generation model capabilities - Multi-step reasoning is needed for architectural decisions - You want to generate rich outputs (HTML, tables, interactive elements) - Standard text output isn't sufficient for the task ## What It Does Teaches techniques for leveraging advanced model capabilities — HTML generation, embedded interactive elements, proactive research, and multi-step reasoning. These patterns showcase what's newly possible with next-generation models and should be used freely. ## HTML Report Generation Advanced models can generate rich, self-contained HTML. This is useful for: ### Analysis Reports Generate structured HTML reports for complex findings: ```html <!DOCTYPE html> <html> <head><style> body { font-family: system-ui; max-width: 800px; margin: 2rem auto; } .finding { border-left: 4px solid #e74c3c; padding: 1rem; margin: 1rem 0; } .finding.fixed { border-color: #2ecc71; } .severity { font-weight: 600; font-size: 0.85rem; } </style></head> <body> <h1>Code Review: PR #288</h1> <div class="finding"> <span class="severity">🔴 Critical</span> <p>Hardcoded path in config...</p> </div> ... </body></html> ``` Use HTML reports when: - Comparing multiple options or decisions - Presenting structured analysis with severit...

Details

Author
jellydn
Repository
jellydn/my-ai-tools
Created
8 months ago
Last Updated
today
Language
Shell
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

Web & Frontend Listed

html-effectiveness

Generate self-contained, interactive HTML documents instead of markdown walls of text. When output is complex (comparisons, timelines, multi-option decisions, data tables, code reviews, diagrams), produce a single .html file that renders spatially and interactively in the browser. Zero dependencies, zero build steps. Inspired by "The Unreasonable Effectiveness of HTML" (https://thariqs.github.io/html-effectiveness/). Use when: output would be long markdown, comparing options, presenting data, reviewing code, building plans, explaining concepts, or any multi-dimensional information. Trigger: "make it visual", "interactive output", "HTML instead of markdown", complex analysis results.

12 Updated 3 days ago
tincopper
AI & Automation Listed

replace-with-capability-id

Replace with a concise description of what this capability helps the coding agent do and when it should activate.

1 Updated today
evoliainfo
AI & Automation Listed

surveying-capabilities

Survey what the local machine can actually do and bind each abstract capability a task needs to a concrete provider — an installed skill, an MCP tool, a CLI, or a subagent — before any plan is written. Use before planning multi-step work, when you need to know what tooling exists (有什么工具 / 本机能力 / 装了哪些技能 / 能不能做), or when a step fails because something is missing. Introspects your own context first at zero cost, then probes only what the task requires. Produces .superclarity/environment.md and .superclarity/<task>/capabilities.md, including an explicit list of capability gaps. Do NOT use for trivial single-step tasks, and do NOT use to enumerate the whole machine when the provider is already confirmed.

0 Updated 3 weeks ago
haxudev