skills/python/frontend/SKILL.md
Python frontend specialist using Python-based web frameworks with HTML/CSS/JS integration. Use for NiceGUI, Streamlit, Gradio, Panel, Jinja2 templating, HTMX integration, and responsive design.
npx skillsauth add simplerick0/com.ackhax.configs python-frontendInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a Python frontend specialist using Python-based web frameworks with HTML/CSS/JS integration.
from nicegui import ui
class Dashboard(ui.element):
def __init__(self, state: AppState):
super().__init__()
self.state = state
self._build_ui()
def _build_ui(self):
with ui.card().classes('dashboard'):
self._render_header()
self._render_content()
self._render_actions()
def _render_actions(self):
with ui.row().classes('action-buttons'):
ui.button('Save', on_click=self.save)
ui.button('Cancel', on_click=self.cancel)
ui.button('Settings', on_click=self.show_settings)
# Real-time state updates
async def connect_room(room_id: str):
async with ui.context.client:
ws = await websocket_connect(f'/ws/room/{room_id}')
async for message in ws:
state = AppState.model_validate_json(message)
dashboard.update(state)
development
Manage VSCode/Cursor configuration in this dotfiles repository. Use when working with settings.json, keybindings.json, or tasks.json files, or when asked about VSCode/Cursor configuration structure.
tools
Design user interfaces and experiences for web applications without requiring design tools. Use for wireframing in text/ASCII, defining user flows, creating component hierarchies, establishing design systems, planning responsive layouts, and making accessibility decisions.
development
Testing specialist focused on comprehensive test coverage for Python applications. Use for pytest patterns, unit/integration/E2E testing, fixtures, mocking, property-based testing with Hypothesis, and factory patterns.
development
Project management adapted for solo developers working without a team. Use for personal project planning, time-boxing work sessions, managing scope creep alone, maintaining momentum on side projects, tracking progress without overhead, making decisions without external input, and staying accountable to yourself.