UNPKG

hataraku

Version:

An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.

25 lines (24 loc) 629 B
export declare const mentionRegex: RegExp; export declare const mentionRegexGlobal: RegExp; export interface MentionSuggestion { type: 'file' | 'folder' | 'git' | 'problems'; label: string; description?: string; value: string; icon?: string; } export interface GitMentionSuggestion extends MentionSuggestion { type: 'git'; hash: string; shortHash: string; subject: string; author: string; date: string; } export declare function formatGitSuggestion(commit: { hash: string; shortHash: string; subject: string; author: string; date: string; }): GitMentionSuggestion;