sessionlog 0.0.1

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.
Files changed (219) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +388 -0
  3. package/dist/agent/agents/claude-code.d.ts +76 -0
  4. package/dist/agent/agents/claude-code.d.ts.map +1 -0
  5. package/dist/agent/agents/claude-code.js +769 -0
  6. package/dist/agent/agents/claude-code.js.map +1 -0
  7. package/dist/agent/agents/cursor.d.ts +35 -0
  8. package/dist/agent/agents/cursor.d.ts.map +1 -0
  9. package/dist/agent/agents/cursor.js +294 -0
  10. package/dist/agent/agents/cursor.js.map +1 -0
  11. package/dist/agent/agents/gemini-cli.d.ts +62 -0
  12. package/dist/agent/agents/gemini-cli.d.ts.map +1 -0
  13. package/dist/agent/agents/gemini-cli.js +474 -0
  14. package/dist/agent/agents/gemini-cli.js.map +1 -0
  15. package/dist/agent/agents/opencode.d.ts +100 -0
  16. package/dist/agent/agents/opencode.d.ts.map +1 -0
  17. package/dist/agent/agents/opencode.js +423 -0
  18. package/dist/agent/agents/opencode.js.map +1 -0
  19. package/dist/agent/registry.d.ts +54 -0
  20. package/dist/agent/registry.d.ts.map +1 -0
  21. package/dist/agent/registry.js +123 -0
  22. package/dist/agent/registry.js.map +1 -0
  23. package/dist/agent/session-types.d.ts +45 -0
  24. package/dist/agent/session-types.d.ts.map +1 -0
  25. package/dist/agent/session-types.js +48 -0
  26. package/dist/agent/session-types.js.map +1 -0
  27. package/dist/agent/types.d.ts +126 -0
  28. package/dist/agent/types.d.ts.map +1 -0
  29. package/dist/agent/types.js +40 -0
  30. package/dist/agent/types.js.map +1 -0
  31. package/dist/cli.d.ts +12 -0
  32. package/dist/cli.d.ts.map +1 -0
  33. package/dist/cli.js +425 -0
  34. package/dist/cli.js.map +1 -0
  35. package/dist/commands/clean.d.ts +30 -0
  36. package/dist/commands/clean.d.ts.map +1 -0
  37. package/dist/commands/clean.js +98 -0
  38. package/dist/commands/clean.js.map +1 -0
  39. package/dist/commands/disable.d.ts +23 -0
  40. package/dist/commands/disable.d.ts.map +1 -0
  41. package/dist/commands/disable.js +57 -0
  42. package/dist/commands/disable.js.map +1 -0
  43. package/dist/commands/doctor.d.ts +43 -0
  44. package/dist/commands/doctor.d.ts.map +1 -0
  45. package/dist/commands/doctor.js +97 -0
  46. package/dist/commands/doctor.js.map +1 -0
  47. package/dist/commands/enable.d.ts +37 -0
  48. package/dist/commands/enable.d.ts.map +1 -0
  49. package/dist/commands/enable.js +133 -0
  50. package/dist/commands/enable.js.map +1 -0
  51. package/dist/commands/explain.d.ts +68 -0
  52. package/dist/commands/explain.d.ts.map +1 -0
  53. package/dist/commands/explain.js +182 -0
  54. package/dist/commands/explain.js.map +1 -0
  55. package/dist/commands/reset.d.ts +23 -0
  56. package/dist/commands/reset.d.ts.map +1 -0
  57. package/dist/commands/reset.js +68 -0
  58. package/dist/commands/reset.js.map +1 -0
  59. package/dist/commands/resume.d.ts +42 -0
  60. package/dist/commands/resume.d.ts.map +1 -0
  61. package/dist/commands/resume.js +133 -0
  62. package/dist/commands/resume.js.map +1 -0
  63. package/dist/commands/rewind.d.ts +34 -0
  64. package/dist/commands/rewind.d.ts.map +1 -0
  65. package/dist/commands/rewind.js +155 -0
  66. package/dist/commands/rewind.js.map +1 -0
  67. package/dist/commands/status.d.ts +51 -0
  68. package/dist/commands/status.d.ts.map +1 -0
  69. package/dist/commands/status.js +112 -0
  70. package/dist/commands/status.js.map +1 -0
  71. package/dist/config.d.ts +40 -0
  72. package/dist/config.d.ts.map +1 -0
  73. package/dist/config.js +127 -0
  74. package/dist/config.js.map +1 -0
  75. package/dist/git-operations.d.ts +191 -0
  76. package/dist/git-operations.d.ts.map +1 -0
  77. package/dist/git-operations.js +462 -0
  78. package/dist/git-operations.js.map +1 -0
  79. package/dist/hooks/git-hooks.d.ts +22 -0
  80. package/dist/hooks/git-hooks.d.ts.map +1 -0
  81. package/dist/hooks/git-hooks.js +139 -0
  82. package/dist/hooks/git-hooks.js.map +1 -0
  83. package/dist/hooks/lifecycle.d.ts +21 -0
  84. package/dist/hooks/lifecycle.d.ts.map +1 -0
  85. package/dist/hooks/lifecycle.js +179 -0
  86. package/dist/hooks/lifecycle.js.map +1 -0
  87. package/dist/index.d.ts +76 -0
  88. package/dist/index.d.ts.map +1 -0
  89. package/dist/index.js +166 -0
  90. package/dist/index.js.map +1 -0
  91. package/dist/security/redaction.d.ts +35 -0
  92. package/dist/security/redaction.d.ts.map +1 -0
  93. package/dist/security/redaction.js +239 -0
  94. package/dist/security/redaction.js.map +1 -0
  95. package/dist/session/state-machine.d.ts +90 -0
  96. package/dist/session/state-machine.d.ts.map +1 -0
  97. package/dist/session/state-machine.js +345 -0
  98. package/dist/session/state-machine.js.map +1 -0
  99. package/dist/store/checkpoint-store.d.ts +59 -0
  100. package/dist/store/checkpoint-store.d.ts.map +1 -0
  101. package/dist/store/checkpoint-store.js +321 -0
  102. package/dist/store/checkpoint-store.js.map +1 -0
  103. package/dist/store/native-store.d.ts +14 -0
  104. package/dist/store/native-store.d.ts.map +1 -0
  105. package/dist/store/native-store.js +159 -0
  106. package/dist/store/native-store.js.map +1 -0
  107. package/dist/store/provider-types.d.ts +78 -0
  108. package/dist/store/provider-types.d.ts.map +1 -0
  109. package/dist/store/provider-types.js +12 -0
  110. package/dist/store/provider-types.js.map +1 -0
  111. package/dist/store/session-store.d.ts +36 -0
  112. package/dist/store/session-store.d.ts.map +1 -0
  113. package/dist/store/session-store.js +193 -0
  114. package/dist/store/session-store.js.map +1 -0
  115. package/dist/strategy/attribution.d.ts +39 -0
  116. package/dist/strategy/attribution.d.ts.map +1 -0
  117. package/dist/strategy/attribution.js +225 -0
  118. package/dist/strategy/attribution.js.map +1 -0
  119. package/dist/strategy/common.d.ts +57 -0
  120. package/dist/strategy/common.d.ts.map +1 -0
  121. package/dist/strategy/common.js +156 -0
  122. package/dist/strategy/common.js.map +1 -0
  123. package/dist/strategy/content-overlap.d.ts +33 -0
  124. package/dist/strategy/content-overlap.d.ts.map +1 -0
  125. package/dist/strategy/content-overlap.js +176 -0
  126. package/dist/strategy/content-overlap.js.map +1 -0
  127. package/dist/strategy/manual-commit.d.ts +36 -0
  128. package/dist/strategy/manual-commit.d.ts.map +1 -0
  129. package/dist/strategy/manual-commit.js +717 -0
  130. package/dist/strategy/manual-commit.js.map +1 -0
  131. package/dist/strategy/types.d.ts +163 -0
  132. package/dist/strategy/types.d.ts.map +1 -0
  133. package/dist/strategy/types.js +48 -0
  134. package/dist/strategy/types.js.map +1 -0
  135. package/dist/summarize/claude-generator.d.ts +25 -0
  136. package/dist/summarize/claude-generator.d.ts.map +1 -0
  137. package/dist/summarize/claude-generator.js +87 -0
  138. package/dist/summarize/claude-generator.js.map +1 -0
  139. package/dist/summarize/summarize.d.ts +52 -0
  140. package/dist/summarize/summarize.d.ts.map +1 -0
  141. package/dist/summarize/summarize.js +335 -0
  142. package/dist/summarize/summarize.js.map +1 -0
  143. package/dist/types.d.ts +293 -0
  144. package/dist/types.d.ts.map +1 -0
  145. package/dist/types.js +94 -0
  146. package/dist/types.js.map +1 -0
  147. package/dist/utils/chunk-files.d.ts +25 -0
  148. package/dist/utils/chunk-files.d.ts.map +1 -0
  149. package/dist/utils/chunk-files.js +47 -0
  150. package/dist/utils/chunk-files.js.map +1 -0
  151. package/dist/utils/commit-message.d.ts +11 -0
  152. package/dist/utils/commit-message.d.ts.map +1 -0
  153. package/dist/utils/commit-message.js +54 -0
  154. package/dist/utils/commit-message.js.map +1 -0
  155. package/dist/utils/detect-agent.d.ts +19 -0
  156. package/dist/utils/detect-agent.d.ts.map +1 -0
  157. package/dist/utils/detect-agent.js +34 -0
  158. package/dist/utils/detect-agent.js.map +1 -0
  159. package/dist/utils/hook-managers.d.ts +24 -0
  160. package/dist/utils/hook-managers.d.ts.map +1 -0
  161. package/dist/utils/hook-managers.js +96 -0
  162. package/dist/utils/hook-managers.js.map +1 -0
  163. package/dist/utils/ide-tags.d.ts +12 -0
  164. package/dist/utils/ide-tags.d.ts.map +1 -0
  165. package/dist/utils/ide-tags.js +30 -0
  166. package/dist/utils/ide-tags.js.map +1 -0
  167. package/dist/utils/paths.d.ts +32 -0
  168. package/dist/utils/paths.d.ts.map +1 -0
  169. package/dist/utils/paths.js +55 -0
  170. package/dist/utils/paths.js.map +1 -0
  171. package/dist/utils/preview-rewind.d.ts +23 -0
  172. package/dist/utils/preview-rewind.d.ts.map +1 -0
  173. package/dist/utils/preview-rewind.js +63 -0
  174. package/dist/utils/preview-rewind.js.map +1 -0
  175. package/dist/utils/rewind-conflict.d.ts +52 -0
  176. package/dist/utils/rewind-conflict.d.ts.map +1 -0
  177. package/dist/utils/rewind-conflict.js +79 -0
  178. package/dist/utils/rewind-conflict.js.map +1 -0
  179. package/dist/utils/shadow-branch.d.ts +44 -0
  180. package/dist/utils/shadow-branch.d.ts.map +1 -0
  181. package/dist/utils/shadow-branch.js +93 -0
  182. package/dist/utils/shadow-branch.js.map +1 -0
  183. package/dist/utils/string-utils.d.ts +24 -0
  184. package/dist/utils/string-utils.d.ts.map +1 -0
  185. package/dist/utils/string-utils.js +47 -0
  186. package/dist/utils/string-utils.js.map +1 -0
  187. package/dist/utils/todo-extract.d.ts +52 -0
  188. package/dist/utils/todo-extract.d.ts.map +1 -0
  189. package/dist/utils/todo-extract.js +167 -0
  190. package/dist/utils/todo-extract.js.map +1 -0
  191. package/dist/utils/trailers.d.ts +36 -0
  192. package/dist/utils/trailers.d.ts.map +1 -0
  193. package/dist/utils/trailers.js +148 -0
  194. package/dist/utils/trailers.js.map +1 -0
  195. package/dist/utils/transcript-parse.d.ts +57 -0
  196. package/dist/utils/transcript-parse.d.ts.map +1 -0
  197. package/dist/utils/transcript-parse.js +126 -0
  198. package/dist/utils/transcript-parse.js.map +1 -0
  199. package/dist/utils/transcript-timestamp.d.ts +22 -0
  200. package/dist/utils/transcript-timestamp.d.ts.map +1 -0
  201. package/dist/utils/transcript-timestamp.js +56 -0
  202. package/dist/utils/transcript-timestamp.js.map +1 -0
  203. package/dist/utils/tree-ops.d.ts +47 -0
  204. package/dist/utils/tree-ops.d.ts.map +1 -0
  205. package/dist/utils/tree-ops.js +145 -0
  206. package/dist/utils/tree-ops.js.map +1 -0
  207. package/dist/utils/tty.d.ts +25 -0
  208. package/dist/utils/tty.d.ts.map +1 -0
  209. package/dist/utils/tty.js +70 -0
  210. package/dist/utils/tty.js.map +1 -0
  211. package/dist/utils/validation.d.ts +31 -0
  212. package/dist/utils/validation.d.ts.map +1 -0
  213. package/dist/utils/validation.js +59 -0
  214. package/dist/utils/validation.js.map +1 -0
  215. package/dist/utils/worktree.d.ts +16 -0
  216. package/dist/utils/worktree.d.ts.map +1 -0
  217. package/dist/utils/worktree.js +50 -0
  218. package/dist/utils/worktree.js.map +1 -0
  219. package/package.json +64 -0
