UNPKG

instruqt

Version:

CLI tool for deploying AI agent context documentation across multiple platforms with dual MERN/module support

21 lines (19 loc) 534 B
/** * @file Main features barrel export * @description Exports all features following MERN backend architecture * @author instruqt team * @version 1.0.0 * * DESIGN DECISION: Central barrel export for all features * Follows MERN backend architecture principle of barrel exports */ const core = require('./core'); const deployment = require('./deployment'); const templating = require('./templating'); const factories = require('./factories'); module.exports = { ...core, ...deployment, ...templating, ...factories };