slashCommandParsing.ts
utils/slashCommandParsing.ts
61
Lines
1437
Bytes
2
Exports
0
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 commands. It contains 61 lines, 0 detected imports, and 2 detected exports.
Important relationships
Detected exports
ParsedSlashCommandparseSlashCommand
Keywords
commandnameargsismcpinputwordscommandparseslashcommandtrimmedinputargsstartindexslash
Detected imports
- No import paths detected.
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
/**
* Centralized utilities for parsing slash commands
*/
export type ParsedSlashCommand = {
commandName: string
args: string
isMcp: boolean
}
/**
* Parses a slash command input string into its component parts
*
* @param input - The raw input string (should start with '/')
* @returns Parsed command name, args, and MCP flag, or null if invalid
*
* @example
* parseSlashCommand('/search foo bar')
* // => { commandName: 'search', args: 'foo bar', isMcp: false }
*
* @example
* parseSlashCommand('/mcp:tool (MCP) arg1 arg2')
* // => { commandName: 'mcp:tool (MCP)', args: 'arg1 arg2', isMcp: true }
*/
export function parseSlashCommand(input: string): ParsedSlashCommand | null {
const trimmedInput = input.trim()
// Check if input starts with '/'
if (!trimmedInput.startsWith('/')) {
return null
}
// Remove the leading '/' and split by spaces
const withoutSlash = trimmedInput.slice(1)
const words = withoutSlash.split(' ')
if (!words[0]) {
return null
}
let commandName = words[0]
let isMcp = false
let argsStartIndex = 1
// Check for MCP commands (second word is '(MCP)')
if (words.length > 1 && words[1] === '(MCP)') {
commandName = commandName + ' (MCP)'
isMcp = true
argsStartIndex = 2
}
// Extract arguments (everything after command name)
const args = words.slice(argsStartIndex).join(' ')
return {
commandName,
args,
isMcp,
}
}