Intelligence

Artifacts

Browse the repository, read documents, and manage the governance folders. Source, runtime, and infrastructure are read-only.

Repository
README.md
CONSTITUTION_COMPLIANCE_AUDIT_V1.mdREADME.md
repositories/aaf-holdings/hq01/app/instruct/page.tsx
829 B
import { PageHeader } from "@/components/layout/page-header";
import { InstructHQ01 } from "@/components/executives/instruct-hq01";

/**
 * Instruct HQ01 — the CEO gives an instruction and HQ01 routes it to the right
 * executive office, dispatching to an active office or raising an approval-gated
 * proposal when the office is not staffed.
 */

export const dynamic = "force-dynamic";
export const metadata = { title: "Instruct HQ01" };

export default function InstructPage() {
  return (
    <div>
      <PageHeader
        eyebrow="Operate"
        title="Instruct HQ01"
        description="Describe the work. HQ01 classifies it, routes it to the right executive office, and either dispatches a briefed session or raises an executive-office proposal for your approval."
      />
      <InstructHQ01 />
    </div>
  );
}

root · /srv/aaf