mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import * as React from 'react';
|
|
import { use } from 'react';
|
|
import { Box } from '@anthropic/ink';
|
|
import type { AgentDefinitionsResult } from '@claude-code-best/builtin-tools/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>
|
|
);
|
|
}
|