
Htmx Expert
- 52 installs
- 36 repo stars
- Updated July 14, 2026
- oimiragieo/agent-studio
Helps with ai & agent building tasks.
About
htmx-expert is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- htmx-expert
- AI & Agent Building
- AI-coding skill
Htmx Expert by the numbers
- 52 all-time installs (skills.sh)
- Ranked #7,142 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oimiragieo/agent-studio --skill htmx-expertAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 52 |
|---|---|
| repo stars | ★ 36 |
| Last updated | July 14, 2026 |
| Repository | oimiragieo/agent-studio ↗ |
What it does
Helps with ai & agent building tasks.
Files
Htmx Expert
<identity> You are a htmx expert with deep knowledge of htmx expert including hypermedia patterns, django/flask integration. You help developers write better code by applying established guidelines and best practices. </identity>
<capabilities>
- Review code for best practice compliance
- Suggest improvements based on domain patterns
- Explain why certain approaches are preferred
- Help refactor code to meet standards
- Provide architecture guidance
</capabilities>
<instructions>
htmx expert
htmx additional instructions
When reviewing or writing code, apply these guidelines:
- Use semantic HTML5 elements
- Implement proper CSRF protection
- Utilize HTMX extensions when needed
- Use hx-boost for full page navigation
- Implement proper error handling
- Follow progressive enhancement principles
- Use server-side templating (e.g., Jinja2, Handlebars)
htmx and django best practices general
When reviewing or writing code, apply these guidelines:
- Use Django's template system with HTMX attributes
- Implement proper CSRF protection with Django's built-in features
- Utilize Django's HttpResponse for HTMX-specific responses
- Use Django's form validation for HTMX requests
- Implement proper error handling and logging
- Use Django's template tags with HTMX attributes
htmx and flask best practices
When reviewing or writing code, apply these guidelines:
- Use Flask's render_template for server-side rendering
- Implement Flask-WTF for form handling
- Utilize Flask's url_for for generating URLs
- Use Flask's jsonify for JSON responses
- Implement Flask-SQLAlchemy for database operations
- Utilize Flask's Blueprint for modular applications
htmx and go best practices
When reviewing or writing code, apply these guidelines:
- Use html/template for server-side rendering
- Implement http.HandlerFunc for handling HTMX requests
- Utilize gorilla/mux for routing if needed
- Use encoding/json for JSON responses
- Implement proper error handling and logging
- Utilize context for request cancellation and timeouts
htmx best practices general
When reviewing or writing code, apply these guidelines:
- Use hx-get for GET requests
- Implement hx-post for POST requests
- Utilize hx-trigger for custom events
- Use hx-swap to control how content is swapped
- Implement hx-target to specify where to swap content
- Utilize hx-indicator for loading indicators
htmx folder structure
When reviewing or writing code, apply these guidelines:
- Enforce the folder structure conventions for your backend framework
- Keep HTMX partials/fragments in dedicated template directories
- Separate full-page templates from partial responses
</instructions>
<examples> Example usage:
User: "Review this code for htmx best practices"
Agent: [Analyzes code against consolidated guidelines and provides specific feedback]</examples>
Consolidated Skills
This expert skill consolidates 1 individual skills:
- htmx-expert
Memory Protocol (MANDATORY)
Before starting:
cat .claude/context/memory/learnings.mdAfter completing: Record any new patterns or exceptions discovered.
ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
Invoke the htmx-expert skill and follow it exactly as presented to you
'use strict';
/**
* Post-execute hook for htmx-expert
* Auto-generated by enterprise-bundle-scaffolder
*
* Records metrics after skill execution.
*/
function postExecute(_context) {
// Record execution metrics
return { ok: true, skill: 'htmx-expert' };
}
module.exports = { postExecute };
'use strict';
/**
* Pre-execute hook for htmx-expert
* Auto-generated by enterprise-bundle-scaffolder
*
* Validates inputs before skill execution.
*/
function preExecute(context) {
// Validate skill invocation context
if (!context || typeof context !== 'object') {
return { allow: true, message: 'htmx-expert: no context to validate' };
}
return { allow: true };
}
module.exports = { preExecute };
htmx-expert Research Requirements
Generated: 2026-02-28
Skill Description
HTMX expert including hypermedia patterns, Django/Flask integration
Research Areas
- Current best practices for htmx-expert
- Industry standards and tooling
- Integration patterns
Source References
- To be populated by skill-updater research phase
htmx-expert Rules
Purpose
HTMX expert including hypermedia patterns, Django/Flask integration
Best Practices
- Follow domain-specific conventions
- Apply patterns consistently
- Prioritize type safety and testing
Integration Points
See SKILL.md for complete documentation.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "htmx-expertInput",
"description": "Input schema for HTMX expert including hypermedia patterns, Django/Flask integration",
"type": "object",
"additionalProperties": true,
"properties": {
"target": {
"type": "string",
"description": "Target file or path for the skill to operate on"
},
"options": {
"type": "object",
"description": "Additional options for skill execution",
"additionalProperties": true
}
}
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "htmx-expertOutput",
"type": "object",
"additionalProperties": true,
"properties": {
"ok": {
"type": "boolean"
},
"summary": {
"type": "string"
}
}
}
#!/usr/bin/env node
'use strict';
/**
* htmx-expert - Enterprise Skill Script
* Auto-generated by enterprise-bundle-scaffolder
*/
const fs = require('fs');
const path = require('path');
// Parse arguments
const args = process.argv.slice(2);
const options = {};
for (let i = 0; i < args.length; i++) {
if (args[i].startsWith('--')) {
const key = args[i].slice(2);
const value = args[i + 1] && !args[i + 1].startsWith('--') ? args[++i] : true;
options[key] = value;
}
}
if (options.help) {
console.log(`
htmx-expert - Enterprise Skill
Usage:
node main.cjs --check <file> Check a file against guidelines
node main.cjs --list List all guidelines
node main.cjs --help Show this help
Description:
HTMX expert including hypermedia patterns, Django/Flask integration
`);
process.exit(0);
}
if (options.list) {
console.log('Guidelines for htmx-expert:');
console.log('See SKILL.md for full guidelines');
process.exit(0);
}
console.log('htmx-expert skill loaded. Use with Claude for code review.');
htmx-expert Implementation Template
Goal
- Define target outcome and acceptance criteria.
TDD
1. Red 2. Green 3. Refactor
Verification
- lint
- format
- targeted tests