package/dist/index.js ADDED
@@ -0,0 +1,166 @@
1
+ /**
2
+ * Entire - Native TypeScript Implementation
3
+ *
4
+ * A self-contained module that implements the Entire CLI's functionality
5
+ * in TypeScript. Designed with clean boundaries for eventual extraction
6
+ * into a standalone package.
7
+ *
8
+ * @packageDocumentation
9
+ */
10
+ import { createRequire } from 'node:module';
11
+ // =============================================================================
12
+ // Version
13
+ // =============================================================================
14
+ const require = createRequire(import.meta.url);
15
+ const { version: VERSION } = require('../package.json');
16
+ /** Current package version */
17
+ export { VERSION };
18
+ /**
19
+ * Get the current version string.
20
+ */
21
+ export function getVersion() {
22
+ return VERSION;
23
+ }
24
+ export { AGENT_NAMES, AGENT_TYPES, DEFAULT_AGENT_NAME, EventType, CheckpointType, CHECKPOINT_ID_LENGTH, CHECKPOINT_ID_PATTERN, CHECKPOINTS_BRANCH, SHADOW_BRANCH_PREFIX, ENTIRE_DIR, ENTIRE_METADATA_DIR, ENTIRE_TMP_DIR, ENTIRE_SETTINGS_FILE, ENTIRE_SETTINGS_LOCAL_FILE, SESSION_DIR_NAME, MAX_CHUNK_SIZE, DEFAULT_SETTINGS, validateCheckpointID, checkpointIDPath, emptyTokenUsage, addTokenUsage, } from './types.js';
25
+ // =============================================================================
26
+ // Git Operations
27
+ // =============================================================================
28
+ export { git, gitSafe, getGitDir, getGitCommonDir, getWorktreeRoot, isGitRepository, getSessionsDir, getHead, getShortHash, getCurrentBranch, refExists, getTreeHash, listBranches, hashObject, mktree, commitTree, lsTree, catFile, showFile, log, diffNameOnly, diffStat, hasUncommittedChanges, getUntrackedFiles, isOnDefaultBranch, pushBranch, getGitAuthor, resolveGitDirSync, atomicWriteFile, initSessionRepo, resolveSessionRepoPath, getProjectID, GitError, } from './git-operations.js';
29
+ // =============================================================================
30
+ // Session Store
31
+ // =============================================================================
32
+ export { createSessionStore, normalizeSessionState, } from './store/session-store.js';
33
+ // =============================================================================
34
+ // Checkpoint Store
35
+ // =============================================================================
36
+ export { createCheckpointStore } from './store/checkpoint-store.js';
37
+ // =============================================================================
38
+ // Native Store (replaces CLI store)
39
+ // =============================================================================
40
+ export { createNativeEntireStore } from './store/native-store.js';
41
+ export { hasHookSupport, hasFileWatcher, hasTranscriptAnalyzer, hasTokenCalculator, hasTranscriptChunker, hasTranscriptPreparer, hasSubagentAwareExtractor, } from './agent/types.js';
42
+ export { registerAgent, getAgent, listAgentNames, listAgents, detectAgents, detectAgent, getAgentByType, getDefaultAgent, allProtectedDirs, resolveAgent, resetRegistry, } from './agent/registry.js';
43
+ // Agent Implementations
44
+ export { createClaudeCodeAgent, parseTranscript, extractModifiedFiles, extractLastUserPrompt, extractSpawnedAgentIDs, } from './agent/agents/claude-code.js';
45
+ export { createCursorAgent } from './agent/agents/cursor.js';
46
+ export { createGeminiCLIAgent, } from './agent/agents/gemini-cli.js';
47
+ export { createOpenCodeAgent, extractTextFromParts, parseExportSession, extractAllUserPrompts, } from './agent/agents/opencode.js';
48
+ // =============================================================================
49
+ // Hooks
50
+ // =============================================================================
51
+ export { installGitHooks, uninstallGitHooks, areGitHooksInstalled, } from './hooks/git-hooks.js';
52
+ export { createLifecycleHandler, } from './hooks/lifecycle.js';
53
+ // =============================================================================
54
+ // Security
55
+ // =============================================================================
56
+ export { shannonEntropy, detectSecrets, redactString, redactBuffer, redactJSONL, } from './security/redaction.js';
57
+ // =============================================================================
58
+ // Configuration
59
+ // =============================================================================
60
+ export { loadSettings, loadProjectSettings, loadLocalSettings, saveProjectSettings, saveLocalSettings, isEnabled, getStrategy, ensureGitignore, } from './config.js';
61
+ // =============================================================================
62
+ // Commands
63
+ // =============================================================================
64
+ export { enable } from './commands/enable.js';
65
+ export { disable } from './commands/disable.js';
66
+ export { status, formatStatusJSON, formatTokens, } from './commands/status.js';
67
+ export { listRewindPoints, rewindTo, listRewindPointsJSON, } from './commands/rewind.js';
68
+ export { diagnose, discardSession, doctor, } from './commands/doctor.js';
69
+ export { findOrphaned, clean, } from './commands/clean.js';
70
+ export { reset } from './commands/reset.js';
71
+ export { listCheckpoints, getCheckpointDetail, getCheckpointTranscript, explainCommit, findCheckpointByPrefix, } from './commands/explain.js';
72
+ export { discoverResumeInfo, listResumableBranches, } from './commands/resume.js';
73
+ // =============================================================================
74
+ // Strategy Engine
75
+ // =============================================================================
76
+ export { createManualCommitStrategy, hasUserContent, stripCheckpointTrailer, } from './strategy/manual-commit.js';
77
+ export { STRATEGY_NAME_MANUAL_COMMIT, MAX_COMMIT_TRAVERSAL_DEPTH } from './strategy/types.js';
78
+ // =============================================================================
79
+ // Utilities
80
+ // =============================================================================
81
+ export { parseStrategy, parseMetadata, parseTaskMetadata, parseBaseCommit, parseCondensation, parseSession, parseCheckpoint as parseCheckpointTrailer, parseAllSessions, formatStrategy, formatMetadata, formatShadowCommit, formatShadowTaskCommit, formatCheckpoint as formatCheckpointTrailer, formatSourceRef, MetadataTrailerKey, StrategyTrailerKey, SessionTrailerKey, CheckpointTrailerKey, BaseCommitTrailerKey, } from './utils/trailers.js';
82
+ export { stripIDEContextTags } from './utils/ide-tags.js';
83
+ export { truncateRunes, collapseWhitespace, capitalizeFirst, countLines, } from './utils/string-utils.js';
84
+ export { parseFromBytes, parseFromBytesAtLine, sliceFromLine, extractUserContent, } from './utils/transcript-parse.js';
85
+ export { generateCommitMessage } from './utils/commit-message.js';
86
+ // =============================================================================
87
+ // Summarization
88
+ // =============================================================================
89
+ export { buildCondensedTranscriptFromBytes, buildCondensedTranscript, formatCondensedTranscript, buildSummarizationPrompt, extractJSONFromMarkdown, generateFromTranscript, } from './summarize/summarize.js';
90
+ // =============================================================================
91
+ // Attribution
92
+ // =============================================================================
93
+ export { diffLines, getAllChangedFiles, calculateAttributionWithAccumulated, } from './strategy/attribution.js';
94
+ // =============================================================================
95
+ // Content Overlap
96
+ // =============================================================================
97
+ export { filesOverlapWithContent, stagedFilesOverlapWithContent, filesWithRemainingAgentChanges, } from './strategy/content-overlap.js';
98
+ // =============================================================================
99
+ // Validation
100
+ // =============================================================================
101
+ export { validateSessionID, validateToolUseID, validateAgentID, validateAgentSessionID, } from './utils/validation.js';
102
+ // =============================================================================
103
+ // Hook Manager Detection
104
+ // =============================================================================
105
+ export { detectHookManagers, hookManagerWarning } from './utils/hook-managers.js';
106
+ // =============================================================================
107
+ // Worktree Utilities
108
+ // =============================================================================
109
+ export { getWorktreeID } from './utils/worktree.js';
110
+ // =============================================================================
111
+ // Transcript Timestamps
112
+ // =============================================================================
113
+ export { parseTimestampFromJSONL, getLastTimestampFromBytes, getLastTimestampFromFile, } from './utils/transcript-timestamp.js';
114
+ // =============================================================================
115
+ // Summary Generator (Claude CLI)
116
+ // =============================================================================
117
+ export { createClaudeGenerator, DEFAULT_SUMMARIZE_MODEL, } from './summarize/claude-generator.js';
118
+ // =============================================================================
119
+ // Session State Machine
120
+ // =============================================================================
121
+ export { transition, applyTransition, phaseFromString, eventToString, actionToString, isStale, normalizeAfterLoad, mermaidDiagram, NoOpActionHandler, STALE_SESSION_THRESHOLD_MS, } from './session/state-machine.js';
122
+ // =============================================================================
123
+ // Todo Extraction
124
+ // =============================================================================
125
+ export { extractLastCompletedTodo, extractInProgressTodo, countTodos, extractTodoContentFromToolInput, extractLastCompletedTodoFromToolInput, countTodosFromToolInput, formatIncrementalMessage, } from './utils/todo-extract.js';
126
+ // =============================================================================
127
+ // Rewind Conflict Detection
128
+ // =============================================================================
129
+ export { classifyTimestamps, statusToText, hasConflicts, partitionConflicts, resolveAgentForRewind, } from './utils/rewind-conflict.js';
130
+ // =============================================================================
131
+ // Chunk File Naming
132
+ // =============================================================================
133
+ export { chunkFileName, parseChunkIndex, sortChunkFiles } from './utils/chunk-files.js';
134
+ // =============================================================================
135
+ // Path Classification
136
+ // =============================================================================
137
+ export { isInfrastructurePath, toRelativePath, absPath, extractSessionIDFromPath, sessionMetadataDir, } from './utils/paths.js';
138
+ // =============================================================================
139
+ // Agent Type Detection
140
+ // =============================================================================
141
+ export { detectAgentTypeFromContent } from './utils/detect-agent.js';
142
+ // =============================================================================
143
+ // TTY Interaction
144
+ // =============================================================================
145
+ export { hasTTY, askConfirmTTY } from './utils/tty.js';
146
+ // =============================================================================
147
+ // Shadow Branch Utilities
148
+ // =============================================================================
149
+ export { hashWorktreeID, shadowBranchNameForCommit, parseShadowBranchName, isShadowBranch, listShadowBranches, deleteShadowBranches, } from './utils/shadow-branch.js';
150
+ // =============================================================================
151
+ // Rewind Preview
152
+ // =============================================================================
153
+ export { previewRewind, } from './utils/preview-rewind.js';
154
+ // =============================================================================
155
+ // Normalized Agent Session
156
+ // =============================================================================
157
+ export { createAgentSession } from './agent/session-types.js';
158
+ // =============================================================================
159
+ // Strategy Infrastructure
160
+ // =============================================================================
161
+ export { validateRepository, isEmptyRepository, isAncestorOf, isInsideWorktree, ensureMetadataBranch, readCheckpointMetadata, readSessionPromptFromTree, readAgentTypeFromTree, extractFirstPrompt, ensureSetup, getMainRepoRoot, } from './strategy/common.js';
162
+ // =============================================================================
163
+ // Git Tree Manipulation
164
+ // =============================================================================
165
+ export { updateSubtree, applyTreeChanges, createTreeFromMap } from './utils/tree-ops.js';
166
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,35 @@
1
+ /**
2
+ * Secret Redaction
3
+ *
4
+ * Multi-layered secret detection and redaction for transcripts.
5
+ * Uses both entropy-based detection and pattern matching
6
+ * for known secret formats.
7
+ */
8
+ /**
9
+ * Calculate Shannon entropy of a string
10
+ */
11
+ export declare function shannonEntropy(s: string): number;
12
+ interface RedactionRegion {
13
+ start: number;
14
+ end: number;
15
+ source: string;
16
+ }
17
+ /**
18
+ * Detect secret regions in a string
19
+ */
20
+ export declare function detectSecrets(text: string): RedactionRegion[];
21
+ /**
22
+ * Redact secrets from a plain string
23
+ */
24
+ export declare function redactString(text: string): string;
25
+ /**
26
+ * Redact secrets from a Buffer
27
+ */
28
+ export declare function redactBuffer(buf: Buffer): Buffer;
29
+ /**
30
+ * Redact secrets from JSONL content (line by line)
31
+ * Preserves JSON structure and skips safe fields
32
+ */
33
+ export declare function redactJSONL(content: string): string;
34
+ export {};
35
+ //# sourceMappingURL=redaction.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redaction.d.ts","sourceRoot":"","sources":["../../src/security/redaction.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAuGH;;GAEG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAehD;AAMD,UAAU,eAAe;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;CAChB;AA2BD;;GAEG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,eAAe,EAAE,CA8B7D;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAejD;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAEhD;AAED;;;GAGG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAqBnD"}
@@ -0,0 +1,239 @@
1
+ /**
2
+ * Secret Redaction
3
+ *
4
+ * Multi-layered secret detection and redaction for transcripts.
5
+ * Uses both entropy-based detection and pattern matching
6
+ * for known secret formats.
7
+ */
8
+ // ============================================================================
9
+ // Constants
10
+ // ============================================================================
11
+ const ENTROPY_THRESHOLD = 4.5;
12
+ const MIN_SECRET_LENGTH = 10;
13
+ const REDACTED_PLACEHOLDER = 'REDACTED';
14
+ /** High-entropy alphanumeric pattern (potential secrets) */
15
+ const HIGH_ENTROPY_PATTERN = /[A-Za-z0-9+_=-]{10,}/g;
16
+ // ============================================================================
17
+ // Known Secret Patterns (subset of gitleaks rules)
18
+ // ============================================================================
19
+ const SECRET_PATTERNS = [
20
+ // API Keys
21
+ {
22
+ name: 'aws-access-key',
23
+ pattern: /(?:A3T[A-Z0-9]|AKIA|AGPA|AIDA|AROA|AIPA|ANPA|ANVA|ASIA)[A-Z0-9]{16}/g,
24
+ },
25
+ {
26
+ name: 'aws-secret-key',
27
+ pattern: /(?:aws_secret_access_key|aws_secret_key|secret_key)\s*[=:]\s*["']?([A-Za-z0-9/+=]{40})["']?/gi,
28
+ },
29
+ { name: 'github-token', pattern: /gh[pousr]_[A-Za-z0-9_]{36,255}/g },
30
+ { name: 'github-fine-grained', pattern: /github_pat_[A-Za-z0-9_]{22,255}/g },
31
+ { name: 'gitlab-token', pattern: /glpat-[A-Za-z0-9=_-]{20,}/g },
32
+ { name: 'google-api-key', pattern: /AIza[A-Za-z0-9_-]{35}/g },
33
+ { name: 'slack-token', pattern: /xox[baprs]-[0-9]{10,13}-[0-9]{10,13}-[a-zA-Z0-9]{24,34}/g },
34
+ {
35
+ name: 'slack-webhook',
36
+ pattern: /https:\/\/hooks\.slack\.com\/services\/T[A-Z0-9]{10}\/B[A-Z0-9]{10}\/[a-zA-Z0-9]{24}/g,
37
+ },
38
+ { name: 'stripe-key', pattern: /(?:sk|pk|rk)_(?:live|test)_[A-Za-z0-9]{10,99}/g },
39
+ { name: 'twilio-api-key', pattern: /SK[0-9a-fA-F]{32}/g },
40
+ { name: 'sendgrid-api-key', pattern: /SG\.[A-Za-z0-9_-]{22}\.[A-Za-z0-9_-]{43}/g },
41
+ { name: 'npm-token', pattern: /npm_[A-Za-z0-9]{36}/g },
42
+ { name: 'pypi-token', pattern: /pypi-[A-Za-z0-9_-]{100,}/g },
43
+ // Cloud Providers
44
+ {
45
+ name: 'azure-connection-string',
46
+ pattern: /DefaultEndpointsProtocol=https;AccountName=[^;]+;AccountKey=[A-Za-z0-9+/=]{88};/g,
47
+ },
48
+ {
49
+ name: 'gcp-service-account',
50
+ pattern: /"private_key":\s*"-----BEGIN (?:RSA )?PRIVATE KEY-----/g,
51
+ },
52
+ // Generic Secrets
53
+ { name: 'private-key', pattern: /-----BEGIN (?:RSA |EC |DSA |OPENSSH )?PRIVATE KEY-----/g },
54
+ { name: 'jwt', pattern: /eyJ[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]{10,}/g },
55
+ { name: 'basic-auth', pattern: /(?:basic|bearer)\s+[A-Za-z0-9+/=]{20,}/gi },
56
+ { name: 'password-in-url', pattern: /[a-zA-Z]{3,10}:\/\/[^/\s:@]{3,20}:[^/\s@]{3,20}@/g },
57
+ // Anthropic
58
+ { name: 'anthropic-api-key', pattern: /sk-ant-[A-Za-z0-9_-]{90,}/g },
59
+ // OpenAI
60
+ { name: 'openai-api-key', pattern: /sk-[A-Za-z0-9]{20}T3BlbkFJ[A-Za-z0-9]{20}/g },
61
+ // Database
62
+ { name: 'postgres-url', pattern: /postgres(?:ql)?:\/\/[^/\s:@]+:[^/\s@]+@[^/\s]+\/[^/\s]+/g },
63
+ { name: 'mysql-url', pattern: /mysql:\/\/[^/\s:@]+:[^/\s@]+@[^/\s]+\/[^/\s]+/g },
64
+ { name: 'mongodb-url', pattern: /mongodb(?:\+srv)?:\/\/[^/\s:@]+:[^/\s@]+@[^/\s]+/g },
65
+ // Hex-encoded secrets (generic)
66
+ {
67
+ name: 'hex-secret',
68
+ pattern: /(?:secret|token|key|password|api_key|apikey)\s*[=:]\s*["']?([0-9a-fA-F]{32,})["']?/gi,
69
+ },
70
+ ];
71
+ // Fields that should be skipped during redaction
72
+ const SAFE_FIELDS = new Set([
73
+ 'signature',
74
+ 'id',
75
+ 'uuid',
76
+ 'sessionId',
77
+ 'session_id',
78
+ 'checkpointId',
79
+ 'checkpoint_id',
80
+ 'nodeId',
81
+ 'node_id',
82
+ 'toolUseId',
83
+ 'tool_use_id',
84
+ 'file_path',
85
+ 'filePath',
86
+ 'path',
87
+ 'name',
88
+ 'type',
89
+ 'role',
90
+ ]);
91
+ // ============================================================================
92
+ // Entropy Calculation
93
+ // ============================================================================
94
+ /**
95
+ * Calculate Shannon entropy of a string
96
+ */
97
+ export function shannonEntropy(s) {
98
+ if (s.length === 0)
99
+ return 0;
100
+ const freq = new Map();
101
+ for (const ch of s) {
102
+ freq.set(ch, (freq.get(ch) ?? 0) + 1);
103
+ }
104
+ let entropy = 0;
105
+ for (const count of freq.values()) {
106
+ const p = count / s.length;
107
+ if (p > 0)
108
+ entropy -= p * Math.log2(p);
109
+ }
110
+ return entropy;
111
+ }
112
+ /**
113
+ * Merge overlapping regions
114
+ */
115
+ function mergeRegions(regions) {
116
+ if (regions.length === 0)
117
+ return [];
118
+ const sorted = [...regions].sort((a, b) => a.start - b.start);
119
+ const merged = [sorted[0]];
120
+ for (let i = 1; i < sorted.length; i++) {
121
+ const last = merged[merged.length - 1];
122
+ if (sorted[i].start <= last.end) {
123
+ last.end = Math.max(last.end, sorted[i].end);
124
+ }
125
+ else {
126
+ merged.push(sorted[i]);
127
+ }
128
+ }
129
+ return merged;
130
+ }
131
+ // ============================================================================
132
+ // Public API
133
+ // ============================================================================
134
+ /**
135
+ * Detect secret regions in a string
136
+ */
137
+ export function detectSecrets(text) {
138
+ const regions = [];
139
+ // Entropy-based detection
140
+ for (const match of text.matchAll(HIGH_ENTROPY_PATTERN)) {
141
+ const value = match[0];
142
+ if (value.length < MIN_SECRET_LENGTH)
143
+ continue;
144
+ if (shannonEntropy(value) >= ENTROPY_THRESHOLD) {
145
+ regions.push({
146
+ start: match.index,
147
+ end: match.index + value.length,
148
+ source: 'entropy',
149
+ });
150
+ }
151
+ }
152
+ // Pattern-based detection
153
+ for (const { name, pattern } of SECRET_PATTERNS) {
154
+ // Reset regex state
155
+ pattern.lastIndex = 0;
156
+ for (const match of text.matchAll(pattern)) {
157
+ regions.push({
158
+ start: match.index,
159
+ end: match.index + match[0].length,
160
+ source: name,
161
+ });
162
+ }
163
+ }
164
+ return mergeRegions(regions);
165
+ }
166
+ /**
167
+ * Redact secrets from a plain string
168
+ */
169
+ export function redactString(text) {
170
+ const regions = detectSecrets(text);
171
+ if (regions.length === 0)
172
+ return text;
173
+ let result = '';
174
+ let pos = 0;
175
+ for (const region of regions) {
176
+ result += text.slice(pos, region.start);
177
+ result += REDACTED_PLACEHOLDER;
178
+ pos = region.end;
179
+ }
180
+ result += text.slice(pos);
181
+ return result;
182
+ }
183
+ /**
184
+ * Redact secrets from a Buffer
185
+ */
186
+ export function redactBuffer(buf) {
187
+ return Buffer.from(redactString(buf.toString('utf-8')));
188
+ }
189
+ /**
190
+ * Redact secrets from JSONL content (line by line)
191
+ * Preserves JSON structure and skips safe fields
192
+ */
193
+ export function redactJSONL(content) {
194
+ const lines = content.split('\n');
195
+ const result = [];
196
+ for (const line of lines) {
197
+ if (!line.trim()) {
198
+ result.push(line);
199
+ continue;
200
+ }
201
+ try {
202
+ const parsed = JSON.parse(line);
203
+ const redacted = redactJSONValue(parsed);
204
+ result.push(JSON.stringify(redacted));
205
+ }
206
+ catch {
207
+ // Not valid JSON, redact as plain text
208
+ result.push(redactString(line));
209
+ }
210
+ }
211
+ return result.join('\n');
212
+ }
213
+ /**
214
+ * Recursively redact values in a JSON object
215
+ */
216
+ function redactJSONValue(value, key) {
217
+ // Skip safe fields
218
+ if (key && SAFE_FIELDS.has(key))
219
+ return value;
220
+ if (typeof value === 'string') {
221
+ return redactString(value);
222
+ }
223
+ if (Array.isArray(value)) {
224
+ return value.map((item) => redactJSONValue(item));
225
+ }
226
+ if (value && typeof value === 'object') {
227
+ const obj = value;
228
+ // Skip image/base64 objects
229
+ if (obj.type === 'image' || obj.type === 'base64')
230
+ return value;
231
+ const result = {};
232
+ for (const [k, v] of Object.entries(obj)) {
233
+ result[k] = redactJSONValue(v, k);
234
+ }
235
+ return result;
236
+ }
237
+ return value;
238
+ }
239
+ //# sourceMappingURL=redaction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"redaction.js","sourceRoot":"","sources":["../../src/security/redaction.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,90 @@
1
+ /**
2
+ * Session State Machine
3
+ *
4
+ * Pure-function state machine for session lifecycle transitions.
5
+ * Ported from Go: session/phase.go
6
+ *
7
+ * The state machine computes the next phase and required actions given the
8
+ * current phase and an event. ApplyTransition executes side effects.
9
+ */
10
+ export type Phase = 'active' | 'idle' | 'ended';
11
+ /**
12
+ * Normalize a phase string, treating empty or unknown values as 'idle'
13
+ * for backward compatibility with pre-state-machine session files.
14
+ */
15
+ export declare function phaseFromString(s: string | undefined): Phase;
16
+ export declare const enum StateMachineEvent {
17
+ TurnStart = 0,
18
+ TurnEnd = 1,
19
+ GitCommit = 2,
20
+ SessionStart = 3,
21
+ SessionStop = 4,
22
+ Compaction = 5
23
+ }
24
+ export declare function eventToString(e: StateMachineEvent): string;
25
+ export declare const enum Action {
26
+ Condense = 0,
27
+ CondenseIfFilesTouched = 1,
28
+ DiscardIfNoFiles = 2,
29
+ WarnStaleSession = 3,
30
+ ClearEndedAt = 4,
31
+ UpdateLastInteraction = 5
32
+ }
33
+ export declare function actionToString(a: Action): string;
34
+ export interface TransitionContext {
35
+ hasFilesTouched: boolean;
36
+ isRebaseInProgress: boolean;
37
+ }
38
+ export interface TransitionResult {
39
+ newPhase: Phase;
40
+ actions: Action[];
41
+ }
42
+ export declare function transition(current: Phase, event: StateMachineEvent, ctx: TransitionContext): TransitionResult;
43
+ export interface ActionHandler {
44
+ handleCondense(state: StateMachineState): Promise<void>;
45
+ handleCondenseIfFilesTouched(state: StateMachineState): Promise<void>;
46
+ handleDiscardIfNoFiles(state: StateMachineState): Promise<void>;
47
+ handleWarnStaleSession(state: StateMachineState): Promise<void>;
48
+ }
49
+ export declare class NoOpActionHandler implements ActionHandler {
50
+ handleCondense(): Promise<void>;
51
+ handleCondenseIfFilesTouched(): Promise<void>;
52
+ handleDiscardIfNoFiles(): Promise<void>;
53
+ handleWarnStaleSession(): Promise<void>;
54
+ }
55
+ export interface StateMachineState {
56
+ sessionID: string;
57
+ phase: Phase;
58
+ filesTouched: string[];
59
+ lastInteractionTime?: string;
60
+ endedAt?: string;
61
+ }
62
+ /**
63
+ * Apply a TransitionResult to state: sets the new phase, then executes
64
+ * all actions. Common actions (UpdateLastInteraction, ClearEndedAt)
65
+ * always run. Strategy-specific handler actions stop on first error.
66
+ */
67
+ export declare function applyTransition(state: StateMachineState, result: TransitionResult, handler: ActionHandler): Promise<Error | null>;
68
+ /** Duration after which a session is considered stale (7 days) */
69
+ export declare const STALE_SESSION_THRESHOLD_MS: number;
70
+ /**
71
+ * Returns true when the session's last interaction exceeds the stale threshold.
72
+ */
73
+ export declare function isStale(lastInteractionTime: string | undefined): boolean;
74
+ /**
75
+ * Normalize session state after loading from disk.
76
+ * Migrates legacy phase values and deprecated transcript fields.
77
+ */
78
+ export declare function normalizeAfterLoad(state: {
79
+ phase?: string;
80
+ checkpointTranscriptStart?: number;
81
+ condensedTranscriptLines?: number;
82
+ transcriptLinesAtStart?: number;
83
+ attributionBaseCommit?: string;
84
+ baseCommit?: string;
85
+ }): void;
86
+ /**
87
+ * Generate a Mermaid state diagram from the transition table.
88
+ */
89
+ export declare function mermaidDiagram(): string;
90
+ //# sourceMappingURL=state-machine.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"state-machine.d.ts","sourceRoot":"","sources":["../../src/session/state-machine.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAMH,MAAM,MAAM,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;AAEhD;;;GAGG;AACH,wBAAgB,eAAe,CAAC,CAAC,EAAE,MAAM,GAAG,SAAS,GAAG,KAAK,CAa5D;AAMD,0BAAkB,iBAAiB;IACjC,SAAS,IAAI;IACb,OAAO,IAAI;IACX,SAAS,IAAI;IACb,YAAY,IAAI;IAChB,WAAW,IAAI;IACf,UAAU,IAAI;CACf;AAWD,wBAAgB,aAAa,CAAC,CAAC,EAAE,iBAAiB,GAAG,MAAM,CAiB1D;AAMD,0BAAkB,MAAM;IACtB,QAAQ,IAAI;IACZ,sBAAsB,IAAI;IAC1B,gBAAgB,IAAI;IACpB,gBAAgB,IAAI;IACpB,YAAY,IAAI;IAChB,qBAAqB,IAAI;CAC1B;AAED,wBAAgB,cAAc,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAiBhD;AAMD,MAAM,WAAW,iBAAiB;IAChC,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,EAAE,OAAO,CAAC;CAC7B;AAED,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,KAAK,CAAC;IAChB,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAMD,wBAAgB,UAAU,CACxB,OAAO,EAAE,KAAK,EACd,KAAK,EAAE,iBAAiB,EACxB,GAAG,EAAE,iBAAiB,GACrB,gBAAgB,CAalB;AAqHD,MAAM,WAAW,aAAa;IAC5B,cAAc,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxD,4BAA4B,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACtE,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAChE,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACjE;AAED,qBAAa,iBAAkB,YAAW,aAAa;IAC/C,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAC/B,4BAA4B,IAAI,OAAO,CAAC,IAAI,CAAC;IAC7C,sBAAsB,IAAI,OAAO,CAAC,IAAI,CAAC;IACvC,sBAAsB,IAAI,OAAO,CAAC,IAAI,CAAC;CAC9C;AAMD,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,KAAK,CAAC;IACb,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;;;GAIG;AACH,wBAAsB,eAAe,CACnC,KAAK,EAAE,iBAAiB,EACxB,MAAM,EAAE,gBAAgB,EACxB,OAAO,EAAE,aAAa,GACrB,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,CAqDvB;AAMD,kEAAkE;AAClE,eAAO,MAAM,0BAA0B,QAA0B,CAAC;AAElE;;GAEG;AACH,wBAAgB,OAAO,CAAC,mBAAmB,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,CAGxE;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE;IACxC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,GAAG,IAAI,CAoBP;AAQD;;GAEG;AACH,wBAAgB,cAAc,IAAI,MAAM,CA4CvC"}