@neuroverseos/governance 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +8 -0
- package/README.md +180 -10
- package/dist/{chunk-MC6O5GV5.js → chunk-3ZWU7C43.js} +1056 -135
- package/dist/{chunk-VGFDMPVB.js → chunk-TCGGED4G.js} +283 -1
- package/dist/cli/neuroverse.cjs +2000 -460
- package/dist/cli/radiant.cjs +1452 -237
- package/dist/cli/radiant.js +62 -24
- package/dist/cli/worldmodel.cjs +1157 -823
- package/dist/cli/worldmodel.js +116 -1
- package/dist/{lenses-K5FVSALR.js → lenses-XDWK6ZKI.js} +5 -3
- package/dist/radiant/index.cjs +953 -130
- package/dist/radiant/index.d.cts +271 -10
- package/dist/radiant/index.d.ts +271 -10
- package/dist/radiant/index.js +41 -397
- package/dist/{server-DFNY5N5A.js → server-JKUBUK5H.js} +2 -2
- package/dist/worldmodel-create-5SWHVNMQ.js +195 -0
- package/examples/radiant-weekly-workflow.yml +81 -0
- package/package.json +2 -1
package/dist/radiant/index.d.cts
CHANGED
|
@@ -544,6 +544,31 @@ declare function classifyActorDomain(event: Event): ActorDomain;
|
|
|
544
544
|
*/
|
|
545
545
|
declare const aukiBuilderLens: RenderingLens;
|
|
546
546
|
|
|
547
|
+
/**
|
|
548
|
+
* @neuroverseos/governance/radiant — Sovereign Conduit Lens
|
|
549
|
+
*
|
|
550
|
+
* The rendering lens for the NeuroVerseOS base worldmodel. Where the
|
|
551
|
+
* aukiBuilderLens encodes how Auki-grade builders think and speak,
|
|
552
|
+
* this lens encodes how the Sovereign Conduit thinks and speaks.
|
|
553
|
+
*
|
|
554
|
+
* The voice is fundamentally different from the builder lens:
|
|
555
|
+
* - Warm, not compressed. Accessible, not technical.
|
|
556
|
+
* - Analogies from everyday life (mom rules, friend's house, idea
|
|
557
|
+
* calculator), not from architecture (stacks, bottlenecks, territory).
|
|
558
|
+
* - Emotions named, not contained. When governance works, it feels
|
|
559
|
+
* like trust. When it fails, it feels like being funneled. Say so.
|
|
560
|
+
* - The audience is everyone — leaders, parents, people learning AI,
|
|
561
|
+
* people who don't code. If a mom can't understand the output, the
|
|
562
|
+
* voice is wrong.
|
|
563
|
+
* - Teaching, not lecturing. Every output helps people think for
|
|
564
|
+
* themselves. The difference: lecturing tells you what to think.
|
|
565
|
+
* Teaching helps you think.
|
|
566
|
+
*
|
|
567
|
+
* Tagline: Humanity first. In constant learning. In shared teaching.
|
|
568
|
+
*/
|
|
569
|
+
|
|
570
|
+
declare const sovereignConduitLens: RenderingLens;
|
|
571
|
+
|
|
547
572
|
/**
|
|
548
573
|
* @neuroverseos/governance/radiant/lenses
|
|
549
574
|
*
|
|
@@ -557,10 +582,9 @@ declare const aukiBuilderLens: RenderingLens;
|
|
|
557
582
|
* registered set.
|
|
558
583
|
*
|
|
559
584
|
* Current registry:
|
|
560
|
-
* - auki-builder — Auki's vanguard leadership lens.
|
|
561
|
-
*
|
|
562
|
-
*
|
|
563
|
-
* domain. See ./auki-builder.ts for the content.
|
|
585
|
+
* - auki-builder — Auki's vanguard leadership lens.
|
|
586
|
+
* - sovereign-conduit — NeuroVerseOS base lens. Warm, accessible,
|
|
587
|
+
* teaching. Stewardship / Agency / Integration.
|
|
564
588
|
*
|
|
565
589
|
* To add a new lens:
|
|
566
590
|
* 1. Create src/radiant/lenses/<name>.ts exporting a `RenderingLens`.
|
|
@@ -924,13 +948,17 @@ interface ExocortexContext {
|
|
|
924
948
|
filesLoaded: number;
|
|
925
949
|
}
|
|
926
950
|
/**
|
|
927
|
-
* Read stated intent from an exocortex directory
|
|
951
|
+
* Read stated intent from an exocortex directory, optionally scoped
|
|
952
|
+
* to a specific project.
|
|
928
953
|
*
|
|
929
|
-
*
|
|
930
|
-
*
|
|
931
|
-
*
|
|
954
|
+
* When a repoName is provided (e.g. "reconstruction-server"), the reader
|
|
955
|
+
* looks for a matching subdirectory in the exocortex (symlinked project
|
|
956
|
+
* repos in the Auki exocortex pattern) and reads project-specific
|
|
957
|
+
* sprint.md and roadmap.md alongside the global personal context.
|
|
958
|
+
*
|
|
959
|
+
* Silently skips missing files. Partial context is better than no context.
|
|
932
960
|
*/
|
|
933
|
-
declare function readExocortex(dirPath: string): ExocortexContext;
|
|
961
|
+
declare function readExocortex(dirPath: string, repoName?: string): ExocortexContext;
|
|
934
962
|
/**
|
|
935
963
|
* Format the exocortex context as a section for the AI interpretation
|
|
936
964
|
* prompt. Only includes fields that were actually loaded.
|
|
@@ -1298,6 +1326,193 @@ interface RenderOutput {
|
|
|
1298
1326
|
}
|
|
1299
1327
|
declare function render(input: RenderInput): RenderOutput;
|
|
1300
1328
|
|
|
1329
|
+
/**
|
|
1330
|
+
* @neuroverseos/governance/radiant — extends (org-wide world sharing)
|
|
1331
|
+
*
|
|
1332
|
+
* Lets a repo declare worldmodels that live in another repo, so one
|
|
1333
|
+
* source of truth can govern many repos. Auki has 51 repos — one
|
|
1334
|
+
* `aukiNetwork/worlds` repo holds the canonical worldmodel, every
|
|
1335
|
+
* other repo declares `extends: ["github:aukiNetwork/worlds"]`.
|
|
1336
|
+
*
|
|
1337
|
+
* Spec grammar:
|
|
1338
|
+
* github:OWNER/REPO — latest default branch, repo root
|
|
1339
|
+
* github:OWNER/REPO@REF — specific ref (branch, tag, or sha)
|
|
1340
|
+
* github:OWNER/REPO@REF:SUBPATH — subpath inside the cloned repo
|
|
1341
|
+
* ./relative/path — local dir relative to repo root
|
|
1342
|
+
* /absolute/path — absolute local dir
|
|
1343
|
+
*
|
|
1344
|
+
* github: sources are shallow-cloned into ~/.neuroverse/cache/extends/<hash>/
|
|
1345
|
+
* Cache is reused for 1 hour; set NEUROVERSE_REFRESH=1 to force refetch,
|
|
1346
|
+
* or NEUROVERSE_NO_FETCH=1 to forbid network access (cache-or-nothing).
|
|
1347
|
+
*/
|
|
1348
|
+
interface ExtendsSpec {
|
|
1349
|
+
raw: string;
|
|
1350
|
+
kind: 'github' | 'local';
|
|
1351
|
+
owner?: string;
|
|
1352
|
+
repo?: string;
|
|
1353
|
+
ref?: string;
|
|
1354
|
+
subpath?: string;
|
|
1355
|
+
path?: string;
|
|
1356
|
+
}
|
|
1357
|
+
interface ExtendsConfig {
|
|
1358
|
+
extends?: string[];
|
|
1359
|
+
}
|
|
1360
|
+
interface ResolveResult {
|
|
1361
|
+
spec: ExtendsSpec;
|
|
1362
|
+
dir: string | null;
|
|
1363
|
+
warning?: string;
|
|
1364
|
+
}
|
|
1365
|
+
type Fetcher = (spec: ExtendsSpec, destDir: string) => void;
|
|
1366
|
+
declare function loadExtendsConfig(repoDir: string): ExtendsConfig | null;
|
|
1367
|
+
declare function parseExtendsSpec(raw: string): ExtendsSpec | null;
|
|
1368
|
+
declare function getCacheDir(spec: ExtendsSpec, baseCacheDir?: string): string;
|
|
1369
|
+
declare function resolveExtendsSpec(spec: ExtendsSpec, repoDir: string, options?: {
|
|
1370
|
+
cacheDir?: string;
|
|
1371
|
+
fetcher?: Fetcher;
|
|
1372
|
+
ttlMs?: number;
|
|
1373
|
+
forceRefresh?: boolean;
|
|
1374
|
+
noFetch?: boolean;
|
|
1375
|
+
/** Suppress warnings when the remote source doesn't exist.
|
|
1376
|
+
* Used by the org tier, where a missing <org>/worlds repo is the
|
|
1377
|
+
* common case and should silently skip. */
|
|
1378
|
+
silentOnMissing?: boolean;
|
|
1379
|
+
}): ResolveResult;
|
|
1380
|
+
/**
|
|
1381
|
+
* Detect the conventional org-level worldmodel source from the current
|
|
1382
|
+
* repo's git remote. Returns an ExtendsSpec pointing at `<owner>/worlds`
|
|
1383
|
+
* on the same host, or null if:
|
|
1384
|
+
* - no git repo / no origin remote
|
|
1385
|
+
* - remote is on a non-GitHub host (v1 only supports github.com)
|
|
1386
|
+
* - the current repo IS the worlds repo (avoid self-loop)
|
|
1387
|
+
*
|
|
1388
|
+
* Example: in a repo with origin github.com/NeuroverseOS/foo, this
|
|
1389
|
+
* returns a spec for `github:NeuroverseOS/worlds`. If that repo doesn't
|
|
1390
|
+
* exist on GitHub, discovery's silentOnMissing flag swallows the failure
|
|
1391
|
+
* so nothing noisy surfaces.
|
|
1392
|
+
*/
|
|
1393
|
+
declare function detectOrgExtendsSpec(repoDir: string): ExtendsSpec | null;
|
|
1394
|
+
declare function resolveAllExtends(repoDir: string, options?: {
|
|
1395
|
+
cacheDir?: string;
|
|
1396
|
+
fetcher?: Fetcher;
|
|
1397
|
+
ttlMs?: number;
|
|
1398
|
+
forceRefresh?: boolean;
|
|
1399
|
+
noFetch?: boolean;
|
|
1400
|
+
config?: ExtendsConfig | null;
|
|
1401
|
+
}): ResolveResult[];
|
|
1402
|
+
|
|
1403
|
+
/**
|
|
1404
|
+
* @neuroverseos/governance/radiant — world discovery
|
|
1405
|
+
*
|
|
1406
|
+
* Automatically discovers and loads worldmodels from five sources,
|
|
1407
|
+
* in precedence order (later tiers override earlier ones):
|
|
1408
|
+
*
|
|
1409
|
+
* 1. NeuroVerse base (built-in, universal — always loaded)
|
|
1410
|
+
* 2. User worlds (~/.neuroverse/worlds/ — your personal model)
|
|
1411
|
+
* 3. Org worlds (github:<owner>/worlds for current repo's GitHub org — zero config)
|
|
1412
|
+
* 4. Extends (declared in .neuroverse/config.json — explicit overrides)
|
|
1413
|
+
* 5. Repo worlds (./worlds/ in the current repo — local authority)
|
|
1414
|
+
*
|
|
1415
|
+
* Worlds live where the work lives. You don't switch between them —
|
|
1416
|
+
* you walk into them. Open an Auki repo → Auki's worlds load.
|
|
1417
|
+
* Leave → they disappear. No toggle, no config, no removal.
|
|
1418
|
+
*
|
|
1419
|
+
* The org tier piggybacks on GitHub's existing org structure: discovery
|
|
1420
|
+
* reads .git/config, extracts the owner from the origin remote, and
|
|
1421
|
+
* probes `github:<owner>/worlds`. If the repo exists, its worldmodels
|
|
1422
|
+
* load automatically — no per-repo config needed. Missing silently.
|
|
1423
|
+
*
|
|
1424
|
+
* The extends tier is the explicit override for non-conventional sources
|
|
1425
|
+
* (private mirrors, local paths, alternate orgs).
|
|
1426
|
+
*/
|
|
1427
|
+
|
|
1428
|
+
interface DiscoveredWorld {
|
|
1429
|
+
name: string;
|
|
1430
|
+
source: 'base' | 'user' | 'org' | 'extends' | 'repo';
|
|
1431
|
+
path: string;
|
|
1432
|
+
content: string;
|
|
1433
|
+
/** For extends- and org-sourced worlds: the resolved spec. */
|
|
1434
|
+
extendsFrom?: string;
|
|
1435
|
+
}
|
|
1436
|
+
interface WorldStack {
|
|
1437
|
+
worlds: DiscoveredWorld[];
|
|
1438
|
+
/** Combined content for the AI prompt (compressed by the caller). */
|
|
1439
|
+
combinedContent: string;
|
|
1440
|
+
/** Human-readable list of what's loaded. */
|
|
1441
|
+
summary: string;
|
|
1442
|
+
/** Non-fatal warnings (e.g. failed extends fetch, stale cache). */
|
|
1443
|
+
warnings: string[];
|
|
1444
|
+
}
|
|
1445
|
+
/**
|
|
1446
|
+
* Discover and load worldmodels from all three sources.
|
|
1447
|
+
*
|
|
1448
|
+
* @param repoDir — the repo being analyzed (for repo-level worlds).
|
|
1449
|
+
* If not provided, skips repo-level discovery.
|
|
1450
|
+
* @param userWorldsDir — override for user worlds location.
|
|
1451
|
+
* Default: ~/.neuroverse/worlds/
|
|
1452
|
+
* @param explicitWorldsDir — explicit --worlds flag (overrides discovery).
|
|
1453
|
+
* When provided, this is used AS the repo-level source.
|
|
1454
|
+
* @param scopeOwner — GitHub org/owner hint derived from a CLI scope
|
|
1455
|
+
* argument (e.g. the "NeuroverseOS" in `radiant emergent NeuroverseOS/`).
|
|
1456
|
+
* When provided, discovery also probes `github:<scopeOwner>/worlds`
|
|
1457
|
+
* in the org tier. This lets the command work without a local clone —
|
|
1458
|
+
* the scope itself tells us which org's worlds to load.
|
|
1459
|
+
*/
|
|
1460
|
+
declare function discoverWorlds(options?: {
|
|
1461
|
+
repoDir?: string;
|
|
1462
|
+
userWorldsDir?: string;
|
|
1463
|
+
explicitWorldsDir?: string;
|
|
1464
|
+
scopeOwner?: string;
|
|
1465
|
+
/** Override the extends cache location (default ~/.neuroverse/cache/extends/). */
|
|
1466
|
+
extendsCacheDir?: string;
|
|
1467
|
+
/** Inject a fetcher (tests use this to avoid real network calls). */
|
|
1468
|
+
extendsFetcher?: Fetcher;
|
|
1469
|
+
/** Cache TTL for github: extends (default 1 hour). */
|
|
1470
|
+
extendsTtlMs?: number;
|
|
1471
|
+
/** Disable extends resolution entirely. */
|
|
1472
|
+
disableExtends?: boolean;
|
|
1473
|
+
/** Disable org auto-detect tier. Also disabled by NEUROVERSE_NO_ORG=1. */
|
|
1474
|
+
disableOrg?: boolean;
|
|
1475
|
+
}): WorldStack;
|
|
1476
|
+
/**
|
|
1477
|
+
* Format the active worlds list for display in the output header.
|
|
1478
|
+
*/
|
|
1479
|
+
declare function formatActiveWorlds(stack: WorldStack): string;
|
|
1480
|
+
|
|
1481
|
+
/**
|
|
1482
|
+
* @neuroverseos/governance/radiant — git remote introspection
|
|
1483
|
+
*
|
|
1484
|
+
* Reads the current repo's origin remote and parses out the host/owner/repo.
|
|
1485
|
+
* Used by the org-level discovery tier to ask "what GitHub org owns this
|
|
1486
|
+
* repo?" and then look for a conventional <org>/worlds source of truth.
|
|
1487
|
+
*
|
|
1488
|
+
* Works for both `.git/` directories and `.git` files (git worktrees /
|
|
1489
|
+
* submodules, which store a `gitdir: <path>` pointer instead of a full dir).
|
|
1490
|
+
*/
|
|
1491
|
+
interface ParsedRemote {
|
|
1492
|
+
host: string;
|
|
1493
|
+
owner: string;
|
|
1494
|
+
repo: string;
|
|
1495
|
+
}
|
|
1496
|
+
/**
|
|
1497
|
+
* Read the `origin` remote URL from a repo's git config.
|
|
1498
|
+
* Returns null if no repo, no remote, or read fails.
|
|
1499
|
+
*/
|
|
1500
|
+
declare function readOriginRemote(repoDir: string): string | null;
|
|
1501
|
+
/**
|
|
1502
|
+
* Parse a git remote URL into host/owner/repo.
|
|
1503
|
+
*
|
|
1504
|
+
* Supported forms:
|
|
1505
|
+
* https://github.com/OWNER/REPO(.git)
|
|
1506
|
+
* http://github.com/OWNER/REPO(.git)
|
|
1507
|
+
* git@github.com:OWNER/REPO(.git)
|
|
1508
|
+
* ssh://git@github.com/OWNER/REPO(.git)
|
|
1509
|
+
*/
|
|
1510
|
+
declare function parseRemoteUrl(url: string): ParsedRemote | null;
|
|
1511
|
+
/**
|
|
1512
|
+
* One-shot: read origin and parse it.
|
|
1513
|
+
*/
|
|
1514
|
+
declare function getRepoOrigin(repoDir: string): ParsedRemote | null;
|
|
1515
|
+
|
|
1301
1516
|
/**
|
|
1302
1517
|
* @neuroverseos/governance/radiant — Memory Palace file operations
|
|
1303
1518
|
*
|
|
@@ -1377,6 +1592,48 @@ declare function computePersistence(priorReads: PriorRead[], currentPatternNames
|
|
|
1377
1592
|
*/
|
|
1378
1593
|
declare function formatPriorReadsForPrompt(priorReads: PriorRead[]): string;
|
|
1379
1594
|
|
|
1595
|
+
/**
|
|
1596
|
+
* @neuroverseos/governance/radiant — Memory Palace compression
|
|
1597
|
+
*
|
|
1598
|
+
* Applies the three-tier principle to everything that enters the AI
|
|
1599
|
+
* prompt: raw data is not the memory; structured signals are.
|
|
1600
|
+
*
|
|
1601
|
+
* Compresses worldmodel content, exocortex context, lens data, and
|
|
1602
|
+
* prior reads into the minimum tokens the AI needs to produce a
|
|
1603
|
+
* good interpretation. Cuts prompt size by 60-70%.
|
|
1604
|
+
*/
|
|
1605
|
+
|
|
1606
|
+
/**
|
|
1607
|
+
* Compress a worldmodel markdown file into just the structured elements
|
|
1608
|
+
* the AI needs: invariants, decision priorities, signals, domains,
|
|
1609
|
+
* and mission (one line). Strips prose, commentary, and structure.
|
|
1610
|
+
*/
|
|
1611
|
+
declare function compressWorldmodel(content: string): string;
|
|
1612
|
+
/**
|
|
1613
|
+
* Compress exocortex context into one-line summaries per field.
|
|
1614
|
+
* The AI doesn't need the full prose — just the essence.
|
|
1615
|
+
*/
|
|
1616
|
+
declare function compressExocortex(ctx: ExocortexContext): string;
|
|
1617
|
+
/**
|
|
1618
|
+
* Compress a rendering lens into just what the AI interpreter needs:
|
|
1619
|
+
* evaluation questions + forbidden phrases + jargon translations.
|
|
1620
|
+
* Vocabulary substitutions and voice directives go to the renderer,
|
|
1621
|
+
* not the interpreter.
|
|
1622
|
+
*/
|
|
1623
|
+
declare function compressLens(lens: RenderingLens): {
|
|
1624
|
+
evaluationQuestions: string;
|
|
1625
|
+
scoringRubric: string;
|
|
1626
|
+
forbiddenPhrases: string;
|
|
1627
|
+
jargonTranslations: string;
|
|
1628
|
+
strategicPatterns: string;
|
|
1629
|
+
};
|
|
1630
|
+
/**
|
|
1631
|
+
* Compress prior reads into pattern names + occurrence counts.
|
|
1632
|
+
* The AI needs to know WHAT was seen before and HOW OFTEN — not the
|
|
1633
|
+
* full frontmatter.
|
|
1634
|
+
*/
|
|
1635
|
+
declare function compressPriorReads(reads: PriorRead[]): string;
|
|
1636
|
+
|
|
1380
1637
|
/**
|
|
1381
1638
|
* @neuroverseos/governance/radiant — `think` command
|
|
1382
1639
|
*
|
|
@@ -1492,6 +1749,10 @@ interface EmergentResult {
|
|
|
1492
1749
|
};
|
|
1493
1750
|
/** Event count fetched from GitHub. */
|
|
1494
1751
|
eventCount: number;
|
|
1752
|
+
/** Active adapters used in this read. */
|
|
1753
|
+
activeAdapters?: string[];
|
|
1754
|
+
/** World stack — what worlds were discovered and loaded. */
|
|
1755
|
+
worldStack?: WorldStack;
|
|
1495
1756
|
}
|
|
1496
1757
|
declare function emergent(input: EmergentInput): Promise<EmergentResult>;
|
|
1497
1758
|
|
|
@@ -1531,4 +1792,4 @@ declare function emergent(input: EmergentInput): Promise<EmergentResult>;
|
|
|
1531
1792
|
*/
|
|
1532
1793
|
declare const RADIANT_PACKAGE_VERSION = "0.0.0";
|
|
1533
1794
|
|
|
1534
|
-
export { type Actor, type ActorDomain, type ActorKind, type AlignmentStatus, type BridgingComponent, type BridgingComponentScore, type ClassifiedEvent, type CyberCapability, type CyberDimension, DEFAULT_EVIDENCE_GATE, DEFAULT_SIGNAL_EXTRACTORS, type DiscordFetchOptions, type DiscordSignals, type EmergentInput, type EmergentResult, type Event, type EventReference, type EvidenceGate, type ExemplarRef, type ExocortexContext, type ExtractionResult, type GitHubFetchOptions, type GovernanceAudit, type GovernanceVerdict, type InterpretInput, type InterpretResult, LENSES, type LensVocabulary, type LifeCapability, type LifeDimension, type NotionFetchOptions, type NotionSignals, type ObservedPattern, type OrgScope, type OverlapDef, type PatternEvidence, type PatternPersistence, type PrimaryFrame, type PriorRead, RADIANT_PACKAGE_VERSION, type RadiantAI, type RenderInput, type RenderOutput, type RenderingLens, type RepoScope, type Scope, type Score, type ScoreSentinel, type ScoredObservation, type Signal, type SignalExtractor, type SignalMatrix, type SlackFetchOptions, type SlackSignals, type ThinkInput, type ThinkResult, type ViewLevel, type VoiceDirectives, type VoiceViolation, type WorldmodelItem, auditGovernance, aukiBuilderLens, checkForbiddenPhrases, classifyActorDomain, classifyEvents, composeSystemPrompt, computePersistence, createAnthropicAI, createMockAI, createMockGitHubAdapter, emergent, extractSignals, fetchDiscordActivity, fetchGitHubActivity, fetchGitHubOrgActivity, fetchNotionActivity, fetchSlackActivity, formatDiscordSignalsForPrompt, formatExocortexForPrompt, formatNotionSignalsForPrompt, formatPriorReadsForPrompt, formatScope, formatSlackSignalsForPrompt, formatTeamExocorticesForPrompt, getLens, interpretPatterns, isPresent, isScored, isSentinel, listLenses, loadPriorReads, parseRepoScope, parseScope, presenceAverage, readExocortex, readTeamExocortices, render, scoreComposite, scoreCyber, scoreLife, scoreNeuroVerse, summarizeExocortex, think, updateKnowledge, writeRead };
|
|
1795
|
+
export { type Actor, type ActorDomain, type ActorKind, type AlignmentStatus, type BridgingComponent, type BridgingComponentScore, type ClassifiedEvent, type CyberCapability, type CyberDimension, DEFAULT_EVIDENCE_GATE, DEFAULT_SIGNAL_EXTRACTORS, type DiscordFetchOptions, type DiscordSignals, type DiscoveredWorld, type EmergentInput, type EmergentResult, type Event, type EventReference, type EvidenceGate, type ExemplarRef, type ExocortexContext, type ExtendsConfig, type ExtendsSpec, type ExtractionResult, type Fetcher, type GitHubFetchOptions, type GovernanceAudit, type GovernanceVerdict, type InterpretInput, type InterpretResult, LENSES, type LensVocabulary, type LifeCapability, type LifeDimension, type NotionFetchOptions, type NotionSignals, type ObservedPattern, type OrgScope, type OverlapDef, type ParsedRemote, type PatternEvidence, type PatternPersistence, type PrimaryFrame, type PriorRead, RADIANT_PACKAGE_VERSION, type RadiantAI, type RenderInput, type RenderOutput, type RenderingLens, type RepoScope, type ResolveResult, type Scope, type Score, type ScoreSentinel, type ScoredObservation, type Signal, type SignalExtractor, type SignalMatrix, type SlackFetchOptions, type SlackSignals, type ThinkInput, type ThinkResult, type ViewLevel, type VoiceDirectives, type VoiceViolation, type WorldStack, type WorldmodelItem, auditGovernance, aukiBuilderLens, checkForbiddenPhrases, classifyActorDomain, classifyEvents, composeSystemPrompt, compressExocortex, compressLens, compressPriorReads, compressWorldmodel, computePersistence, createAnthropicAI, createMockAI, createMockGitHubAdapter, detectOrgExtendsSpec, discoverWorlds, emergent, extractSignals, fetchDiscordActivity, fetchGitHubActivity, fetchGitHubOrgActivity, fetchNotionActivity, fetchSlackActivity, formatActiveWorlds, formatDiscordSignalsForPrompt, formatExocortexForPrompt, formatNotionSignalsForPrompt, formatPriorReadsForPrompt, formatScope, formatSlackSignalsForPrompt, formatTeamExocorticesForPrompt, getCacheDir, getLens, getRepoOrigin, interpretPatterns, isPresent, isScored, isSentinel, listLenses, loadExtendsConfig, loadPriorReads, parseExtendsSpec, parseRemoteUrl, parseRepoScope, parseScope, presenceAverage, readExocortex, readOriginRemote, readTeamExocortices, render, resolveAllExtends, resolveExtendsSpec, scoreComposite, scoreCyber, scoreLife, scoreNeuroVerse, sovereignConduitLens, summarizeExocortex, think, updateKnowledge, writeRead };
|
package/dist/radiant/index.d.ts
CHANGED
|
@@ -544,6 +544,31 @@ declare function classifyActorDomain(event: Event): ActorDomain;
|
|
|
544
544
|
*/
|
|
545
545
|
declare const aukiBuilderLens: RenderingLens;
|
|
546
546
|
|
|
547
|
+
/**
|
|
548
|
+
* @neuroverseos/governance/radiant — Sovereign Conduit Lens
|
|
549
|
+
*
|
|
550
|
+
* The rendering lens for the NeuroVerseOS base worldmodel. Where the
|
|
551
|
+
* aukiBuilderLens encodes how Auki-grade builders think and speak,
|
|
552
|
+
* this lens encodes how the Sovereign Conduit thinks and speaks.
|
|
553
|
+
*
|
|
554
|
+
* The voice is fundamentally different from the builder lens:
|
|
555
|
+
* - Warm, not compressed. Accessible, not technical.
|
|
556
|
+
* - Analogies from everyday life (mom rules, friend's house, idea
|
|
557
|
+
* calculator), not from architecture (stacks, bottlenecks, territory).
|
|
558
|
+
* - Emotions named, not contained. When governance works, it feels
|
|
559
|
+
* like trust. When it fails, it feels like being funneled. Say so.
|
|
560
|
+
* - The audience is everyone — leaders, parents, people learning AI,
|
|
561
|
+
* people who don't code. If a mom can't understand the output, the
|
|
562
|
+
* voice is wrong.
|
|
563
|
+
* - Teaching, not lecturing. Every output helps people think for
|
|
564
|
+
* themselves. The difference: lecturing tells you what to think.
|
|
565
|
+
* Teaching helps you think.
|
|
566
|
+
*
|
|
567
|
+
* Tagline: Humanity first. In constant learning. In shared teaching.
|
|
568
|
+
*/
|
|
569
|
+
|
|
570
|
+
declare const sovereignConduitLens: RenderingLens;
|
|
571
|
+
|
|
547
572
|
/**
|
|
548
573
|
* @neuroverseos/governance/radiant/lenses
|
|
549
574
|
*
|
|
@@ -557,10 +582,9 @@ declare const aukiBuilderLens: RenderingLens;
|
|
|
557
582
|
* registered set.
|
|
558
583
|
*
|
|
559
584
|
* Current registry:
|
|
560
|
-
* - auki-builder — Auki's vanguard leadership lens.
|
|
561
|
-
*
|
|
562
|
-
*
|
|
563
|
-
* domain. See ./auki-builder.ts for the content.
|
|
585
|
+
* - auki-builder — Auki's vanguard leadership lens.
|
|
586
|
+
* - sovereign-conduit — NeuroVerseOS base lens. Warm, accessible,
|
|
587
|
+
* teaching. Stewardship / Agency / Integration.
|
|
564
588
|
*
|
|
565
589
|
* To add a new lens:
|
|
566
590
|
* 1. Create src/radiant/lenses/<name>.ts exporting a `RenderingLens`.
|
|
@@ -924,13 +948,17 @@ interface ExocortexContext {
|
|
|
924
948
|
filesLoaded: number;
|
|
925
949
|
}
|
|
926
950
|
/**
|
|
927
|
-
* Read stated intent from an exocortex directory
|
|
951
|
+
* Read stated intent from an exocortex directory, optionally scoped
|
|
952
|
+
* to a specific project.
|
|
928
953
|
*
|
|
929
|
-
*
|
|
930
|
-
*
|
|
931
|
-
*
|
|
954
|
+
* When a repoName is provided (e.g. "reconstruction-server"), the reader
|
|
955
|
+
* looks for a matching subdirectory in the exocortex (symlinked project
|
|
956
|
+
* repos in the Auki exocortex pattern) and reads project-specific
|
|
957
|
+
* sprint.md and roadmap.md alongside the global personal context.
|
|
958
|
+
*
|
|
959
|
+
* Silently skips missing files. Partial context is better than no context.
|
|
932
960
|
*/
|
|
933
|
-
declare function readExocortex(dirPath: string): ExocortexContext;
|
|
961
|
+
declare function readExocortex(dirPath: string, repoName?: string): ExocortexContext;
|
|
934
962
|
/**
|
|
935
963
|
* Format the exocortex context as a section for the AI interpretation
|
|
936
964
|
* prompt. Only includes fields that were actually loaded.
|
|
@@ -1298,6 +1326,193 @@ interface RenderOutput {
|
|
|
1298
1326
|
}
|
|
1299
1327
|
declare function render(input: RenderInput): RenderOutput;
|
|
1300
1328
|
|
|
1329
|
+
/**
|
|
1330
|
+
* @neuroverseos/governance/radiant — extends (org-wide world sharing)
|
|
1331
|
+
*
|
|
1332
|
+
* Lets a repo declare worldmodels that live in another repo, so one
|
|
1333
|
+
* source of truth can govern many repos. Auki has 51 repos — one
|
|
1334
|
+
* `aukiNetwork/worlds` repo holds the canonical worldmodel, every
|
|
1335
|
+
* other repo declares `extends: ["github:aukiNetwork/worlds"]`.
|
|
1336
|
+
*
|
|
1337
|
+
* Spec grammar:
|
|
1338
|
+
* github:OWNER/REPO — latest default branch, repo root
|
|
1339
|
+
* github:OWNER/REPO@REF — specific ref (branch, tag, or sha)
|
|
1340
|
+
* github:OWNER/REPO@REF:SUBPATH — subpath inside the cloned repo
|
|
1341
|
+
* ./relative/path — local dir relative to repo root
|
|
1342
|
+
* /absolute/path — absolute local dir
|
|
1343
|
+
*
|
|
1344
|
+
* github: sources are shallow-cloned into ~/.neuroverse/cache/extends/<hash>/
|
|
1345
|
+
* Cache is reused for 1 hour; set NEUROVERSE_REFRESH=1 to force refetch,
|
|
1346
|
+
* or NEUROVERSE_NO_FETCH=1 to forbid network access (cache-or-nothing).
|
|
1347
|
+
*/
|
|
1348
|
+
interface ExtendsSpec {
|
|
1349
|
+
raw: string;
|
|
1350
|
+
kind: 'github' | 'local';
|
|
1351
|
+
owner?: string;
|
|
1352
|
+
repo?: string;
|
|
1353
|
+
ref?: string;
|
|
1354
|
+
subpath?: string;
|
|
1355
|
+
path?: string;
|
|
1356
|
+
}
|
|
1357
|
+
interface ExtendsConfig {
|
|
1358
|
+
extends?: string[];
|
|
1359
|
+
}
|
|
1360
|
+
interface ResolveResult {
|
|
1361
|
+
spec: ExtendsSpec;
|
|
1362
|
+
dir: string | null;
|
|
1363
|
+
warning?: string;
|
|
1364
|
+
}
|
|
1365
|
+
type Fetcher = (spec: ExtendsSpec, destDir: string) => void;
|
|
1366
|
+
declare function loadExtendsConfig(repoDir: string): ExtendsConfig | null;
|
|
1367
|
+
declare function parseExtendsSpec(raw: string): ExtendsSpec | null;
|
|
1368
|
+
declare function getCacheDir(spec: ExtendsSpec, baseCacheDir?: string): string;
|
|
1369
|
+
declare function resolveExtendsSpec(spec: ExtendsSpec, repoDir: string, options?: {
|
|
1370
|
+
cacheDir?: string;
|
|
1371
|
+
fetcher?: Fetcher;
|
|
1372
|
+
ttlMs?: number;
|
|
1373
|
+
forceRefresh?: boolean;
|
|
1374
|
+
noFetch?: boolean;
|
|
1375
|
+
/** Suppress warnings when the remote source doesn't exist.
|
|
1376
|
+
* Used by the org tier, where a missing <org>/worlds repo is the
|
|
1377
|
+
* common case and should silently skip. */
|
|
1378
|
+
silentOnMissing?: boolean;
|
|
1379
|
+
}): ResolveResult;
|
|
1380
|
+
/**
|
|
1381
|
+
* Detect the conventional org-level worldmodel source from the current
|
|
1382
|
+
* repo's git remote. Returns an ExtendsSpec pointing at `<owner>/worlds`
|
|
1383
|
+
* on the same host, or null if:
|
|
1384
|
+
* - no git repo / no origin remote
|
|
1385
|
+
* - remote is on a non-GitHub host (v1 only supports github.com)
|
|
1386
|
+
* - the current repo IS the worlds repo (avoid self-loop)
|
|
1387
|
+
*
|
|
1388
|
+
* Example: in a repo with origin github.com/NeuroverseOS/foo, this
|
|
1389
|
+
* returns a spec for `github:NeuroverseOS/worlds`. If that repo doesn't
|
|
1390
|
+
* exist on GitHub, discovery's silentOnMissing flag swallows the failure
|
|
1391
|
+
* so nothing noisy surfaces.
|
|
1392
|
+
*/
|
|
1393
|
+
declare function detectOrgExtendsSpec(repoDir: string): ExtendsSpec | null;
|
|
1394
|
+
declare function resolveAllExtends(repoDir: string, options?: {
|
|
1395
|
+
cacheDir?: string;
|
|
1396
|
+
fetcher?: Fetcher;
|
|
1397
|
+
ttlMs?: number;
|
|
1398
|
+
forceRefresh?: boolean;
|
|
1399
|
+
noFetch?: boolean;
|
|
1400
|
+
config?: ExtendsConfig | null;
|
|
1401
|
+
}): ResolveResult[];
|
|
1402
|
+
|
|
1403
|
+
/**
|
|
1404
|
+
* @neuroverseos/governance/radiant — world discovery
|
|
1405
|
+
*
|
|
1406
|
+
* Automatically discovers and loads worldmodels from five sources,
|
|
1407
|
+
* in precedence order (later tiers override earlier ones):
|
|
1408
|
+
*
|
|
1409
|
+
* 1. NeuroVerse base (built-in, universal — always loaded)
|
|
1410
|
+
* 2. User worlds (~/.neuroverse/worlds/ — your personal model)
|
|
1411
|
+
* 3. Org worlds (github:<owner>/worlds for current repo's GitHub org — zero config)
|
|
1412
|
+
* 4. Extends (declared in .neuroverse/config.json — explicit overrides)
|
|
1413
|
+
* 5. Repo worlds (./worlds/ in the current repo — local authority)
|
|
1414
|
+
*
|
|
1415
|
+
* Worlds live where the work lives. You don't switch between them —
|
|
1416
|
+
* you walk into them. Open an Auki repo → Auki's worlds load.
|
|
1417
|
+
* Leave → they disappear. No toggle, no config, no removal.
|
|
1418
|
+
*
|
|
1419
|
+
* The org tier piggybacks on GitHub's existing org structure: discovery
|
|
1420
|
+
* reads .git/config, extracts the owner from the origin remote, and
|
|
1421
|
+
* probes `github:<owner>/worlds`. If the repo exists, its worldmodels
|
|
1422
|
+
* load automatically — no per-repo config needed. Missing silently.
|
|
1423
|
+
*
|
|
1424
|
+
* The extends tier is the explicit override for non-conventional sources
|
|
1425
|
+
* (private mirrors, local paths, alternate orgs).
|
|
1426
|
+
*/
|
|
1427
|
+
|
|
1428
|
+
interface DiscoveredWorld {
|
|
1429
|
+
name: string;
|
|
1430
|
+
source: 'base' | 'user' | 'org' | 'extends' | 'repo';
|
|
1431
|
+
path: string;
|
|
1432
|
+
content: string;
|
|
1433
|
+
/** For extends- and org-sourced worlds: the resolved spec. */
|
|
1434
|
+
extendsFrom?: string;
|
|
1435
|
+
}
|
|
1436
|
+
interface WorldStack {
|
|
1437
|
+
worlds: DiscoveredWorld[];
|
|
1438
|
+
/** Combined content for the AI prompt (compressed by the caller). */
|
|
1439
|
+
combinedContent: string;
|
|
1440
|
+
/** Human-readable list of what's loaded. */
|
|
1441
|
+
summary: string;
|
|
1442
|
+
/** Non-fatal warnings (e.g. failed extends fetch, stale cache). */
|
|
1443
|
+
warnings: string[];
|
|
1444
|
+
}
|
|
1445
|
+
/**
|
|
1446
|
+
* Discover and load worldmodels from all three sources.
|
|
1447
|
+
*
|
|
1448
|
+
* @param repoDir — the repo being analyzed (for repo-level worlds).
|
|
1449
|
+
* If not provided, skips repo-level discovery.
|
|
1450
|
+
* @param userWorldsDir — override for user worlds location.
|
|
1451
|
+
* Default: ~/.neuroverse/worlds/
|
|
1452
|
+
* @param explicitWorldsDir — explicit --worlds flag (overrides discovery).
|
|
1453
|
+
* When provided, this is used AS the repo-level source.
|
|
1454
|
+
* @param scopeOwner — GitHub org/owner hint derived from a CLI scope
|
|
1455
|
+
* argument (e.g. the "NeuroverseOS" in `radiant emergent NeuroverseOS/`).
|
|
1456
|
+
* When provided, discovery also probes `github:<scopeOwner>/worlds`
|
|
1457
|
+
* in the org tier. This lets the command work without a local clone —
|
|
1458
|
+
* the scope itself tells us which org's worlds to load.
|
|
1459
|
+
*/
|
|
1460
|
+
declare function discoverWorlds(options?: {
|
|
1461
|
+
repoDir?: string;
|
|
1462
|
+
userWorldsDir?: string;
|
|
1463
|
+
explicitWorldsDir?: string;
|
|
1464
|
+
scopeOwner?: string;
|
|
1465
|
+
/** Override the extends cache location (default ~/.neuroverse/cache/extends/). */
|
|
1466
|
+
extendsCacheDir?: string;
|
|
1467
|
+
/** Inject a fetcher (tests use this to avoid real network calls). */
|
|
1468
|
+
extendsFetcher?: Fetcher;
|
|
1469
|
+
/** Cache TTL for github: extends (default 1 hour). */
|
|
1470
|
+
extendsTtlMs?: number;
|
|
1471
|
+
/** Disable extends resolution entirely. */
|
|
1472
|
+
disableExtends?: boolean;
|
|
1473
|
+
/** Disable org auto-detect tier. Also disabled by NEUROVERSE_NO_ORG=1. */
|
|
1474
|
+
disableOrg?: boolean;
|
|
1475
|
+
}): WorldStack;
|
|
1476
|
+
/**
|
|
1477
|
+
* Format the active worlds list for display in the output header.
|
|
1478
|
+
*/
|
|
1479
|
+
declare function formatActiveWorlds(stack: WorldStack): string;
|
|
1480
|
+
|
|
1481
|
+
/**
|
|
1482
|
+
* @neuroverseos/governance/radiant — git remote introspection
|
|
1483
|
+
*
|
|
1484
|
+
* Reads the current repo's origin remote and parses out the host/owner/repo.
|
|
1485
|
+
* Used by the org-level discovery tier to ask "what GitHub org owns this
|
|
1486
|
+
* repo?" and then look for a conventional <org>/worlds source of truth.
|
|
1487
|
+
*
|
|
1488
|
+
* Works for both `.git/` directories and `.git` files (git worktrees /
|
|
1489
|
+
* submodules, which store a `gitdir: <path>` pointer instead of a full dir).
|
|
1490
|
+
*/
|
|
1491
|
+
interface ParsedRemote {
|
|
1492
|
+
host: string;
|
|
1493
|
+
owner: string;
|
|
1494
|
+
repo: string;
|
|
1495
|
+
}
|
|
1496
|
+
/**
|
|
1497
|
+
* Read the `origin` remote URL from a repo's git config.
|
|
1498
|
+
* Returns null if no repo, no remote, or read fails.
|
|
1499
|
+
*/
|
|
1500
|
+
declare function readOriginRemote(repoDir: string): string | null;
|
|
1501
|
+
/**
|
|
1502
|
+
* Parse a git remote URL into host/owner/repo.
|
|
1503
|
+
*
|
|
1504
|
+
* Supported forms:
|
|
1505
|
+
* https://github.com/OWNER/REPO(.git)
|
|
1506
|
+
* http://github.com/OWNER/REPO(.git)
|
|
1507
|
+
* git@github.com:OWNER/REPO(.git)
|
|
1508
|
+
* ssh://git@github.com/OWNER/REPO(.git)
|
|
1509
|
+
*/
|
|
1510
|
+
declare function parseRemoteUrl(url: string): ParsedRemote | null;
|
|
1511
|
+
/**
|
|
1512
|
+
* One-shot: read origin and parse it.
|
|
1513
|
+
*/
|
|
1514
|
+
declare function getRepoOrigin(repoDir: string): ParsedRemote | null;
|
|
1515
|
+
|
|
1301
1516
|
/**
|
|
1302
1517
|
* @neuroverseos/governance/radiant — Memory Palace file operations
|
|
1303
1518
|
*
|
|
@@ -1377,6 +1592,48 @@ declare function computePersistence(priorReads: PriorRead[], currentPatternNames
|
|
|
1377
1592
|
*/
|
|
1378
1593
|
declare function formatPriorReadsForPrompt(priorReads: PriorRead[]): string;
|
|
1379
1594
|
|
|
1595
|
+
/**
|
|
1596
|
+
* @neuroverseos/governance/radiant — Memory Palace compression
|
|
1597
|
+
*
|
|
1598
|
+
* Applies the three-tier principle to everything that enters the AI
|
|
1599
|
+
* prompt: raw data is not the memory; structured signals are.
|
|
1600
|
+
*
|
|
1601
|
+
* Compresses worldmodel content, exocortex context, lens data, and
|
|
1602
|
+
* prior reads into the minimum tokens the AI needs to produce a
|
|
1603
|
+
* good interpretation. Cuts prompt size by 60-70%.
|
|
1604
|
+
*/
|
|
1605
|
+
|
|
1606
|
+
/**
|
|
1607
|
+
* Compress a worldmodel markdown file into just the structured elements
|
|
1608
|
+
* the AI needs: invariants, decision priorities, signals, domains,
|
|
1609
|
+
* and mission (one line). Strips prose, commentary, and structure.
|
|
1610
|
+
*/
|
|
1611
|
+
declare function compressWorldmodel(content: string): string;
|
|
1612
|
+
/**
|
|
1613
|
+
* Compress exocortex context into one-line summaries per field.
|
|
1614
|
+
* The AI doesn't need the full prose — just the essence.
|
|
1615
|
+
*/
|
|
1616
|
+
declare function compressExocortex(ctx: ExocortexContext): string;
|
|
1617
|
+
/**
|
|
1618
|
+
* Compress a rendering lens into just what the AI interpreter needs:
|
|
1619
|
+
* evaluation questions + forbidden phrases + jargon translations.
|
|
1620
|
+
* Vocabulary substitutions and voice directives go to the renderer,
|
|
1621
|
+
* not the interpreter.
|
|
1622
|
+
*/
|
|
1623
|
+
declare function compressLens(lens: RenderingLens): {
|
|
1624
|
+
evaluationQuestions: string;
|
|
1625
|
+
scoringRubric: string;
|
|
1626
|
+
forbiddenPhrases: string;
|
|
1627
|
+
jargonTranslations: string;
|
|
1628
|
+
strategicPatterns: string;
|
|
1629
|
+
};
|
|
1630
|
+
/**
|
|
1631
|
+
* Compress prior reads into pattern names + occurrence counts.
|
|
1632
|
+
* The AI needs to know WHAT was seen before and HOW OFTEN — not the
|
|
1633
|
+
* full frontmatter.
|
|
1634
|
+
*/
|
|
1635
|
+
declare function compressPriorReads(reads: PriorRead[]): string;
|
|
1636
|
+
|
|
1380
1637
|
/**
|
|
1381
1638
|
* @neuroverseos/governance/radiant — `think` command
|
|
1382
1639
|
*
|
|
@@ -1492,6 +1749,10 @@ interface EmergentResult {
|
|
|
1492
1749
|
};
|
|
1493
1750
|
/** Event count fetched from GitHub. */
|
|
1494
1751
|
eventCount: number;
|
|
1752
|
+
/** Active adapters used in this read. */
|
|
1753
|
+
activeAdapters?: string[];
|
|
1754
|
+
/** World stack — what worlds were discovered and loaded. */
|
|
1755
|
+
worldStack?: WorldStack;
|
|
1495
1756
|
}
|
|
1496
1757
|
declare function emergent(input: EmergentInput): Promise<EmergentResult>;
|
|
1497
1758
|
|
|
@@ -1531,4 +1792,4 @@ declare function emergent(input: EmergentInput): Promise<EmergentResult>;
|
|
|
1531
1792
|
*/
|
|
1532
1793
|
declare const RADIANT_PACKAGE_VERSION = "0.0.0";
|
|
1533
1794
|
|
|
1534
|
-
export { type Actor, type ActorDomain, type ActorKind, type AlignmentStatus, type BridgingComponent, type BridgingComponentScore, type ClassifiedEvent, type CyberCapability, type CyberDimension, DEFAULT_EVIDENCE_GATE, DEFAULT_SIGNAL_EXTRACTORS, type DiscordFetchOptions, type DiscordSignals, type EmergentInput, type EmergentResult, type Event, type EventReference, type EvidenceGate, type ExemplarRef, type ExocortexContext, type ExtractionResult, type GitHubFetchOptions, type GovernanceAudit, type GovernanceVerdict, type InterpretInput, type InterpretResult, LENSES, type LensVocabulary, type LifeCapability, type LifeDimension, type NotionFetchOptions, type NotionSignals, type ObservedPattern, type OrgScope, type OverlapDef, type PatternEvidence, type PatternPersistence, type PrimaryFrame, type PriorRead, RADIANT_PACKAGE_VERSION, type RadiantAI, type RenderInput, type RenderOutput, type RenderingLens, type RepoScope, type Scope, type Score, type ScoreSentinel, type ScoredObservation, type Signal, type SignalExtractor, type SignalMatrix, type SlackFetchOptions, type SlackSignals, type ThinkInput, type ThinkResult, type ViewLevel, type VoiceDirectives, type VoiceViolation, type WorldmodelItem, auditGovernance, aukiBuilderLens, checkForbiddenPhrases, classifyActorDomain, classifyEvents, composeSystemPrompt, computePersistence, createAnthropicAI, createMockAI, createMockGitHubAdapter, emergent, extractSignals, fetchDiscordActivity, fetchGitHubActivity, fetchGitHubOrgActivity, fetchNotionActivity, fetchSlackActivity, formatDiscordSignalsForPrompt, formatExocortexForPrompt, formatNotionSignalsForPrompt, formatPriorReadsForPrompt, formatScope, formatSlackSignalsForPrompt, formatTeamExocorticesForPrompt, getLens, interpretPatterns, isPresent, isScored, isSentinel, listLenses, loadPriorReads, parseRepoScope, parseScope, presenceAverage, readExocortex, readTeamExocortices, render, scoreComposite, scoreCyber, scoreLife, scoreNeuroVerse, summarizeExocortex, think, updateKnowledge, writeRead };
|
|
1795
|
+
export { type Actor, type ActorDomain, type ActorKind, type AlignmentStatus, type BridgingComponent, type BridgingComponentScore, type ClassifiedEvent, type CyberCapability, type CyberDimension, DEFAULT_EVIDENCE_GATE, DEFAULT_SIGNAL_EXTRACTORS, type DiscordFetchOptions, type DiscordSignals, type DiscoveredWorld, type EmergentInput, type EmergentResult, type Event, type EventReference, type EvidenceGate, type ExemplarRef, type ExocortexContext, type ExtendsConfig, type ExtendsSpec, type ExtractionResult, type Fetcher, type GitHubFetchOptions, type GovernanceAudit, type GovernanceVerdict, type InterpretInput, type InterpretResult, LENSES, type LensVocabulary, type LifeCapability, type LifeDimension, type NotionFetchOptions, type NotionSignals, type ObservedPattern, type OrgScope, type OverlapDef, type ParsedRemote, type PatternEvidence, type PatternPersistence, type PrimaryFrame, type PriorRead, RADIANT_PACKAGE_VERSION, type RadiantAI, type RenderInput, type RenderOutput, type RenderingLens, type RepoScope, type ResolveResult, type Scope, type Score, type ScoreSentinel, type ScoredObservation, type Signal, type SignalExtractor, type SignalMatrix, type SlackFetchOptions, type SlackSignals, type ThinkInput, type ThinkResult, type ViewLevel, type VoiceDirectives, type VoiceViolation, type WorldStack, type WorldmodelItem, auditGovernance, aukiBuilderLens, checkForbiddenPhrases, classifyActorDomain, classifyEvents, composeSystemPrompt, compressExocortex, compressLens, compressPriorReads, compressWorldmodel, computePersistence, createAnthropicAI, createMockAI, createMockGitHubAdapter, detectOrgExtendsSpec, discoverWorlds, emergent, extractSignals, fetchDiscordActivity, fetchGitHubActivity, fetchGitHubOrgActivity, fetchNotionActivity, fetchSlackActivity, formatActiveWorlds, formatDiscordSignalsForPrompt, formatExocortexForPrompt, formatNotionSignalsForPrompt, formatPriorReadsForPrompt, formatScope, formatSlackSignalsForPrompt, formatTeamExocorticesForPrompt, getCacheDir, getLens, getRepoOrigin, interpretPatterns, isPresent, isScored, isSentinel, listLenses, loadExtendsConfig, loadPriorReads, parseExtendsSpec, parseRemoteUrl, parseRepoScope, parseScope, presenceAverage, readExocortex, readOriginRemote, readTeamExocortices, render, resolveAllExtends, resolveExtendsSpec, scoreComposite, scoreCyber, scoreLife, scoreNeuroVerse, sovereignConduitLens, summarizeExocortex, think, updateKnowledge, writeRead };
|