agit 1.3.0

AI-native Git wrapper for capturing context alongside code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
//! Integration tests for AGIT CLI commands.
//!
//! These tests verify the end-to-end behavior of the CLI commands.

use std::fs;
use std::process::Command;

use assert_cmd::prelude::*;
use predicates::prelude::*;
use tempfile::TempDir;

/// Helper to create a test git repository.
fn create_test_repo() -> TempDir {
    let temp = TempDir::new().unwrap();

    // Initialize git
    Command::new("git")
        .args(["init"])
        .current_dir(temp.path())
        .output()
        .expect("Failed to init git repo");

    // Configure git user
    Command::new("git")
        .args(["config", "user.email", "test@example.com"])
        .current_dir(temp.path())
        .output()
        .expect("Failed to configure git email");

    Command::new("git")
        .args(["config", "user.name", "Test User"])
        .current_dir(temp.path())
        .output()
        .expect("Failed to configure git name");

    // Create initial commit
    fs::write(temp.path().join("README.md"), "# Test Project").unwrap();

    Command::new("git")
        .args(["add", "."])
        .current_dir(temp.path())
        .output()
        .expect("Failed to stage files");

    Command::new("git")
        .args(["commit", "-m", "Initial commit"])
        .current_dir(temp.path())
        .output()
        .expect("Failed to create initial commit");

    temp
}

/// Get a command for the agit binary.
fn agit_cmd() -> Command {
    Command::new(env!("CARGO_BIN_EXE_agit"))
}

#[test]
fn test_init_creates_agit_directory() {
    let temp = create_test_repo();

    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Initialized AGIT"));

    // Verify .agit directory structure (V2 Git-native storage)
    let agit_dir = temp.path().join(".agit");
    assert!(agit_dir.exists());
    // V2: local state files only (objects in Git ODB, refs in refs/agit/*)
    assert!(agit_dir.join("tmp").is_dir());
    assert!(agit_dir.join("config.json").exists());
    assert!(agit_dir.join("HEAD").exists());
    assert!(agit_dir.join("index").exists());
    // V2: objects and refs are NOT in .agit/
    assert!(!agit_dir.join("objects").exists());
    assert!(!agit_dir.join("refs").exists());
}

#[test]
fn test_init_creates_instruction_files() {
    let temp = create_test_repo();

    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    // Verify instruction files were created
    assert!(temp.path().join("CLAUDE.md").exists());
    assert!(temp.path().join(".cursorrules").exists());

    // Verify MCP config files were created
    assert!(temp.path().join(".mcp.json").exists());
    assert!(temp.path().join(".cursor/mcp.json").exists());
}

#[test]
fn test_init_fails_if_not_git_repo() {
    let temp = TempDir::new().unwrap();

    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .failure();
}

#[test]
fn test_init_fails_if_already_initialized() {
    let temp = create_test_repo();

    // First init
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    // Second init should fail
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .failure()
        .stderr(predicate::str::contains("already initialized"));
}

#[test]
fn test_record_adds_entry_to_index() {
    let temp = create_test_repo();

    // Initialize
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    // Record a thought
    agit_cmd()
        .args(["record", "Planning to refactor the auth module"])
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Recorded"));

    // Verify entry in index
    let index_content = fs::read_to_string(temp.path().join(".agit/index")).unwrap();
    assert!(index_content.contains("Planning to refactor"));
}

#[test]
fn test_record_fails_if_not_initialized() {
    let temp = create_test_repo();

    agit_cmd()
        .args(["record", "Some thought"])
        .current_dir(temp.path())
        .assert()
        .failure()
        .stderr(predicate::str::contains("not initialized"));
}

#[test]
fn test_status_shows_pending_thoughts() {
    let temp = create_test_repo();

    // Initialize
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    // Check status with no thoughts
    agit_cmd()
        .arg("status")
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("No pending thoughts"));

    // Record a thought
    agit_cmd()
        .args(["record", "Test thought"])
        .current_dir(temp.path())
        .assert()
        .success();

    // Check status with pending thought
    agit_cmd()
        .arg("status")
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Pending thoughts: 1"));
}

