Auto Refresh — community Auto Refresh, LB_Hospitality, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

About this Skill

Perfect for Market Analysis Agents needing real-time data updates with engaging 3D animations. Automatically refreshes stale market research data when a user logs in, with an engaging 3D animated progress overlay to keep users informed while ...

ricardocidale ricardocidale
[0]
[0]
Updated: 3/6/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
51
Canonical Locale
en
Detected Body Locale
en

Perfect for Market Analysis Agents needing real-time data updates with engaging 3D animations. Automatically refreshes stale market research data when a user logs in, with an engaging 3D animated progress overlay to keep users informed while ...

Core Value

Empowers agents to automatically refresh stale market research data using sessionStorage, providing an enhanced user experience with 3D animated progress overlays, leveraging JavaScript and browser session management protocols.

Ideal Agent Persona

Perfect for Market Analysis Agents needing real-time data updates with engaging 3D animations.

Capabilities Granted for Auto Refresh

Automating market research updates on user login
Refreshing data with engaging 3D animations
Preventing data staleness with sessionStorage triggers

! Prerequisites & Limits

  • Requires browser session storage access
  • Triggers only once per browser session after successful login
  • Clears on browser tab close

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is Auto Refresh?

Perfect for Market Analysis Agents needing real-time data updates with engaging 3D animations. Automatically refreshes stale market research data when a user logs in, with an engaging 3D animated progress overlay to keep users informed while ...

How do I install Auto Refresh?

Run the command: npx killer-skills add ricardocidale/LB_Hospitality/Auto Refresh. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for Auto Refresh?

Key use cases include: Automating market research updates on user login, Refreshing data with engaging 3D animations, Preventing data staleness with sessionStorage triggers.

Which IDEs are compatible with Auto Refresh?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for Auto Refresh?

Requires browser session storage access. Triggers only once per browser session after successful login. Clears on browser tab close.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add ricardocidale/LB_Hospitality/Auto Refresh. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use Auto Refresh immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

Auto Refresh

Install Auto Refresh, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Auto-Refresh Market Research on Login

Purpose

Automatically refreshes stale market research data when a user logs in, with an engaging 3D animated progress overlay to keep users informed while data is being updated.

Behavior

Trigger

  • Fires once per browser session after successful login
  • Uses sessionStorage.setItem('research_refresh_done', Date.now().toString()) to prevent re-triggering on navigation
  • Clears on browser tab close (session storage behavior)

Age-Gating

  • Before refreshing, checks each property's research data age via GET /api/market-research/:type/:entityId
  • Only regenerates research older than 7 days (RESEARCH_MAX_AGE_DAYS = 7)
  • Properties with fresh research are skipped, saving API calls and time

Refresh Flow

  1. User logs in → App.tsx detects authenticated state + no session flag
  2. ResearchRefreshOverlay mounts and fetches property list
  3. For each property, checks research freshness
  4. Stale properties trigger POST /api/market-research/property/:id/generate
  5. Progress overlay shows current property name and completion percentage
  6. On completion, overlay fades out and session flag is set

3D Animated Overlay

Component

client/src/components/ResearchRefreshOverlay.tsx

Technology

  • Three.js via @react-three/fiber (React renderer)
  • @react-three/drei (helpers: Float, MeshDistortMaterial)
  • framer-motion (fade-in/fade-out transitions)

Visual Elements

ElementDescription
GlowingSphereCentral pulsing sphere with distort material, represents the AI "brain" processing
DataOrbSmall orbiting spheres that appear as each property completes, floating upward
WobbleRingRotating torus ring around the central sphere, indicates active processing
Progress TextCurrent property name + percentage, overlaid on the 3D scene
BackgroundSemi-transparent dark overlay (bg-black/80) with blur backdrop

Performance

  • Uses <Canvas> with dpr={[1, 1.5]} for performance on lower-end devices
  • Post-processing effects (bloom) disabled by default for stability
  • Scene elements use useFrame for smooth 60fps animation

Integration in App.tsx

tsx
1import { ResearchRefreshOverlay } from "@/components/ResearchRefreshOverlay"; 2 3function App() { 4 const { isAuthenticated } = useAuth(); 5 const [showRefresh, setShowRefresh] = useState(false); 6 7 useEffect(() => { 8 if (isAuthenticated && !sessionStorage.getItem('research_refresh_done')) { 9 setShowRefresh(true); 10 } 11 }, [isAuthenticated]); 12 13 const handleResearchComplete = useCallback(() => { 14 sessionStorage.setItem('research_refresh_done', Date.now().toString()); 15 setShowRefresh(false); 16 }, []); 17 18 return ( 19 <> 20 <Router>...</Router> 21 {showRefresh && <ResearchRefreshOverlay onComplete={handleResearchComplete} />} 22 </> 23 ); 24}

Dependencies

  • three — Core 3D engine
  • @react-three/fiber — React renderer for Three.js
  • @react-three/drei — Helper components (Float, MeshDistortMaterial)
  • framer-motion — Animation library for overlay transitions
  • @react-three/postprocessing — Optional bloom/glow effects

API Endpoints Used

EndpointMethodPurpose
/api/propertiesGETFetch list of properties to check
/api/market-research/property/:idGETCheck research data age
/api/market-research/property/:id/generatePOSTRegenerate stale research

Related Skills

Looking for an alternative to Auto Refresh or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer