Skip to content

Commit c6e6fee

Browse files
committed
fix: add missing newline and improve formatting in AGENTS.md and CLAUDE.md
Entire-Checkpoint: 01186a0ba09c
1 parent a974c1f commit c6e6fee

2 files changed

Lines changed: 59 additions & 55 deletions

File tree

AGENTS.md

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<!-- gitnexus:start -->
2+
23
# GitNexus — Code Intelligence
34

45
This project is indexed by GitNexus as **tail-claude-gui** (1202 symbols, 2826 relationships, 97 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely.
@@ -35,35 +36,36 @@ This project is indexed by GitNexus as **tail-claude-gui** (1202 symbols, 2826 r
3536

3637
## Tools Quick Reference
3738

38-
| Tool | When to use | Command |
39-
|------|-------------|---------|
40-
| `query` | Find code by concept | `gitnexus_query({query: "auth validation"})` |
41-
| `context` | 360-degree view of one symbol | `gitnexus_context({name: "validateUser"})` |
42-
| `impact` | Blast radius before editing | `gitnexus_impact({target: "X", direction: "upstream"})` |
43-
| `detect_changes` | Pre-commit scope check | `gitnexus_detect_changes({scope: "staged"})` |
44-
| `rename` | Safe multi-file rename | `gitnexus_rename({symbol_name: "old", new_name: "new", dry_run: true})` |
45-
| `cypher` | Custom graph queries | `gitnexus_cypher({query: "MATCH ..."})` |
39+
| Tool | When to use | Command |
40+
| ---------------- | ----------------------------- | ----------------------------------------------------------------------- |
41+
| `query` | Find code by concept | `gitnexus_query({query: "auth validation"})` |
42+
| `context` | 360-degree view of one symbol | `gitnexus_context({name: "validateUser"})` |
43+
| `impact` | Blast radius before editing | `gitnexus_impact({target: "X", direction: "upstream"})` |
44+
| `detect_changes` | Pre-commit scope check | `gitnexus_detect_changes({scope: "staged"})` |
45+
| `rename` | Safe multi-file rename | `gitnexus_rename({symbol_name: "old", new_name: "new", dry_run: true})` |
46+
| `cypher` | Custom graph queries | `gitnexus_cypher({query: "MATCH ..."})` |
4647

4748
## Impact Risk Levels
4849

49-
| Depth | Meaning | Action |
50-
|-------|---------|--------|
51-
| d=1 | WILL BREAK — direct callers/importers | MUST update these |
52-
| d=2 | LIKELY AFFECTED — indirect deps | Should test |
53-
| d=3 | MAY NEED TESTING — transitive | Test if critical path |
50+
| Depth | Meaning | Action |
51+
| ----- | ------------------------------------- | --------------------- |
52+
| d=1 | WILL BREAK — direct callers/importers | MUST update these |
53+
| d=2 | LIKELY AFFECTED — indirect deps | Should test |
54+
| d=3 | MAY NEED TESTING — transitive | Test if critical path |
5455

5556
## Resources
5657

57-
| Resource | Use for |
58-
|----------|---------|
59-
| `gitnexus://repo/tail-claude-gui/context` | Codebase overview, check index freshness |
60-
| `gitnexus://repo/tail-claude-gui/clusters` | All functional areas |
61-
| `gitnexus://repo/tail-claude-gui/processes` | All execution flows |
62-
| `gitnexus://repo/tail-claude-gui/process/{name}` | Step-by-step execution trace |
58+
| Resource | Use for |
59+
| ------------------------------------------------ | ---------------------------------------- |
60+
| `gitnexus://repo/tail-claude-gui/context` | Codebase overview, check index freshness |
61+
| `gitnexus://repo/tail-claude-gui/clusters` | All functional areas |
62+
| `gitnexus://repo/tail-claude-gui/processes` | All execution flows |
63+
| `gitnexus://repo/tail-claude-gui/process/{name}` | Step-by-step execution trace |
6364

6465
## Self-Check Before Finishing
6566

6667
Before completing any code modification task, verify:
68+
6769
1. `gitnexus_impact` was run for all modified symbols
6870
2. No HIGH/CRITICAL risk warnings were ignored
6971
3. `gitnexus_detect_changes()` confirms changes match expected scope
@@ -89,13 +91,13 @@ To check whether embeddings exist, inspect `.gitnexus/meta.json` — the `stats.
8991
9092
## CLI
9193

92-
| Task | Read this skill file |
93-
|------|---------------------|
94-
| Understand architecture / "How does X work?" | `.claude/skills/gitnexus/gitnexus-exploring/SKILL.md` |
95-
| Blast radius / "What breaks if I change X?" | `.claude/skills/gitnexus/gitnexus-impact-analysis/SKILL.md` |
96-
| Trace bugs / "Why is X failing?" | `.claude/skills/gitnexus/gitnexus-debugging/SKILL.md` |
97-
| Rename / extract / split / refactor | `.claude/skills/gitnexus/gitnexus-refactoring/SKILL.md` |
98-
| Tools, resources, schema reference | `.claude/skills/gitnexus/gitnexus-guide/SKILL.md` |
99-
| Index, status, clean, wiki CLI commands | `.claude/skills/gitnexus/gitnexus-cli/SKILL.md` |
94+
| Task | Read this skill file |
95+
| -------------------------------------------- | ----------------------------------------------------------- |
96+
| Understand architecture / "How does X work?" | `.claude/skills/gitnexus/gitnexus-exploring/SKILL.md` |
97+
| Blast radius / "What breaks if I change X?" | `.claude/skills/gitnexus/gitnexus-impact-analysis/SKILL.md` |
98+
| Trace bugs / "Why is X failing?" | `.claude/skills/gitnexus/gitnexus-debugging/SKILL.md` |
99+
| Rename / extract / split / refactor | `.claude/skills/gitnexus/gitnexus-refactoring/SKILL.md` |
100+
| Tools, resources, schema reference | `.claude/skills/gitnexus/gitnexus-guide/SKILL.md` |
101+
| Index, status, clean, wiki CLI commands | `.claude/skills/gitnexus/gitnexus-cli/SKILL.md` |
100102

101-
<!-- gitnexus:end -->
103+
<!-- gitnexus:end -->

CLAUDE.md

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ npx oxfmt && npx oxlint && npx tsc --noEmit && npx vitest run && cargo fmt --man
3535
```
3636

3737
<!-- gitnexus:start -->
38+
3839
# GitNexus — Code Intelligence
3940

4041
This project is indexed by GitNexus as **tail-claude-gui** (1202 symbols, 2826 relationships, 97 execution flows). Use the GitNexus MCP tools to understand code, assess impact, and navigate safely.
@@ -71,35 +72,36 @@ This project is indexed by GitNexus as **tail-claude-gui** (1202 symbols, 2826 r
7172

7273
## Tools Quick Reference
7374

74-
| Tool | When to use | Command |
75-
|------|-------------|---------|
76-
| `query` | Find code by concept | `gitnexus_query({query: "auth validation"})` |
77-
| `context` | 360-degree view of one symbol | `gitnexus_context({name: "validateUser"})` |
78-
| `impact` | Blast radius before editing | `gitnexus_impact({target: "X", direction: "upstream"})` |
79-
| `detect_changes` | Pre-commit scope check | `gitnexus_detect_changes({scope: "staged"})` |
80-
| `rename` | Safe multi-file rename | `gitnexus_rename({symbol_name: "old", new_name: "new", dry_run: true})` |
81-
| `cypher` | Custom graph queries | `gitnexus_cypher({query: "MATCH ..."})` |
75+
| Tool | When to use | Command |
76+
| ---------------- | ----------------------------- | ----------------------------------------------------------------------- |
77+
| `query` | Find code by concept | `gitnexus_query({query: "auth validation"})` |
78+
| `context` | 360-degree view of one symbol | `gitnexus_context({name: "validateUser"})` |
79+
| `impact` | Blast radius before editing | `gitnexus_impact({target: "X", direction: "upstream"})` |
80+
| `detect_changes` | Pre-commit scope check | `gitnexus_detect_changes({scope: "staged"})` |
81+
| `rename` | Safe multi-file rename | `gitnexus_rename({symbol_name: "old", new_name: "new", dry_run: true})` |
82+
| `cypher` | Custom graph queries | `gitnexus_cypher({query: "MATCH ..."})` |
8283

8384
## Impact Risk Levels
8485

85-
| Depth | Meaning | Action |
86-
|-------|---------|--------|
87-
| d=1 | WILL BREAK — direct callers/importers | MUST update these |
88-
| d=2 | LIKELY AFFECTED — indirect deps | Should test |
89-
| d=3 | MAY NEED TESTING — transitive | Test if critical path |
86+
| Depth | Meaning | Action |
87+
| ----- | ------------------------------------- | --------------------- |
88+
| d=1 | WILL BREAK — direct callers/importers | MUST update these |
89+
| d=2 | LIKELY AFFECTED — indirect deps | Should test |
90+
| d=3 | MAY NEED TESTING — transitive | Test if critical path |
9091

9192
## Resources
9293

93-
| Resource | Use for |
94-
|----------|---------|
95-
| `gitnexus://repo/tail-claude-gui/context` | Codebase overview, check index freshness |
96-
| `gitnexus://repo/tail-claude-gui/clusters` | All functional areas |
97-
| `gitnexus://repo/tail-claude-gui/processes` | All execution flows |
98-
| `gitnexus://repo/tail-claude-gui/process/{name}` | Step-by-step execution trace |
94+
| Resource | Use for |
95+
| ------------------------------------------------ | ---------------------------------------- |
96+
| `gitnexus://repo/tail-claude-gui/context` | Codebase overview, check index freshness |
97+
| `gitnexus://repo/tail-claude-gui/clusters` | All functional areas |
98+
| `gitnexus://repo/tail-claude-gui/processes` | All execution flows |
99+
| `gitnexus://repo/tail-claude-gui/process/{name}` | Step-by-step execution trace |
99100

100101
## Self-Check Before Finishing
101102

102103
Before completing any code modification task, verify:
104+
103105
1. `gitnexus_impact` was run for all modified symbols
104106
2. No HIGH/CRITICAL risk warnings were ignored
105107
3. `gitnexus_detect_changes()` confirms changes match expected scope
@@ -125,13 +127,13 @@ To check whether embeddings exist, inspect `.gitnexus/meta.json` — the `stats.
125127
126128
## CLI
127129

128-
| Task | Read this skill file |
129-
|------|---------------------|
130-
| Understand architecture / "How does X work?" | `.claude/skills/gitnexus/gitnexus-exploring/SKILL.md` |
131-
| Blast radius / "What breaks if I change X?" | `.claude/skills/gitnexus/gitnexus-impact-analysis/SKILL.md` |
132-
| Trace bugs / "Why is X failing?" | `.claude/skills/gitnexus/gitnexus-debugging/SKILL.md` |
133-
| Rename / extract / split / refactor | `.claude/skills/gitnexus/gitnexus-refactoring/SKILL.md` |
134-
| Tools, resources, schema reference | `.claude/skills/gitnexus/gitnexus-guide/SKILL.md` |
135-
| Index, status, clean, wiki CLI commands | `.claude/skills/gitnexus/gitnexus-cli/SKILL.md` |
130+
| Task | Read this skill file |
131+
| -------------------------------------------- | ----------------------------------------------------------- |
132+
| Understand architecture / "How does X work?" | `.claude/skills/gitnexus/gitnexus-exploring/SKILL.md` |
133+
| Blast radius / "What breaks if I change X?" | `.claude/skills/gitnexus/gitnexus-impact-analysis/SKILL.md` |
134+
| Trace bugs / "Why is X failing?" | `.claude/skills/gitnexus/gitnexus-debugging/SKILL.md` |
135+
| Rename / extract / split / refactor | `.claude/skills/gitnexus/gitnexus-refactoring/SKILL.md` |
136+
| Tools, resources, schema reference | `.claude/skills/gitnexus/gitnexus-guide/SKILL.md` |
137+
| Index, status, clean, wiki CLI commands | `.claude/skills/gitnexus/gitnexus-cli/SKILL.md` |
136138

137139
<!-- gitnexus:end -->

0 commit comments

Comments
 (0)