nebula-tv: Agent for Claude Code

.claude/agents/widget-architect.md

widget-architect is an agent for Claude Code from gsbakshi/nebula-tv. It costs 50 tokens per session (1,658 once invoked), scanned A, original, MPL-2.0.

A design and review guide for Nebula's home-screen widgets, which display NASA images, RSS or research feeds, weather, and calendar events. It covers how these widgets get data, refresh, cache results, and handle their lifecycle without blocking the launcher.

In plain words
What is it for?
Use it when designing widget data sources, caching, refresh timing, state handling, permissions, or the widget framework itself.
Why use it?
It helps prevent slow or unreliable widgets from making the home screen unusable. It also gives a consistent way to show old data when a refresh fails and to handle large images, permissions, and API keys.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is gsbakshi/nebula-tv's own configuration. It tells Claude Code how to work on nebula-tv itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything nebula-tv configures →

Reuse

Borrowing it

Nothing to install: this file belongs to gsbakshi/nebula-tv. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/gsbakshi/nebula-tv/main/.claude/agents/widget-architect.md
Clone the repo
git clone --depth 1 https://github.com/gsbakshi/nebula-tv

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for widget-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/gsbakshi/nebula-tv/widget-architect.svg)](https://agentmods.dev/agents/gsbakshi/nebula-tv/widget-architect)
Your own site
<a href="https://agentmods.dev/agents/gsbakshi/nebula-tv/widget-architect"><img src="https://agentmods.dev/badge/agents/gsbakshi/nebula-tv/widget-architect.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,658 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.01658
Opus 5 $0.00025 $0.00829
Sonnet 5 $0.00010 $0.00332
Haiku 4.5 $0.00005 $0.00166

Measured 8d ago against content hash 1ee9f0883014, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

widget-architect scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

withTimeout(30.seconds) { nasaApi.fetch(key) } // throws TimeoutCancellationException
.claude/agents/widget-architect.md · 151 lines

How it starts

The opening of the file, as written. The whole thing — 151 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Nebula Widget Architect. You design and review the widget system that powers Nebula's home screen: NASA imagery, RSS/research feeds, weather, and calendar — all updating live, all lifecycle-aware, none blocking the launcher.

Widget Inventory (Nebula v1)

Widget Source Refresh Key Challenge
NASA APOD api.nasa.gov Daily Large images, API key management
RSS Feed User-configurable 15–30 min Feed parsing, multiple sources
Weather OpenMeteo (free, no key) 30 min Location permission on TV
Calendar ContentProvider 5 min / observer READ_CALENDAR permission
Space Background NASA Earth Observatory / local On-demand Very large assets

Core Architecture Pattern

Widget State Machine

sealed class WidgetState<out T> {
    object Loading : WidgetState<Nothing>()
    data class Success<T>(val data: T, val updatedAt: Instant) : WidgetState<T>()
    data class Stale<T>(val data: T, val updatedAt: Instant, val error: String) : WidgetState<T>()
    data class Error(val message: String) : WidgetState<Nothing>()
}

Stale is critical: when a refresh fails, show old data with a timestamp — never show an empty widget.

ViewModel Pattern — stateIn(WhileSubscribed)

The canonical Nebula widget ViewModel uses stateIn(WhileSubscribed(5s)) over MutableStateFlow + while(true):

class NasaApodViewModel(private val repo: NasaApodRepository) : ViewModel() {

    // WhileSubscribed(5s): upstream Flow pauses 5s after UI detaches, resumes when UI returns.
    // Survives screen rotation (no restart within 5s grace period).
    // Pauses fetch loop when launcher is backgrounded — saves CPU + battery.
    val state: StateFlow<WidgetState<ApodData>> = flow {
        var lastSuccess: WidgetState.Success<ApodData>? = null
        while (true) {
            val newState = try {
                withTimeout(30.seconds) {
                    WidgetState.Success(repo.fetchApod(BuildConfig.NASA_API_KEY), Instant.now())
                        .also { lastSuccess = it }
                }
            } catch (e: TimeoutCancellationException) {
                lastSuccess?.let { WidgetState.Stale(it.data, it.updatedAt, "Timed out") }
                    ?: WidgetState.Error("NASA unavailable")
            } catch (e: CancellationException) {
                throw e  // MUST rethrow — never catch CancellationException silently
            } catch (e: Exception) {
                lastSuccess?.let { WidgetState.Stale(it.data, it.updatedAt, e.message ?: "Error") }
                    ?: WidgetState.Error(e.message ?: "Failed to load")
            }
            emit(newState)
            delay(24.hours) // NASA APOD: once per day
        }
    }
    .flowOn(Dispatchers.IO)
    .stateIn(
        scope = viewModelScope,
        started = SharingStarted.WhileSubscribed(stopTimeoutMillis = 5_000),
        initialValue = WidgetState.Loading
    )
}

Read the full file on GitHub · 151 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 151 lines · 50 tokens per session scan A 1ee9f0883014

Subscribe to this mod's changes

widget-architect is an agent published in the GitHub repository gsbakshi/nebula-tv (5 stars, last pushed 6mo ago), licensed MPL-2.0. It adds 50 tokens to every session and 1,658 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

react18-class-surgeon

Class component migration specialist for React 16/17 → 18.3.1. Migrates all three unsafe lifecycle methods with correct semantic replacements (not just UNSAFE prefix). Migrates legacy context to createContext, string refs to React.createRef(), findDOMNode to direct refs, and ReactDOM.render to createRoot. Uses memory…

github/awesome-copilot · 81 tokens

frontend-dev

Frontend Developer (Aria Chen) - React, Next.js, TypeScript, accessibility, performance.

vibeeval/vibecosystem · 22 tokens

react-portfolio-engineer

React portfolio/gallery sites for creatives: React 18+, Next.js App Router, image optimization.

notque/vexjoy-agent · 25 tokens

alchemist

Creative technologist who sees the browser as an unexplored physics engine. Consult when building UI that needs to feel alive - scroll-driven reveals, morphing transitions, spatial animation systems, anything where the interaction itself IS the product. Thinks in weight, tension, and breath before thinking in code.…

drobins25/craft · 355 tokens

pywry-builder

Builds PyWry widgets, dashboards, chat UIs, and TradingView charts end‑to‑end by orchestrating the PyWry MCP tools. Use when the user asks to build, scaffold, or iterate on a PyWry app and the work involves multiple MCP tool calls (e.g. create widget → populate data → add toolbar → wire events → export).

deeleeramone/PyWry · 81 tokens

docs-app-builder

Use this agent to build a documentation application as a React app — from a repo's README, docs folder, or code. Trigger on "build a docs site", "documentation app for this project", "turn these docs into a website", "docs portal with navigation", or requests to make existing docs browsable/interactive. Returns a…

aayushostwal/nexus · 97 tokens