directMemberMessage.ts
utils/directMemberMessage.ts
70
Lines
1715
Bytes
3
Exports
1
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is one piece of the larger system. Its name, directory, imports, and exports show where it fits. Start by reading the exports and related files first.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with memory-layers. It contains 70 lines, 1 detected imports, and 3 detected exports.
Important relationships
Detected exports
parseDirectMemberMessageDirectMessageResultsendDirectMemberMessage
Keywords
recipientnamemessagemembersuccessteamcontextmatchappstateteamtrimmedmessagewritetomailbox
Detected imports
../state/AppState.js
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
import type { AppState } from '../state/AppState.js'
/**
* Parse `@agent-name message` syntax for direct team member messaging.
*/
export function parseDirectMemberMessage(input: string): {
recipientName: string
message: string
} | null {
const match = input.match(/^@([\w-]+)\s+(.+)$/s)
if (!match) return null
const [, recipientName, message] = match
if (!recipientName || !message) return null
const trimmedMessage = message.trim()
if (!trimmedMessage) return null
return { recipientName, message: trimmedMessage }
}
export type DirectMessageResult =
| { success: true; recipientName: string }
| {
success: false
error: 'no_team_context' | 'unknown_recipient'
recipientName?: string
}
type WriteToMailboxFn = (
recipientName: string,
message: { from: string; text: string; timestamp: string },
teamName: string,
) => Promise<void>
/**
* Send a direct message to a team member, bypassing the model.
*/
export async function sendDirectMemberMessage(
recipientName: string,
message: string,
teamContext: AppState['teamContext'],
writeToMailbox?: WriteToMailboxFn,
): Promise<DirectMessageResult> {
if (!teamContext || !writeToMailbox) {
return { success: false, error: 'no_team_context' }
}
// Find team member by name
const member = Object.values(teamContext.teammates ?? {}).find(
t => t.name === recipientName,
)
if (!member) {
return { success: false, error: 'unknown_recipient', recipientName }
}
await writeToMailbox(
recipientName,
{
from: 'user',
text: message,
timestamp: new Date().toISOString(),
},
teamContext.teamName,
)
return { success: true, recipientName }
}