@hiveai/core 0.13.8 → 0.13.9
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/dist/index.d.ts +52 -3
- package/dist/index.js +201 -126
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -566,6 +566,49 @@ interface ImpactSummary {
|
|
|
566
566
|
/** Roll up a set of impact scores into tier counts. */
|
|
567
567
|
declare function summarizeImpact(scores: ImpactScore[]): ImpactSummary;
|
|
568
568
|
|
|
569
|
+
type PreventionSource = "sensor" | "anti-pattern";
|
|
570
|
+
interface PreventionEvent {
|
|
571
|
+
/** ISO timestamp of the catch. */
|
|
572
|
+
at: string;
|
|
573
|
+
/** Memory id whose lesson fired. */
|
|
574
|
+
id: string;
|
|
575
|
+
/** Which gate path recorded it. */
|
|
576
|
+
source: PreventionSource;
|
|
577
|
+
}
|
|
578
|
+
declare function preventionLogPath(paths: HaivePaths): string;
|
|
579
|
+
/** Append one catch to the log. Best-effort, creates the dir on demand. */
|
|
580
|
+
declare function appendPreventionEvent(paths: HaivePaths, event: PreventionEvent): Promise<void>;
|
|
581
|
+
/** Read all catch events (skips malformed lines). */
|
|
582
|
+
declare function loadPreventionEvents(paths: HaivePaths): Promise<PreventionEvent[]>;
|
|
583
|
+
interface PreventionTrend {
|
|
584
|
+
/** Catches in the last 7 days. */
|
|
585
|
+
last_7d: number;
|
|
586
|
+
/** Catches in the last 30 days. */
|
|
587
|
+
last_30d: number;
|
|
588
|
+
/** Catch counts per ISO week, oldest → newest, for the last N weeks (default 6). */
|
|
589
|
+
weekly: number[];
|
|
590
|
+
}
|
|
591
|
+
declare function computePreventionTrend(events: PreventionEvent[], now?: Date, weeks?: number): PreventionTrend;
|
|
592
|
+
interface RecurrenceRow {
|
|
593
|
+
id: string;
|
|
594
|
+
/** Total catches for this memory. */
|
|
595
|
+
catches: number;
|
|
596
|
+
/** Number of distinct UTC days the lesson fired — the recurrence signal. */
|
|
597
|
+
distinct_days: number;
|
|
598
|
+
last_at: string;
|
|
599
|
+
}
|
|
600
|
+
interface RecurrenceReport {
|
|
601
|
+
/**
|
|
602
|
+
* Memories whose lesson was caught on >= 2 distinct days — i.e. the mistake was RE-INTRODUCED
|
|
603
|
+
* after it had already been captured and caught once. A high count means a recurring problem the
|
|
604
|
+
* team keeps reintroducing (the guardrail is earning its keep, and the root cause may need a
|
|
605
|
+
* stronger fix than a memory).
|
|
606
|
+
*/
|
|
607
|
+
recurring_count: number;
|
|
608
|
+
top: RecurrenceRow[];
|
|
609
|
+
}
|
|
610
|
+
declare function computeRecurrence(events: PreventionEvent[]): RecurrenceReport;
|
|
611
|
+
|
|
569
612
|
/**
|
|
570
613
|
* A rigorous, model-free, repeatable evaluation of hAIve's core promise: surfacing
|
|
571
614
|
* the right knowledge and guardrails at the right moment. Unlike the agent benchmark
|
|
@@ -1597,6 +1640,8 @@ interface DashboardOptions {
|
|
|
1597
1640
|
/** Dormancy window for impact scoring. Defaults to impact's own default. */
|
|
1598
1641
|
dormantDays?: number;
|
|
1599
1642
|
now?: Date;
|
|
1643
|
+
/** Prevention event log (from `loadPreventionEvents`) — powers the trend + recurrence rollups. */
|
|
1644
|
+
preventionEvents?: PreventionEvent[];
|
|
1600
1645
|
}
|
|
1601
1646
|
interface ImpactRow {
|
|
1602
1647
|
id: string;
|
|
@@ -1658,12 +1703,16 @@ interface DashboardReport {
|
|
|
1658
1703
|
decaying: number;
|
|
1659
1704
|
top_dormant: DormantRow[];
|
|
1660
1705
|
};
|
|
1661
|
-
/** OUTCOME measurement: prevention events = times a memory's sensor fired on a real
|
|
1662
|
-
* intercepting a known mistake. Distinct from retrieval (reads) — demonstrated value. */
|
|
1706
|
+
/** OUTCOME measurement: prevention events = times a memory's sensor/anti-pattern fired on a real
|
|
1707
|
+
* diff, intercepting a known mistake. Distinct from retrieval (reads) — demonstrated value. */
|
|
1663
1708
|
prevention: {
|
|
1664
1709
|
total_events: number;
|
|
1665
1710
|
memories_with_catches: number;
|
|
1666
1711
|
top: PreventionRow[];
|
|
1712
|
+
/** Catch volume over time (from the prevention event log). */
|
|
1713
|
+
trend: PreventionTrend;
|
|
1714
|
+
/** Lessons re-introduced after capture (caught on >= 2 distinct days). */
|
|
1715
|
+
recurrence: RecurrenceReport;
|
|
1667
1716
|
};
|
|
1668
1717
|
corpus: {
|
|
1669
1718
|
/** Number of memory files (policy corpus, excludes session_recap). */
|
|
@@ -1676,4 +1725,4 @@ interface DashboardReport {
|
|
|
1676
1725
|
/** Build the full observability rollup from the loaded corpus + usage index. Pure. */
|
|
1677
1726
|
declare function buildDashboard(memories: LoadedMemory[], usage: UsageIndex, options?: DashboardOptions): DashboardReport;
|
|
1678
1727
|
|
|
1679
|
-
export { AUTOPILOT_DEFAULTS, type Activation, type ActivationContext, ActivationSchema, type Anchor, AnchorSchema, type AntiPatternGate, type AutoPromoteRule, BRIEFING_MARKER_TTL_MS, BRIEFING_PRESET_DEFAULTS, type BreakingChange, type BriefingBudgetNumbers, type BriefingBudgetPreset, type BriefingMarker, type BudgetPart, type BudgetSlice, type BuildCodeMapOptions, CHARS_PER_TOKEN, CODE_MAP_FILE, CODE_STOPWORDS, CONFIG_FILE, type CodeExport, type CodeExportKind, type CodeFileEntry, type CodeMap, type CodeMapQueryOptions, type CollectTimelineOpts, type ConfidenceLevel, type ConfidenceThresholds, type ConflictCandidatePair, type ConflictCandidatesOpts, type ContractDiffResult, type ContractFile, type ContractSnapshot, CrossRepoProvenanceSchema, type CrossRepoReport, type CrossRepoSource, DECAY_DAYS, DEFAULT_AUTO_PROMOTE_RULE, DEFAULT_CONFIDENCE_THRESHOLDS, DEFAULT_CONFIG, DEFAULT_DORMANT_DAYS, type DashboardOptions, type DashboardReport, type DepChange, type DepTrackResult, type DependencySnapshot, type DocFrequency, type DormantRow, type DraftOptions, type DraftsOptions, type EvalDelta, type EvalReport, type EvalSpec, type Finding, type FindingSeverity, GUESSABLE_THRESHOLD, HAIVE_DIR, type HaiveConfig, type HaivePaths, type ImpactOptions, type ImpactRow, type ImpactScore, type ImpactSummary, type ImpactTier, type LexicalRankResult, type LoadedMemory, MEMORIES_DIR, MIN_WORD_LEN, type Memory, type MemoryDraft, type MemoryFrontmatter, MemoryFrontmatterSchema, type MemoryScope, MemoryScopeSchema, type MemoryStatus, MemoryStatusSchema, type MemoryType, MemoryTypeSchema, type MemoryUsage, type MetricDelta, PREVENTION_DEBOUNCE_MS, PROJECT_CONTEXT_FILE, type PreventionRow, RUNTIME_JOURNAL_FILENAME, type ResolveProjectInfo, type RetirementSignal, type RetrievalAggregate, type RetrievalCase, type RetrievalCaseResult, type RuntimeJournalEntry, SESSION_RECAP_TTL_MS, STACK_PACK_TAG, type SelfEvalOptions, type Sensor, type SensorAggregate, type SensorCase, type SensorCaseResult, type SensorHit, type SensorRow, SensorSchema, type SensorSuggestionOptions, type SensorTarget, type SkillActivation, type TimelineEntry, type TopicStatusPair, type TruncateOptions, type TruncateResult, USAGE_FILE, USAGE_LOG_DIR, USAGE_LOG_FILE, type UsageAggregate, type UsageEvent, type UsageIndex, type VerifyOptions, type VerifyResult, addedLinesFromDiff, aggregateRetrieval, aggregateSensors, aggregateUsage, allocateBudget, antiPatternGateParams, appendRuntimeJournalEntry, appendUsageEvent, briefingMarkerPath, briefingMarkersDir, buildCodeMap, buildDashboard, buildDocFrequency, buildFrontmatter, buildReport, bumpRead, codeMapPath, collectTimelineEntries, compareEvalReports, compareImpact, compileRegexSensor, computeImpact, configPath, contractLockPath, deriveConfidence, diffContract, diffHasDistinctiveOverlap, distinctiveCap, draftsFromFindings, emptyUsage, emptyUsageIndex, enforcementDir, estimateTokens, evaluateSkillActivation, extractActionsBriefBody, extractSnippet, filterNewDrafts, findLexicalConflictPairs, findProjectRoot, findTopicStatusConflictPairs, findingBody, findingToDraft, firstMemoryOneLine, getUsage, globToRegExp, hasRecentBriefingMarker, inferModulesFromPaths, isAutoPromoteEligible, isDecaying, isDistinctiveToken, isFreshIsoDate, isGlobPath, isLikelyGuessable, isRetiredMemory, isSkill, isSkillSuppressed, isStackPackSeed, listMarkdownFilesRecursive, literalMatchesAllTokens, literalMatchesAnyToken, loadCodeMap, loadConfig, loadConfigSync, loadMemoriesFromDir, loadMemory, loadUsageIndex, memoryFilePath, memoryMatchesAnchorPaths, newMemoryId, normalizeFindingSeverity, normalizeSessionId, overallScore, parseFindings, parseMemory, parseSarif, parseSince, parseSonar, pathsOverlap, pickSnippetNeedle, pullCrossRepoSources, queryCodeMap, rankMemoriesLexical, readRecentBriefingMarker, readRuntimeJournalTail, readUsageEvents, recordApplied, recordPrevention, recordRejection, relPathFrom, resolveBriefingBudget, resolveHaivePaths, resolveManifestFiles, resolveProjectInfo, retirementSignal, runRegexSensor, runSensors, runtimeJournalPath, saveCodeMap, saveConfig, saveUsageIndex, scoreRetrievalCase, scoreSensorCase, sensorAppliesToPath, sensorTargetsFromDiff, serializeMemory, snapshotContract, specificityScore, stripPrivate, suggestSensorFromMemory, suggestTopicKey, summarizeImpact, synthesizeSelfEvalCases, titleFromBody, tokenizeQuery, tokenizeWords, trackDependencies, trackReads, truncateToTokens, usageLogPath, usageLogSize, usagePath, verifyAnchor, watchContracts, writeBriefingMarker };
|
|
1728
|
+
export { AUTOPILOT_DEFAULTS, type Activation, type ActivationContext, ActivationSchema, type Anchor, AnchorSchema, type AntiPatternGate, type AutoPromoteRule, BRIEFING_MARKER_TTL_MS, BRIEFING_PRESET_DEFAULTS, type BreakingChange, type BriefingBudgetNumbers, type BriefingBudgetPreset, type BriefingMarker, type BudgetPart, type BudgetSlice, type BuildCodeMapOptions, CHARS_PER_TOKEN, CODE_MAP_FILE, CODE_STOPWORDS, CONFIG_FILE, type CodeExport, type CodeExportKind, type CodeFileEntry, type CodeMap, type CodeMapQueryOptions, type CollectTimelineOpts, type ConfidenceLevel, type ConfidenceThresholds, type ConflictCandidatePair, type ConflictCandidatesOpts, type ContractDiffResult, type ContractFile, type ContractSnapshot, CrossRepoProvenanceSchema, type CrossRepoReport, type CrossRepoSource, DECAY_DAYS, DEFAULT_AUTO_PROMOTE_RULE, DEFAULT_CONFIDENCE_THRESHOLDS, DEFAULT_CONFIG, DEFAULT_DORMANT_DAYS, type DashboardOptions, type DashboardReport, type DepChange, type DepTrackResult, type DependencySnapshot, type DocFrequency, type DormantRow, type DraftOptions, type DraftsOptions, type EvalDelta, type EvalReport, type EvalSpec, type Finding, type FindingSeverity, GUESSABLE_THRESHOLD, HAIVE_DIR, type HaiveConfig, type HaivePaths, type ImpactOptions, type ImpactRow, type ImpactScore, type ImpactSummary, type ImpactTier, type LexicalRankResult, type LoadedMemory, MEMORIES_DIR, MIN_WORD_LEN, type Memory, type MemoryDraft, type MemoryFrontmatter, MemoryFrontmatterSchema, type MemoryScope, MemoryScopeSchema, type MemoryStatus, MemoryStatusSchema, type MemoryType, MemoryTypeSchema, type MemoryUsage, type MetricDelta, PREVENTION_DEBOUNCE_MS, PROJECT_CONTEXT_FILE, type PreventionEvent, type PreventionRow, type PreventionSource, type PreventionTrend, RUNTIME_JOURNAL_FILENAME, type RecurrenceReport, type RecurrenceRow, type ResolveProjectInfo, type RetirementSignal, type RetrievalAggregate, type RetrievalCase, type RetrievalCaseResult, type RuntimeJournalEntry, SESSION_RECAP_TTL_MS, STACK_PACK_TAG, type SelfEvalOptions, type Sensor, type SensorAggregate, type SensorCase, type SensorCaseResult, type SensorHit, type SensorRow, SensorSchema, type SensorSuggestionOptions, type SensorTarget, type SkillActivation, type TimelineEntry, type TopicStatusPair, type TruncateOptions, type TruncateResult, USAGE_FILE, USAGE_LOG_DIR, USAGE_LOG_FILE, type UsageAggregate, type UsageEvent, type UsageIndex, type VerifyOptions, type VerifyResult, addedLinesFromDiff, aggregateRetrieval, aggregateSensors, aggregateUsage, allocateBudget, antiPatternGateParams, appendPreventionEvent, appendRuntimeJournalEntry, appendUsageEvent, briefingMarkerPath, briefingMarkersDir, buildCodeMap, buildDashboard, buildDocFrequency, buildFrontmatter, buildReport, bumpRead, codeMapPath, collectTimelineEntries, compareEvalReports, compareImpact, compileRegexSensor, computeImpact, computePreventionTrend, computeRecurrence, configPath, contractLockPath, deriveConfidence, diffContract, diffHasDistinctiveOverlap, distinctiveCap, draftsFromFindings, emptyUsage, emptyUsageIndex, enforcementDir, estimateTokens, evaluateSkillActivation, extractActionsBriefBody, extractSnippet, filterNewDrafts, findLexicalConflictPairs, findProjectRoot, findTopicStatusConflictPairs, findingBody, findingToDraft, firstMemoryOneLine, getUsage, globToRegExp, hasRecentBriefingMarker, inferModulesFromPaths, isAutoPromoteEligible, isDecaying, isDistinctiveToken, isFreshIsoDate, isGlobPath, isLikelyGuessable, isRetiredMemory, isSkill, isSkillSuppressed, isStackPackSeed, listMarkdownFilesRecursive, literalMatchesAllTokens, literalMatchesAnyToken, loadCodeMap, loadConfig, loadConfigSync, loadMemoriesFromDir, loadMemory, loadPreventionEvents, loadUsageIndex, memoryFilePath, memoryMatchesAnchorPaths, newMemoryId, normalizeFindingSeverity, normalizeSessionId, overallScore, parseFindings, parseMemory, parseSarif, parseSince, parseSonar, pathsOverlap, pickSnippetNeedle, preventionLogPath, pullCrossRepoSources, queryCodeMap, rankMemoriesLexical, readRecentBriefingMarker, readRuntimeJournalTail, readUsageEvents, recordApplied, recordPrevention, recordRejection, relPathFrom, resolveBriefingBudget, resolveHaivePaths, resolveManifestFiles, resolveProjectInfo, retirementSignal, runRegexSensor, runSensors, runtimeJournalPath, saveCodeMap, saveConfig, saveUsageIndex, scoreRetrievalCase, scoreSensorCase, sensorAppliesToPath, sensorTargetsFromDiff, serializeMemory, snapshotContract, specificityScore, stripPrivate, suggestSensorFromMemory, suggestTopicKey, summarizeImpact, synthesizeSelfEvalCases, titleFromBody, tokenizeQuery, tokenizeWords, trackDependencies, trackReads, truncateToTokens, usageLogPath, usageLogSize, usagePath, verifyAnchor, watchContracts, writeBriefingMarker };
|