#[test]
fn test_commit_creates_neural_commit() {
    let temp = create_test_repo();

    // Initialize
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    // Record thoughts
    agit_cmd()
        .args(["record", "User wants to add auth"])
        .current_dir(temp.path())
        .assert()
        .success();

    // Create neural commit (-y to skip memory-only prompt)
    agit_cmd()
        .args(["commit", "-m", "Add authentication", "-y"])
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Created neural commit"));

    // V2: Verify commit was created by checking agit log shows something
    agit_cmd()
        .arg("log")
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("commit"));
}

#[test]
fn test_commit_clears_index() {
    let temp = create_test_repo();

    // Initialize and record
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    agit_cmd()
        .args(["record", "Test thought"])
        .current_dir(temp.path())
        .assert()
        .success();

    // Commit (-y to skip memory-only prompt)
    agit_cmd()
        .args(["commit", "-m", "Test commit", "-y"])
        .current_dir(temp.path())
        .assert()
        .success();

    // Index should be empty now
    let index_content = fs::read_to_string(temp.path().join(".agit/index")).unwrap();
    assert!(index_content.trim().is_empty());
}

#[test]
fn test_log_shows_commits() {
    let temp = create_test_repo();

    // Initialize and create a commit
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    agit_cmd()
        .args(["record", "First thought"])
        .current_dir(temp.path())
        .assert()
        .success();

    agit_cmd()
        .args(["commit", "-m", "First neural commit", "-y"])
        .current_dir(temp.path())
        .assert()
        .success();

    // Check log
    agit_cmd()
        .arg("log")
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("commit"));
}

#[test]
fn test_log_empty_repo() {
    let temp = create_test_repo();

    // Initialize but don't commit
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    // Log should indicate no commits
    agit_cmd()
        .arg("log")
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("No neural commits"));
}

#[test]
fn test_show_displays_commit_details() {
    let temp = create_test_repo();

    // Initialize and create a commit
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    agit_cmd()
        .args(["record", "Add feature X"])
        .current_dir(temp.path())
        .assert()
        .success();

    agit_cmd()
        .args(["commit", "-m", "Add feature X", "-y"])
        .current_dir(temp.path())
        .assert()
        .success();

    // Show HEAD
    agit_cmd()
        .arg("show")
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Neural Commit"))
        .stdout(predicate::str::contains("Summary"));
}

#[test]
fn test_full_workflow() {
    let temp = create_test_repo();

    // 1. Initialize
    agit_cmd()
        .arg("init")
        .current_dir(temp.path())
        .assert()
        .success();

    // 2. Record user intent (using --intent flag)
    agit_cmd()
        .args(["record", "--intent", "Add user authentication"])
        .current_dir(temp.path())
        .assert()
        .success();

    // 3. Record AI reasoning (using --ai flag)
    agit_cmd()
        .args(["record", "--ai", "Will implement JWT-based auth"])
        .current_dir(temp.path())
        .assert()
        .success();

    // 4. Make some code changes (simulated)
    fs::write(temp.path().join("auth.rs"), "// Auth module").unwrap();

    // 5. Create git commit
    Command::new("git")
        .args(["add", "."])
        .current_dir(temp.path())
        .output()
        .unwrap();

    Command::new("git")
        .args(["commit", "-m", "Add auth module"])
        .current_dir(temp.path())
        .output()
        .unwrap();

    // 6. Create neural commit (use -y to skip memory-only prompt since git commit was already made)
    agit_cmd()
        .args(["commit", "-m", "Add user authentication", "-y"])
        .current_dir(temp.path())
        .assert()
        .success();

    // 7. Verify log shows the summary
    agit_cmd()
        .arg("log")
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Intent"));

    // 8. Verify show displays full context
    agit_cmd()
        .args(["show", "--trace"])
        .current_dir(temp.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Trace"));
}