MCPcopy Create free account
hub / github.com/garrytan/gstack / Archetype

Interface Archetype

scripts/archetypes.ts:23–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21import type { Dimension } from './psychographic-signals';
22
23export interface Archetype {
24 /** Short vibe label — one or two words. */
25 name: string;
26 /** One-line description anchored in observable behavior. */
27 description: string;
28 /** Center point in the 5-dimensional space. */
29 center: Record<Dimension, number>;
30 /** Inverse-weighted radius. Smaller = tighter match needed. */
31 tightness: number;
32}
33
34export const ARCHETYPES: readonly Archetype[] = [
35 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected