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
@@ -0,0 +1,191 @@
1
+ /**
2
+ * Git Operations
3
+ *
4
+ * Low-level git operations that shell out to the git CLI.
5
+ * This approach avoids a dependency on a full git library while
6
+ * providing the operations needed for session and checkpoint management.
7
+ */
8
+ export interface GitAuthor {
9
+ name: string;
10
+ email: string;
11
+ }
12
+ export interface GitExecOptions {
13
+ cwd?: string;
14
+ timeout?: number;
15
+ env?: Record<string, string>;
16
+ }
17
+ export declare class GitError extends Error {
18
+ readonly exitCode: number | null;
19
+ readonly stderr: string;
20
+ constructor(message: string, exitCode: number | null, stderr: string);
21
+ }
22
+ /**
23
+ * Execute a git command and return stdout
24
+ */
25
+ export declare function git(args: string[], options?: GitExecOptions): Promise<string>;
26
+ /**
27
+ * Execute a git command, returning null on error instead of throwing
28
+ */
29
+ export declare function gitSafe(args: string[], options?: GitExecOptions): Promise<string | null>;
30
+ /**
31
+ * Get the git directory for the working tree
32
+ */
33
+ export declare function getGitDir(cwd?: string): Promise<string>;
34
+ /**
35
+ * Get the git common directory (shared for worktrees)
36
+ */
37
+ export declare function getGitCommonDir(cwd?: string): Promise<string>;
38
+ /**
39
+ * Get the worktree root directory
40
+ */
41
+ export declare function getWorktreeRoot(cwd?: string): Promise<string>;
42
+ /**
43
+ * Check if we're inside a git repository
44
+ */
45
+ export declare function isGitRepository(cwd?: string): Promise<boolean>;
46
+ /**
47
+ * Get the sessions directory path (.git/entire-sessions/)
48
+ */
49
+ export declare function getSessionsDir(cwd?: string): Promise<string>;
50
+ /**
51
+ * Initialize a separate git repository for session/checkpoint storage.
52
+ * Creates the repo if it doesn't already exist.
53
+ * Returns the absolute path to the initialized repo.
54
+ */
55
+ export declare function initSessionRepo(repoPath: string): Promise<string>;
56
+ /**
57
+ * Resolve the session repo path to an absolute path (if configured).
58
+ * If the path is relative, it's resolved relative to the project root.
59
+ */
60
+ export declare function resolveSessionRepoPath(sessionRepoPath: string, projectRoot: string): string;
61
+ /**
62
+ * Derive a stable, human-readable project identifier from the project's worktree root.
63
+ * This is used to namespace data when multiple projects share a session repo.
64
+ *
65
+ * Format: `<dir-name>-<short-hash>` (e.g. "my-project-a1b2c3d4").
66
+ * The directory name is sanitized to lowercase alphanumeric + hyphens,
67
+ * and a short hash suffix ensures uniqueness when two projects share
68
+ * the same directory name at different paths.
69
+ */
70
+ export declare function getProjectID(projectRoot: string): string;
71
+ /**
72
+ * Get the current HEAD commit hash
73
+ */
74
+ export declare function getHead(cwd?: string): Promise<string>;
75
+ /**
76
+ * Get the short hash of a commit
77
+ */
78
+ export declare function getShortHash(ref: string, cwd?: string): Promise<string>;
79
+ /**
80
+ * Get current branch name, or null if detached HEAD
81
+ */
82
+ export declare function getCurrentBranch(cwd?: string): Promise<string | null>;
83
+ /**
84
+ * Check if a ref exists
85
+ */
86
+ export declare function refExists(ref: string, cwd?: string): Promise<boolean>;
87
+ /**
88
+ * Get the tree hash for a commit
89
+ */
90
+ export declare function getTreeHash(ref: string, cwd?: string): Promise<string>;
91
+ /**
92
+ * List branches matching a pattern
93
+ */
94
+ export declare function listBranches(pattern?: string, cwd?: string): Promise<string[]>;
95
+ /**
96
+ * Create a branch at a ref
97
+ */
98
+ export declare function createBranch(name: string, ref: string, cwd?: string): Promise<void>;
99
+ /**
100
+ * Delete a branch
101
+ */
102
+ export declare function deleteBranch(name: string, force?: boolean, cwd?: string): Promise<void>;
103
+ /**
104
+ * Update a branch ref to point to a new commit
105
+ */
106
+ export declare function updateRef(ref: string, commitHash: string, cwd?: string): Promise<void>;
107
+ /**
108
+ * Get the git author from config
109
+ */
110
+ export declare function getGitAuthor(cwd?: string): Promise<GitAuthor>;
111
+ /**
112
+ * Create a tree object from a list of entries
113
+ */
114
+ export declare function mktree(entries: Array<{
115
+ mode: string;
116
+ type: string;
117
+ hash: string;
118
+ name: string;
119
+ }>, cwd?: string): Promise<string>;
120
+ /**
121
+ * Create a blob from content
122
+ */
123
+ export declare function hashObject(content: string | Buffer, cwd?: string): Promise<string>;
124
+ /**
125
+ * Create a commit object
126
+ */
127
+ export declare function commitTree(treeHash: string, parentHash: string | null, message: string, author: GitAuthor, cwd?: string): Promise<string>;
128
+ /**
129
+ * List entries in a tree
130
+ */
131
+ export declare function lsTree(ref: string, treePath?: string, cwd?: string): Promise<Array<{
132
+ mode: string;
133
+ type: string;
134
+ hash: string;
135
+ name: string;
136
+ }>>;
137
+ /**
138
+ * Read a blob from the object store
139
+ */
140
+ export declare function catFile(ref: string, cwd?: string): Promise<string>;
141
+ /**
142
+ * Read a file from a specific tree/commit
143
+ */
144
+ export declare function showFile(ref: string, filePath: string, cwd?: string): Promise<string>;
145
+ /**
146
+ * Get log entries for a ref
147
+ */
148
+ export declare function log(ref: string, options?: {
149
+ maxCount?: number;
150
+ format?: string;
151
+ }, cwd?: string): Promise<string>;
152
+ /**
153
+ * Get list of files changed between two refs
154
+ */
155
+ export declare function diffNameOnly(refA: string, refB: string, cwd?: string): Promise<{
156
+ added: string[];
157
+ modified: string[];
158
+ deleted: string[];
159
+ }>;
160
+ /**
161
+ * Get stat of diff between two refs (line counts)
162
+ */
163
+ export declare function diffStat(refA: string, refB: string, cwd?: string): Promise<{
164
+ additions: number;
165
+ deletions: number;
166
+ }>;
167
+ /**
168
+ * Check if the working tree has uncommitted changes
169
+ */
170
+ export declare function hasUncommittedChanges(cwd?: string): Promise<boolean>;
171
+ /**
172
+ * Get list of untracked files
173
+ */
174
+ export declare function getUntrackedFiles(cwd?: string): Promise<string[]>;
175
+ /**
176
+ * Check if on the default branch (main/master)
177
+ */
178
+ export declare function isOnDefaultBranch(cwd?: string): Promise<[boolean, string]>;
179
+ /**
180
+ * Push a branch to a remote
181
+ */
182
+ export declare function pushBranch(remote: string, branch: string, force?: boolean, cwd?: string): Promise<void>;
183
+ /**
184
+ * Resolve the git directory from a path, handling worktrees
185
+ */
186
+ export declare function resolveGitDirSync(startPath: string): string | null;
187
+ /**
188
+ * Atomically write a file (write to tmp, then rename)
189
+ */
190
+ export declare function atomicWriteFile(filePath: string, content: string | Buffer): Promise<void>;
191
+ //# sourceMappingURL=git-operations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"git-operations.d.ts","sourceRoot":"","sources":["../src/git-operations.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,462 @@
1
+ /**
2
+ * Git Operations
3
+ *
4
+ * Low-level git operations that shell out to the git CLI.
5
+ * This approach avoids a dependency on a full git library while
6
+ * providing the operations needed for session and checkpoint management.
7
+ */
8
+ import { execFile } from 'node:child_process';
9
+ import { promisify } from 'node:util';
10
+ import * as crypto from 'node:crypto';
11
+ import * as path from 'node:path';
12
+ import * as fs from 'node:fs';
13
+ const execFileAsync = promisify(execFile);
14
+ /**
15
+ * Execute a command with stdin input
16
+ */
17
+ function execWithInput(cmd, args, input, options) {
18
+ return new Promise((resolve, reject) => {
19
+ const child = execFile(cmd, args, options, (err, stdout, stderr) => {
20
+ if (err)
21
+ reject(err);
22
+ else
23
+ resolve({ stdout: String(stdout), stderr: String(stderr) });
24
+ });
25
+ if (child.stdin) {
26
+ child.stdin.write(input);
27
+ child.stdin.end();
28
+ }
29
+ });
30
+ }
31
+ export class GitError extends Error {
32
+ exitCode;
33
+ stderr;
34
+ constructor(message, exitCode, stderr) {
35
+ super(message);
36
+ this.exitCode = exitCode;
37
+ this.stderr = stderr;
38
+ this.name = 'GitError';
39
+ }
40
+ }
41
+ // ============================================================================
42
+ // Core Git Execution
43
+ // ============================================================================
44
+ /**
45
+ * Execute a git command and return stdout
46
+ */
47
+ export async function git(args, options = {}) {
48
+ const cwd = options.cwd ?? process.cwd();
49
+ const timeout = options.timeout ?? 30000;
50
+ try {
51
+ const result = await execFileAsync('git', args, {
52
+ cwd,
53
+ timeout,
54
+ env: { ...process.env, ...options.env, GIT_TERMINAL_PROMPT: '0' },
55
+ maxBuffer: 50 * 1024 * 1024, // 50MB
56
+ });
57
+ return result.stdout.trimEnd();
58
+ }
59
+ catch (error) {
60
+ const execError = error;
61
+ throw new GitError(`git ${args.join(' ')} failed: ${execError.stderr ?? execError.message ?? 'unknown error'}`, typeof execError.code === 'number' ? execError.code : null, String(execError.stderr ?? ''));
62
+ }
63
+ }
64
+ /**
65
+ * Execute a git command, returning null on error instead of throwing
66
+ */
67
+ export async function gitSafe(args, options = {}) {
68
+ try {
69
+ return await git(args, options);
70
+ }
71
+ catch {
72
+ return null;
73
+ }
74
+ }
75
+ // ============================================================================
76
+ // Repository Discovery
77
+ // ============================================================================
78
+ /**
79
+ * Get the git directory for the working tree
80
+ */
81
+ export async function getGitDir(cwd) {
82
+ return git(['rev-parse', '--git-dir'], { cwd });
83
+ }
84
+ /**
85
+ * Get the git common directory (shared for worktrees)
86
+ */
87
+ export async function getGitCommonDir(cwd) {
88
+ return git(['rev-parse', '--git-common-dir'], { cwd });
89
+ }
90
+ /**
91
+ * Get the worktree root directory
92
+ */
93
+ export async function getWorktreeRoot(cwd) {
94
+ return git(['rev-parse', '--show-toplevel'], { cwd });
95
+ }
96
+ /**
97
+ * Check if we're inside a git repository
98
+ */
99
+ export async function isGitRepository(cwd) {
100
+ const result = await gitSafe(['rev-parse', '--is-inside-work-tree'], { cwd });
101
+ return result === 'true';
102
+ }
103
+ /**
104
+ * Get the sessions directory path (.git/entire-sessions/)
105
+ */
106
+ export async function getSessionsDir(cwd) {
107
+ const gitDir = await getGitDir(cwd);
108
+ return path.resolve(cwd ?? process.cwd(), gitDir, 'entire-sessions');
109
+ }
110
+ // ============================================================================
111
+ // Session Repository
112
+ // ============================================================================
113
+ /**
114
+ * Initialize a separate git repository for session/checkpoint storage.
115
+ * Creates the repo if it doesn't already exist.
116
+ * Returns the absolute path to the initialized repo.
117
+ */
118
+ export async function initSessionRepo(repoPath) {
119
+ const absPath = path.resolve(repoPath);
120
+ try {
121
+ await fs.promises.access(path.join(absPath, '.git'));
122
+ // Already initialized
123
+ }
124
+ catch {
125
+ await fs.promises.mkdir(absPath, { recursive: true });
126
+ await execFileAsync('git', ['init'], {
127
+ cwd: absPath,
128
+ timeout: 30000,
129
+ env: { ...process.env, GIT_TERMINAL_PROMPT: '0' },
130
+ });
131
+ // Create an initial empty commit so refs work properly
132
+ await execFileAsync('git', ['commit', '--allow-empty', '-m', 'Initialize session repository'], {
133
+ cwd: absPath,
134
+ timeout: 30000,
135
+ env: {
136
+ ...process.env,
137
+ GIT_TERMINAL_PROMPT: '0',
138
+ GIT_AUTHOR_NAME: 'Entire',
139
+ GIT_AUTHOR_EMAIL: 'entire@localhost',
140
+ GIT_COMMITTER_NAME: 'Entire',
141
+ GIT_COMMITTER_EMAIL: 'entire@localhost',
142
+ },
143
+ });
144
+ }
145
+ return absPath;
146
+ }
147
+ /**
148
+ * Resolve the session repo path to an absolute path (if configured).
149
+ * If the path is relative, it's resolved relative to the project root.
150
+ */
151
+ export function resolveSessionRepoPath(sessionRepoPath, projectRoot) {
152
+ return path.resolve(projectRoot, sessionRepoPath);
153
+ }
154
+ /**
155
+ * Derive a stable, human-readable project identifier from the project's worktree root.
156
+ * This is used to namespace data when multiple projects share a session repo.
157
+ *
158
+ * Format: `<dir-name>-<short-hash>` (e.g. "my-project-a1b2c3d4").
159
+ * The directory name is sanitized to lowercase alphanumeric + hyphens,
160
+ * and a short hash suffix ensures uniqueness when two projects share
161
+ * the same directory name at different paths.
162
+ */
163
+ export function getProjectID(projectRoot) {
164
+ const absRoot = path.resolve(projectRoot);
165
+ const dirName = path.basename(absRoot);
166
+ // Sanitize: lowercase, replace non-alphanumeric with hyphens, collapse/trim hyphens
167
+ const sanitized = dirName
168
+ .toLowerCase()
169
+ .replace(/[^a-z0-9-]/g, '-')
170
+ .replace(/-+/g, '-')
171
+ .replace(/^-|-$/g, '');
172
+ const shortHash = crypto.createHash('sha256').update(absRoot).digest('hex').slice(0, 8);
173
+ const prefix = sanitized || 'project';
174
+ return `${prefix}-${shortHash}`;
175
+ }
176
+ // ============================================================================
177
+ // Ref Operations
178
+ // ============================================================================
179
+ /**
180
+ * Get the current HEAD commit hash
181
+ */
182
+ export async function getHead(cwd) {
183
+ return git(['rev-parse', 'HEAD'], { cwd });
184
+ }
185
+ /**
186
+ * Get the short hash of a commit
187
+ */
188
+ export async function getShortHash(ref, cwd) {
189
+ return git(['rev-parse', '--short', ref], { cwd });
190
+ }
191
+ /**
192
+ * Get current branch name, or null if detached HEAD
193
+ */
194
+ export async function getCurrentBranch(cwd) {
195
+ const result = await gitSafe(['symbolic-ref', '--short', 'HEAD'], { cwd });
196
+ return result;
197
+ }
198
+ /**
199
+ * Check if a ref exists
200
+ */
201
+ export async function refExists(ref, cwd) {
202
+ const result = await gitSafe(['rev-parse', '--verify', ref], { cwd });
203
+ return result !== null;
204
+ }
205
+ /**
206
+ * Get the tree hash for a commit
207
+ */
208
+ export async function getTreeHash(ref, cwd) {
209
+ return git(['rev-parse', `${ref}^{tree}`], { cwd });
210
+ }
211
+ // ============================================================================
212
+ // Branch Operations
213
+ // ============================================================================
214
+ /**
215
+ * List branches matching a pattern
216
+ */
217
+ export async function listBranches(pattern, cwd) {
218
+ const args = ['branch', '--list', '--format=%(refname:short)'];
219
+ if (pattern)
220
+ args.push(pattern);
221
+ const result = await git(args, { cwd });
222
+ if (!result)
223
+ return [];
224
+ return result.split('\n').filter(Boolean);
225
+ }
226
+ /**
227
+ * Create a branch at a ref
228
+ */
229
+ export async function createBranch(name, ref, cwd) {
230
+ await git(['branch', name, ref], { cwd });
231
+ }
232
+ /**
233
+ * Delete a branch
234
+ */
235
+ export async function deleteBranch(name, force = false, cwd) {
236
+ await git(['branch', force ? '-D' : '-d', name], { cwd });
237
+ }
238
+ /**
239
+ * Update a branch ref to point to a new commit
240
+ */
241
+ export async function updateRef(ref, commitHash, cwd) {
242
+ await git(['update-ref', `refs/heads/${ref}`, commitHash], { cwd });
243
+ }
244
+ // ============================================================================
245
+ // Commit & Tree Operations
246
+ // ============================================================================
247
+ /**
248
+ * Get the git author from config
249
+ */
250
+ export async function getGitAuthor(cwd) {
251
+ const name = (await gitSafe(['config', 'user.name'], { cwd })) ?? 'Entire';
252
+ const email = (await gitSafe(['config', 'user.email'], { cwd })) ?? 'entire@localhost';
253
+ return { name, email };
254
+ }
255
+ /**
256
+ * Create a tree object from a list of entries
257
+ */
258
+ export async function mktree(entries, cwd) {
259
+ const input = entries.map((e) => `${e.mode} ${e.type} ${e.hash}\t${e.name}`).join('\n') + '\n';
260
+ const result = await execWithInput('git', ['mktree'], input, {
261
+ cwd: cwd ?? process.cwd(),
262
+ timeout: 30000,
263
+ env: { ...process.env, GIT_TERMINAL_PROMPT: '0' },
264
+ });
265
+ return result.stdout.trim();
266
+ }
267
+ /**
268
+ * Create a blob from content
269
+ */
270
+ export async function hashObject(content, cwd) {
271
+ const input = typeof content === 'string' ? content : content.toString('utf-8');
272
+ const result = await execWithInput('git', ['hash-object', '-w', '--stdin'], input, {
273
+ cwd: cwd ?? process.cwd(),
274
+ timeout: 30000,
275
+ env: { ...process.env, GIT_TERMINAL_PROMPT: '0' },
276
+ });
277
+ return result.stdout.trim();
278
+ }
279
+ /**
280
+ * Create a commit object
281
+ */
282
+ export async function commitTree(treeHash, parentHash, message, author, cwd) {
283
+ const args = ['commit-tree', treeHash];
284
+ if (parentHash) {
285
+ args.push('-p', parentHash);
286
+ }
287
+ args.push('-m', message);
288
+ const env = {
289
+ GIT_AUTHOR_NAME: author.name,
290
+ GIT_AUTHOR_EMAIL: author.email,
291
+ GIT_COMMITTER_NAME: author.name,
292
+ GIT_COMMITTER_EMAIL: author.email,
293
+ };
294
+ return git(args, { cwd, env });
295
+ }
296
+ /**
297
+ * List entries in a tree
298
+ */
299
+ export async function lsTree(ref, treePath, cwd) {
300
+ const args = ['ls-tree', ref];
301
+ if (treePath)
302
+ args.push(treePath);
303
+ const result = await gitSafe(args, { cwd });
304
+ if (!result)
305
+ return [];
306
+ return result
307
+ .split('\n')
308
+ .filter(Boolean)
309
+ .map((line) => {
310
+ const match = line.match(/^(\d+)\s+(\w+)\s+([0-9a-f]+)\t(.+)$/);
311
+ if (!match)
312
+ throw new Error(`Unexpected ls-tree output: ${line}`);
313
+ return { mode: match[1], type: match[2], hash: match[3], name: match[4] };
314
+ });
315
+ }
316
+ /**
317
+ * Read a blob from the object store
318
+ */
319
+ export async function catFile(ref, cwd) {
320
+ return git(['cat-file', '-p', ref], { cwd });
321
+ }
322
+ /**
323
+ * Read a file from a specific tree/commit
324
+ */
325
+ export async function showFile(ref, filePath, cwd) {
326
+ return git(['show', `${ref}:${filePath}`], { cwd });
327
+ }
328
+ /**
329
+ * Get log entries for a ref
330
+ */
331
+ export async function log(ref, options = {}, cwd) {
332
+ const args = ['log', ref];
333
+ if (options.maxCount)
334
+ args.push(`-${options.maxCount}`);
335
+ if (options.format)
336
+ args.push(`--format=${options.format}`);
337
+ return git(args, { cwd });
338
+ }
339
+ // ============================================================================
340
+ // Diff Operations
341
+ // ============================================================================
342
+ /**
343
+ * Get list of files changed between two refs
344
+ */
345
+ export async function diffNameOnly(refA, refB, cwd) {
346
+ const result = await git(['diff', '--name-status', refA, refB], { cwd });
347
+ const added = [];
348
+ const modified = [];
349
+ const deleted = [];
350
+ for (const line of result.split('\n').filter(Boolean)) {
351
+ const [status, ...rest] = line.split('\t');
352
+ const file = rest.join('\t');
353
+ switch (status[0]) {
354
+ case 'A':
355
+ added.push(file);
356
+ break;
357
+ case 'D':
358
+ deleted.push(file);
359
+ break;
360
+ default:
361
+ modified.push(file);
362
+ break;
363
+ }
364
+ }
365
+ return { added, modified, deleted };
366
+ }
367
+ /**
368
+ * Get stat of diff between two refs (line counts)
369
+ */
370
+ export async function diffStat(refA, refB, cwd) {
371
+ const result = await git(['diff', '--shortstat', refA, refB], { cwd });
372
+ let additions = 0;
373
+ let deletions = 0;
374
+ const addMatch = result.match(/(\d+) insertion/);
375
+ const delMatch = result.match(/(\d+) deletion/);
376
+ if (addMatch)
377
+ additions = parseInt(addMatch[1], 10);
378
+ if (delMatch)
379
+ deletions = parseInt(delMatch[1], 10);
380
+ return { additions, deletions };
381
+ }
382
+ // ============================================================================
383
+ // Working Tree Operations
384
+ // ============================================================================
385
+ /**
386
+ * Check if the working tree has uncommitted changes
387
+ */
388
+ export async function hasUncommittedChanges(cwd) {
389
+ const result = await git(['status', '--porcelain'], { cwd });
390
+ return result.length > 0;
391
+ }
392
+ /**
393
+ * Get list of untracked files
394
+ */
395
+ export async function getUntrackedFiles(cwd) {
396
+ const result = await git(['ls-files', '--others', '--exclude-standard'], { cwd });
397
+ if (!result)
398
+ return [];
399
+ return result.split('\n').filter(Boolean);
400
+ }
401
+ /**
402
+ * Check if on the default branch (main/master)
403
+ */
404
+ export async function isOnDefaultBranch(cwd) {
405
+ const branch = await getCurrentBranch(cwd);
406
+ if (!branch)
407
+ return [false, ''];
408
+ const isDefault = branch === 'main' || branch === 'master';
409
+ return [isDefault, branch];
410
+ }
411
+ // ============================================================================
412
+ // Push Operations
413
+ // ============================================================================
414
+ /**
415
+ * Push a branch to a remote
416
+ */
417
+ export async function pushBranch(remote, branch, force = false, cwd) {
418
+ const args = ['push', remote, branch];
419
+ if (force)
420
+ args.push('--force');
421
+ await git(args, { cwd, timeout: 60000 });
422
+ }
423
+ // ============================================================================
424
+ // Filesystem Helpers
425
+ // ============================================================================
426
+ /**
427
+ * Resolve the git directory from a path, handling worktrees
428
+ */
429
+ export function resolveGitDirSync(startPath) {
430
+ let dir = startPath;
431
+ const root = path.parse(dir).root;
432
+ while (dir !== root) {
433
+ const gitPath = path.join(dir, '.git');
434
+ try {
435
+ const stat = fs.statSync(gitPath);
436
+ if (stat.isDirectory())
437
+ return gitPath;
438
+ if (stat.isFile()) {
439
+ const content = fs.readFileSync(gitPath, 'utf-8').trim();
440
+ const match = content.match(/^gitdir:\s*(.+)$/);
441
+ if (match)
442
+ return path.resolve(dir, match[1]);
443
+ }
444
+ }
445
+ catch {
446
+ // Not found at this level
447
+ }
448
+ dir = path.dirname(dir);
449
+ }
450
+ return null;
451
+ }
452
+ /**
453
+ * Atomically write a file (write to tmp, then rename)
454
+ */
455
+ export async function atomicWriteFile(filePath, content) {
456
+ const dir = path.dirname(filePath);
457
+ await fs.promises.mkdir(dir, { recursive: true });
458
+ const tmpPath = `${filePath}.tmp.${process.pid}`;
459
+ await fs.promises.writeFile(tmpPath, content, 'utf-8');
460
+ await fs.promises.rename(tmpPath, filePath);
461
+ }
462
+ //# sourceMappingURL=git-operations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"git-operations.js","sourceRoot":"","sources":["../src/git-operations.ts"],"names":[],"mappings":"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"}