NAME

_dashboard-core - internal staged built-in command runtime for Developer Dashboard

SYNOPSIS

_dashboard-core <built-in-command> [args...]

DESCRIPTION

This internal helper runs the heavier built-in Developer Dashboard commands after the public dashboard entrypoint has already handled hook execution and switchboard dispatch. It is staged under ~/.developer-dashboard/cli/dd/ as _dashboard-core and is not meant to be called by users directly.

__END__

NAME

_dashboard-core - contains the shared private built-in command runtime that the staged helper scripts hand off into.

PURPOSE

Private helper script in the Developer Dashboard codebase. This file contains the shared private built-in command runtime that the staged helper scripts hand off into. Open this file when you need the implementation, regression coverage, or runtime entrypoint for that responsibility rather than guessing which part of the tree owns it.

WHY IT EXISTS

It exists so bin/dashboard can stay thin under the LAZY-THIN-CMD rule while still providing built-in commands through staged helper scripts under ~/.developer-dashboard/cli/dd/.

WHEN TO USE

Use this file when you need to understand how a built-in dashboard subcommand is staged and handed off after helper extraction into the home runtime.

HOW TO USE

This script is not meant to be called directly by users. The staged private helper wrappers exec into it after dashboard init or on-demand helper staging has populated ~/.developer-dashboard/cli/dd/.

WHAT USES IT

It is used by the staged built-in helper wrappers under ~/.developer-dashboard/cli/dd/ after bin/dashboard has extracted or refreshed them.

EXAMPLES

dashboard init
~/.developer-dashboard/cli/dd/jq . foo.json

The first command stages the private helpers. The second shows the staged helper path that eventually hands off into _dashboard-core.