a7bd746f21
* Restructure dash * WIP * WIP * refactor trigger UI: extract PR summary card, add mentions section, rename labels Co-authored-by: Cursor <cursoragent@cursor.com> * clean up console UI: remove info icons from section descriptions, rename mentions trigger Co-authored-by: Cursor <cursoragent@cursor.com> * fix review feedback: layout, terminology, form scope - extract console sidebar sections to module-level constant - align three-column layout breakpoints to xl (match sidebar visibility) - fix mixed shell/bash terminology in beta page - scope FormProvider to trigger sections only, restore autoComplete="off" Co-authored-by: Cursor <cursoragent@cursor.com> * Bump --------- Co-authored-by: Cursor <cursoragent@cursor.com>
39 lines
757 B
TypeScript
39 lines
757 B
TypeScript
/**
|
|
* Internal entrypoint for the root app.
|
|
* Re-exports shared types, values, and utilities needed by the Next.js app.
|
|
*/
|
|
|
|
export type {
|
|
AgentApiKeyName,
|
|
AgentManifest,
|
|
AuthorPermission,
|
|
Payload,
|
|
PayloadEvent,
|
|
PushPermission,
|
|
ShellPermission,
|
|
ToolPermission,
|
|
WriteablePayload,
|
|
} from "../external.ts";
|
|
export {
|
|
AgentName,
|
|
agentsManifest,
|
|
Effort,
|
|
ghPullfrogMcpName,
|
|
} from "../external.ts";
|
|
export type {
|
|
AgentInfo,
|
|
BuildPullfrogFooterParams,
|
|
WorkflowRunFooterInfo,
|
|
} from "../utils/buildPullfrogFooter.ts";
|
|
export {
|
|
buildPullfrogFooter,
|
|
PULLFROG_DIVIDER,
|
|
stripExistingFooter,
|
|
} from "../utils/buildPullfrogFooter.ts";
|
|
|
|
export {
|
|
isValidTimeString,
|
|
parseTimeString,
|
|
TIMEOUT_DISABLED,
|
|
} from "../utils/time.ts";
|