44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import * as React from 'react'
|
|
import { use } from 'react'
|
|
import { Box } from '../ink.js'
|
|
import type { AgentDefinitionsResult } from '../tools/AgentTool/loadAgentsDir.js'
|
|
import { getMemoryFiles } from '../utils/claudemd.js'
|
|
import { getGlobalConfig } from '../utils/config.js'
|
|
import {
|
|
getActiveNotices,
|
|
type StatusNoticeContext,
|
|
} from '../utils/statusNoticeDefinitions.js'
|
|
|
|
type Props = {
|
|
agentDefinitions?: AgentDefinitionsResult
|
|
}
|
|
|
|
/**
|
|
* StatusNotices contains the information displayed to users at startup. We have
|
|
* moved neutral or positive status to src/components/Status.tsx instead, which
|
|
* users can access through /status.
|
|
*/
|
|
export function StatusNotices({
|
|
agentDefinitions,
|
|
}: Props = {}): React.ReactNode {
|
|
const context: StatusNoticeContext = {
|
|
config: getGlobalConfig(),
|
|
agentDefinitions,
|
|
memoryFiles: use(getMemoryFiles()),
|
|
}
|
|
const activeNotices = getActiveNotices(context)
|
|
if (activeNotices.length === 0) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<Box flexDirection="column" paddingLeft={1}>
|
|
{activeNotices.map(notice => (
|
|
<React.Fragment key={notice.id}>
|
|
{notice.render(context)}
|
|
</React.Fragment>
|
|
))}
|
|
</Box>
|
|
)
|
|
}
|