birdview

birdview is a skill for Claude Code from DanialDaeHyunNam/omniscitus. It costs 46 tokens per session (917 once invoked), scanned A, original, MIT.

A local web dashboard for browsing Omniscitus blueprints, work-history units, and test definitions in a browser.

In plain words
What is it for?
Use it to start the Birdview dashboard on localhost, choosing a free port near 3777 when needed.
Why use it?
It makes project-tracking data easier to inspect visually than reading the underlying files directly.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the omniscitus plugin — 16 skills, 3 hooks shipped together

Good fit Use it to start the Birdview dashboard on localhost, choosing a free port near 3777 when needed.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add DanialDaeHyunNam/omniscitus
Claude Code
/plugin install omniscitus

Made for: Claude Code.

Or install omniscitus, the plugin that ships this one along with the rest of its 16 skills, 3 hooks.

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 birdview

README.md
[![agentmods](https://agentmods.dev/badge/skills/danialdaehyunnam/omniscitus/birdview/github.svg)](https://agentmods.dev/skills/danialdaehyunnam/omniscitus/birdview)
Your own site
<a href="https://agentmods.dev/skills/danialdaehyunnam/omniscitus/birdview"><img src="https://agentmods.dev/badge/skills/danialdaehyunnam/omniscitus/birdview/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for birdview

Your own site · 80×15
<a href="https://agentmods.dev/skills/danialdaehyunnam/omniscitus/birdview"><img src="https://agentmods.dev/badge/skills/danialdaehyunnam/omniscitus/birdview.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 917 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.00046 $0.00917
Opus 5 $0.00023 $0.00458
Sonnet 5 $0.00009 $0.00183
Haiku 4.5 $0.00005 $0.00092

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

Security

Grade A, and why

birdview 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 10d 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.

curl -s -o /dev/null -w "%{http_code}" "http://localhost:$PORT"
plugins/omniscitus/skills/birdview/SKILL.md · 113 lines

How it starts

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

Birdview — Admin Dashboard

Start a visual dashboard to browse all omniscitus data.

When to Use

  • User types /birdview
  • User says "dashboard", "대시보드", "birdview"

Instructions

Step 1: Check Prerequisites

Verify .omniscitus/ exists in the project root. If not:

📭 No omniscitus data found. Run /wrap-up first, or edit a file to start blueprint tracking.

Step 2: Pick a Free Port

Birdview prefers port 3777. If it's taken, increment by 1 and try again, up to 10 attempts. The server reads BIRDVIEW_PORT from the environment so the skill can pass whichever port it picks.

PORT=3777
ATTEMPTS=0
while lsof -i :$PORT -t >/dev/null 2>&1 && [ $ATTEMPTS -lt 10 ]; do
  PORT=$((PORT + 1))
  ATTEMPTS=$((ATTEMPTS + 1))
done
if lsof -i :$PORT -t >/dev/null 2>&1; then
  echo "❌ Could not find a free port between 3777 and 3786. Stop one of the running birdview servers and try again."
  exit 1
fi

After this block $PORT holds an unused port — usually 3777, otherwise the next free integer above it. Report the chosen port to the user explicitly so they know whether the URL is the default or a fallback.

Step 3: Start Server in Background

CRITICAL — use the Bash tool's run_in_background: true parameter. Do NOT rely on shell backgrounding (&) — in Claude Code's sandbox the child process is often reaped when the tool call returns, so the server dies seconds after it starts. run_in_background: true keeps it alive across tool calls and the whole conversation.

Command (no trailing & — background is the tool's responsibility):

BIRDVIEW_PORT=$PORT node "${CLAUDE_PLUGIN_ROOT}/birdview/server.js" "$(pwd)"

Invocation shape:

Bash(
  command: <the command above>,
  run_in_background: true,
  description: "Start birdview server on port $PORT"
)

The tool returns immediately with a background task id; the server stays up. The user will close it explicitly (via the kill hint in Step 4) or by ending the Claude Code session.

Read the full file on GitHub · 113 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. 10d ago First seen · 113 lines · 46 tokens per session scan A de885668afaf

Subscribe to this mod's changes

birdview is a skill published in the GitHub repository DanialDaeHyunNam/omniscitus (5 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 917 once invoked, about $0.0002 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 skills, from other repositories

opencli-sitemap-author

Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.

jackwener/OpenCLI · 67 tokens

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

interactive-login

How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.

yc-software/qm · 46 tokens

pinchtab-mcp

Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.

pinchtab/pinchtab · 52 tokens

azure-messaging-webpubsub-java

Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.

microsoft/skills · 43 tokens

google-safe-browsing

Prevent and fix Google Safe Browsing "Dangerous site" flags. Use when launching a public web app, buying/picking a domain, building a login or signup page, or when any site shows a red "Dangerous site" / "Deceptive site" warning in Chrome, Brave, Safari, Firefox, or Edge. Triggers on "dangerous site", "deceptive…

davidondrej/skills · 105 tokens