Skip to content

Commit c2582b4

Browse files
committed
Updates to v1.0.0
1 parent edc22e0 commit c2582b4

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

File renamed without changes.
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ This happens for all 75 chunks across all documents. The database is now ready.
6565

6666
## Step 2: Query (Every Time You Ask)
6767

68-
Now you ask: `"Why is my OSPF neighbor stuck in INIT?"`
68+
Now you ask: `"Why is D1C's OSPF neighbor stuck in INIT?"`
6969

7070
### 2a. Question → Vector
7171

7272
The same embedding model converts your question into a 384-dim vector:
7373

7474
```
75-
Question: "Why is my OSPF neighbor stuck in INIT"
75+
Question: "Why is D1C's OSPF neighbor stuck in INIT"
7676
Vector: [0.0193, -0.0532, 0.0135, -0.0071, 0.1528, 0.0054, -0.0898, -0.0029, -0.0993, 0.0045, ...]
7777
```
7878

@@ -100,11 +100,12 @@ Claude reads the CLAUDE.md skill, which tells it to:
100100

101101
1. Use the KB results to understand the theory (INIT = one-way communication, common causes)
102102
2. Optionally query live devices if a specific device was mentioned
103-
3. Combine both into a grounded answer citing sources
103+
3. Identify the protocol and read the relevant skill for troubleshooting guidance
104+
4. Combine all of the above into a grounded, realistic, and accurate answer citing sources
104105

105106
## Why This Works
106107

107-
The key insight is that the embedding model maps both *"INIT state means Hello one-way"* and *"Why is my neighbor stuck in INIT"* to nearby points in 384-dimensional space — because they're about the same concept. A keyword search would miss this (the word "stuck" doesn't appear in the RFC text), but vector similarity catches the semantic relationship.
108+
The key insight is that the embedding model maps both *"INIT state means Hello one-way"* and *"Why is D1C's neighbor stuck in INIT"* to nearby points in 384-dimensional space — because they're about the same concept. A keyword search would miss this (the word "stuck" doesn't appear in the RFC text), but vector similarity catches the semantic relationship.
108109

109110
## Summary
110111

0 commit comments

Comments
 (0)