@poolzin/pool-bot 2026.1.30 → 2026.1.32
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/build-info.json +3 -3
- package/dist/gateway/hooks/index.js +6 -27
- package/package.json +1 -1
package/dist/build-info.json
CHANGED
|
@@ -24,30 +24,9 @@ defaultOnSessionStart, defaultOnSessionEnd, registerDefaultHooks,
|
|
|
24
24
|
clearAllHooks, } from "./lifecycle-hooks.js";
|
|
25
25
|
// Integration with agent events
|
|
26
26
|
export { startLifecycleHooksIntegration, getIntegrationStats, isSessionTracked, getTrackedSessionInfo, clearTrackedSessions, removeTrackedSession, } from "./lifecycle-hooks-integration.js";
|
|
27
|
-
// Tool usage capture (Day 2 -
|
|
28
|
-
|
|
29
|
-
//
|
|
30
|
-
//
|
|
31
|
-
//
|
|
32
|
-
|
|
33
|
-
// Progressive disclosure (Day 3 - PHASE 5 COMPLETE - FEATURE FLAGGED, OPT-IN)
|
|
34
|
-
// export {
|
|
35
|
-
// memory_search_v2,
|
|
36
|
-
// searchIndex,
|
|
37
|
-
// searchTimeline,
|
|
38
|
-
// searchDetails,
|
|
39
|
-
// clearProgressiveDisclosureCache,
|
|
40
|
-
// resetProgressiveDisclosure,
|
|
41
|
-
// getProgressiveDisclosureStats,
|
|
42
|
-
// PROGRESSIVE_DISCLOSURE_ENABLED,
|
|
43
|
-
// type MemorySearchResultV2,
|
|
44
|
-
// type SearchResult,
|
|
45
|
-
// type TimelineEntry,
|
|
46
|
-
// type MemoryDetail,
|
|
47
|
-
// type SearchMetadata,
|
|
48
|
-
// type SearchLayer,
|
|
49
|
-
// type MemorySearchOptions,
|
|
50
|
-
// type QueryFilter,
|
|
51
|
-
// type SearchResultOrError,
|
|
52
|
-
// type SearchError,
|
|
53
|
-
// } from "./progressive-disclosure.js";
|
|
27
|
+
// Tool usage capture (Day 2 - ACTIVE, feature-flagged)
|
|
28
|
+
export { toolUsageCaptureHook, loadSessionToolUsage, saveSessionToolUsage, } from "./tool-usage-capture.js";
|
|
29
|
+
// Progressive disclosure (Day 3 - ACTIVE, feature-flagged, OPT-IN)
|
|
30
|
+
// Feature flag: PROGRESSIVE_DISCLOSURE_FLAGS.ENABLED = false (OFF by default)
|
|
31
|
+
// Safe: Returns error "feature disabled" if called without enabling flag
|
|
32
|
+
export { memory_search_v2, searchIndex, searchTimeline, searchDetails, clearProgressiveDisclosureCache, resetProgressiveDisclosure, getProgressiveDisclosureStats, PROGRESSIVE_DISCLOSURE_ENABLED, } from "./progressive-disclosure.js";
|