UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

27 lines (22 loc) 414 B
import { defaults } from './defaults.js'; export class Hooks { constructor(options) { this.options = options || defaults; } static passThroughHooks = new Set([ 'preprocess', 'postprocess' ]); /** * Process markdown before marked */ preprocess(markdown) { return markdown; } /** * Process HTML after marked is finished */ postprocess(html) { return html; } }