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>
29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
import { createConfig, defaultHandlers } from './config.js';
|
|
import { ERROR_CODES } from './error.js';
|
|
import * as builtinHandlers from './handlers/index.js';
|
|
import { fsImporter, ignoreImporter, makeFsImporter, } from './importer/index.js';
|
|
import parse from './parse.js';
|
|
import * as builtinResolvers from './resolver/index.js';
|
|
import * as utils from './utils/index.js';
|
|
const builtinImporters = {
|
|
fsImporter,
|
|
ignoreImporter,
|
|
};
|
|
/**
|
|
* Parse the *src* and scan for react components based on the config
|
|
* that gets supplied.
|
|
*
|
|
* The default resolvers look for *exported* react components.
|
|
*
|
|
* By default all handlers are applied, so that all possible
|
|
* different use cases are covered.
|
|
*
|
|
* The default importer is the fs-importer that tries to resolve
|
|
* files based on the nodejs resolve algorithm.
|
|
*/
|
|
function defaultParse(src, config = {}) {
|
|
const defaultConfig = createConfig(config);
|
|
return parse(String(src), defaultConfig);
|
|
}
|
|
export { builtinHandlers, builtinImporters, builtinResolvers, defaultHandlers, ERROR_CODES, makeFsImporter, defaultParse as parse, utils, };
|