create-sparc
Version:
NPX package to scaffold new projects with SPARC methodology structure
15 lines (13 loc) • 321 B
JavaScript
/**
* Main entry point for create-sparc
*/
const { run } = require('./cli');
const { RegistryClient, RegistryError } = require('./core/registry-client');
const { mcpWizard, configGenerator } = require('./core/mcp-wizard');
module.exports = {
run,
RegistryClient,
RegistryError,
mcpWizard,
configGenerator
};