 e89f2f4b7b
			
		
	
	e89f2f4b7b
	
	
	
		
			
			Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| interface IOnigCaptureIndex {
 | |
|     start: number;
 | |
|     end: number;
 | |
|     length: number;
 | |
| }
 | |
| interface IOnigMatch {
 | |
|     index: number;
 | |
|     captureIndices: IOnigCaptureIndex[];
 | |
| }
 | |
| declare const enum FindOption {
 | |
|     None = 0,
 | |
|     /**
 | |
|      * equivalent of ONIG_OPTION_NOT_BEGIN_STRING: (str) isn't considered as begin of string (* fail \A)
 | |
|      */
 | |
|     NotBeginString = 1,
 | |
|     /**
 | |
|      * equivalent of ONIG_OPTION_NOT_END_STRING: (end) isn't considered as end of string (* fail \z, \Z)
 | |
|      */
 | |
|     NotEndString = 2,
 | |
|     /**
 | |
|      * equivalent of ONIG_OPTION_NOT_BEGIN_POSITION: (start) isn't considered as start position of search (* fail \G)
 | |
|      */
 | |
|     NotBeginPosition = 4,
 | |
|     /**
 | |
|      * used for debugging purposes.
 | |
|      */
 | |
|     DebugCall = 8
 | |
| }
 | |
| interface OnigScanner {
 | |
|     findNextMatchSync(string: string | OnigString, startPosition: number, options: OrMask<FindOption>): IOnigMatch | null;
 | |
|     dispose?(): void;
 | |
| }
 | |
| interface OnigString {
 | |
|     readonly content: string;
 | |
|     dispose?(): void;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * A union of given const enum values.
 | |
| */
 | |
| type OrMask<T extends number> = number;
 | |
| 
 | |
| type Awaitable<T> = T | Promise<T>;
 | |
| 
 | |
| interface PatternScanner extends OnigScanner {
 | |
| }
 | |
| interface RegexEngineString extends OnigString {
 | |
| }
 | |
| /**
 | |
|  * Engine for RegExp matching and scanning.
 | |
|  */
 | |
| interface RegexEngine {
 | |
|     createScanner: (patterns: (string | RegExp)[]) => PatternScanner;
 | |
|     createString: (s: string) => RegexEngineString;
 | |
| }
 | |
| interface WebAssemblyInstantiator {
 | |
|     (importObject: Record<string, Record<string, WebAssembly.ImportValue>> | undefined): Promise<WebAssemblyInstance>;
 | |
| }
 | |
| type WebAssemblyInstance = WebAssembly.WebAssemblyInstantiatedSource | WebAssembly.Instance | WebAssembly.Instance['exports'];
 | |
| type OnigurumaLoadOptions = {
 | |
|     instantiator: WebAssemblyInstantiator;
 | |
| } | {
 | |
|     default: WebAssemblyInstantiator;
 | |
| } | {
 | |
|     data: ArrayBufferView | ArrayBuffer | Response;
 | |
| };
 | |
| type LoadWasmOptionsPlain = OnigurumaLoadOptions | WebAssemblyInstantiator | ArrayBufferView | ArrayBuffer | Response;
 | |
| type LoadWasmOptions = Awaitable<LoadWasmOptionsPlain> | (() => Awaitable<LoadWasmOptionsPlain>);
 | |
| 
 | |
| export type { LoadWasmOptions as L, RegexEngine as R, WebAssemblyInstantiator as W };
 |