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.
curl -O https://raw.githubusercontent.com/gsbakshi/nebula-tv/main/.claude/agents/widget-architect.mdgit clone --depth 1 https://github.com/gsbakshi/nebula-tvWrote 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.
[](https://agentmods.dev/agents/gsbakshi/nebula-tv/widget-architect)<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>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.
| Model | Per session | Once 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 |
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 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
)
}
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.
- 8d ago First seen · 151 lines · 50 tokens per session scan A 1ee9f0883014
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.
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…
frontend-dev
Frontend Developer (Aria Chen) - React, Next.js, TypeScript, accessibility, performance.
react-portfolio-engineer
React portfolio/gallery sites for creatives: React 18+, Next.js App Router, image optimization.
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.…
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).
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…